/* ----- about.html ----- */
/* ============================================================
   About page â€” page-specific styles only.
   Nav, footer, buttons, and brand marks come from styles.css.
============================================================ */

/* ---- Hero ---- */
.about-hero {
  background: var(--navy-900);
  color: #fff;
  padding: 80px 0 72px;
}
.about-hero-inner {
  max-width: 780px;
}
.about-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold, #d4a017);
  margin-bottom: 20px;
}
.about-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 28px;
}
.about-hero-body {
  font-size: 1.1rem;
  line-height: 1.75;
  opacity: 0.85;
  max-width: 640px;
}
.about-hero-body p + p {
  margin-top: 16px;
}

/* ---- Shared section chrome ---- */
.about-section {
  padding: 72px 0;
}
.about-section + .about-section {
  border-top: 1px solid var(--line);
}
.about-section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a5800;
  margin-bottom: 12px;
}
@media (prefers-color-scheme: dark) {
  .about-section-kicker { color: var(--gold, #d4a017); }
}
.about-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 20px;
}
.about-section-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 620px;
  margin-bottom: 48px;
}

/* ---- Beliefs grid ---- */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.belief-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 26px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-soft);
}
.belief-card:hover {
  border-color: rgba(212, 160, 23, 0.45);
  box-shadow: 0 12px 32px -16px rgba(10, 22, 38, .3);
}
@media (prefers-color-scheme: dark) {
  .belief-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow: none;
  }
  .belief-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 160, 23, 0.35);
  }
}
.belief-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.belief-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.belief-card p {
  font-size: 0.93rem;
  line-height: 1.68;
  opacity: 0.75;
  margin: 0;
}

/* ---- Meet Clipper ---- */
.clipper-section {
  background: rgba(212, 160, 23, 0.06);
  border-radius: 20px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
@media (max-width: 640px) {
  .clipper-section {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .clipper-parrot {
    display: none;
  }
}
.clipper-copy h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}
.clipper-copy p {
  font-size: 1rem;
  line-height: 1.72;
  opacity: 0.82;
  max-width: 560px;
}
.clipper-copy p + p {
  margin-top: 14px;
}
.clipper-cracker-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #7a5800;
}
@media (prefers-color-scheme: dark) {
  .clipper-cracker-note { color: var(--gold, #f0b429); }
}
.clipper-parrot {
  font-size: 6rem;
  line-height: 1;
  text-align: center;
  user-select: none;
}
.clipper-parrot-label {
  font-size: 0.78rem;
  text-align: center;
  opacity: 0.5;
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---- Privacy promise ---- */
.privacy-promise {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold, #d4a017);
  border-radius: 0 12px 12px 0;
  padding: 32px 36px;
  max-width: 720px;
  box-shadow: var(--shadow-soft);
}
@media (prefers-color-scheme: dark) {
  .privacy-promise {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    border-left-color: var(--gold, #d4a017);
    box-shadow: none;
  }
  /* .06 gold tint is invisible on near-black dark bg â€” boost to .10 */
  .clipper-section { background: rgba(212, 160, 23, 0.10); }
}
.privacy-promise p {
  font-size: 1rem;
  line-height: 1.72;
  opacity: 0.82;
  margin: 0;
}
.privacy-promise p + p {
  margin-top: 14px;
}
.privacy-promise strong {
  font-weight: 600;
  opacity: 1;
  color: inherit;
}
.privacy-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privacy-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}
.privacy-bullets li::before {
  content: 'âœ“';
  color: #7a5800;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
@media (prefers-color-scheme: dark) {
  .privacy-bullets li::before { color: var(--gold, #f0b429); }
}

/* ---- CTA section ---- */
.about-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: #fff;
}
.about-cta-inner {
  max-width: 640px;
}
.about-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (max-width: 560px) {
  .about-cta-btns .btn { flex: 1; }
}
.about-cta-section .btn-outline { border-color: rgba(255,255,255,.6); color: rgba(255,255,255,.9); }
.about-cta-section .btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.85); color: #fff; }

/* ---- Contact section ---- */
.contact-section {
  text-align: center;
  padding: 72px 0 80px;
}
.contact-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-section p {
  font-size: 1rem;
  opacity: 0.75;
  margin-bottom: 28px;
  line-height: 1.65;
}
.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #7a5800;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
}
.contact-email-link:hover {
  background: rgba(212, 160, 23, 0.18);
  border-color: rgba(212, 160, 23, 0.6);
  text-decoration: none;
}
@media (prefers-color-scheme: dark) {
  .contact-email-link { color: var(--gold, #d4a017); }
}

/* ---- Closing CTA (previously inline styles) ---- */
.about-cta-section .about-eyebrow { color: var(--gold-2, #f7cf6b); }
.about-cta-inner h2 {
  color: #fff;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 16px;
}
.about-cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 52ch;
  margin: 0 0 32px;
  line-height: 1.7;
}
.about-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

