@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@400;500;600;700;800&display=swap');

/* ══════════════════════════════════════
   Variables
══════════════════════════════════════ */
:root {
  --amber:       #EF9F27;
  --amber-dark:  #d4861a;
  --amber-pale:  #fdf3e1;
  --amber-glow:  rgba(239,159,39,.18);
  --brown:       #633806;
  --brown-dark:  #160802;
  --bg:          #F5EFE6;
  --text:        #1A1108;
  --muted:       #7a5c3b;
  --white:       #ffffff;
  --card-bg:     #fffbf6;
  --border:      #e8ddd0;
  --shadow:      0 4px 24px rgba(99,56,6,.1);
  --shadow-lg:   0 16px 56px rgba(99,56,6,.18);
  --radius:      18px;
  --radius-sm:   11px;
}

/* ══════════════════════════════════════
   Reset & Base
══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Lora', serif; line-height: 1.2; color: var(--text); }
p { color: var(--muted); }
a { color: var(--amber); text-decoration: none; transition: color .2s; }
a:hover { color: var(--amber-dark); }
ul { list-style: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ══════════════════════════════════════
   Nav
══════════════════════════════════════ */
nav {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--brown);
  letter-spacing: -.5px;
}
.nav-logo .ac { color: var(--amber); }

.nav-toggle { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform .3s, opacity .25s;
}

.nav-links { display: flex; align-items: center; gap: .15rem; }
.nav-links a {
  font-weight: 600;
  font-size: .9rem;
  color: var(--muted);
  padding: .4rem .85rem;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover  { color: var(--amber);      background: var(--amber-pale); }
.nav-links a.active { color: var(--amber-dark);  background: var(--amber-pale); font-weight: 700; }

@media (max-width: 640px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 66px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    gap: .25rem;
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
    z-index: 199;
  }
  .nav-links a { font-size: 1rem; padding: .65rem .85rem; }
  .nav-toggle:checked + .hamburger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle:checked + .hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked + .hamburger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-toggle:checked ~ .nav-links { display: flex; }
}

/* ══════════════════════════════════════
   Footer
══════════════════════════════════════ */
footer {
  background: var(--brown-dark);
  margin-top: 0;
}
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 3.5rem 1.5rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .footer-logo {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
  display: inline-block;
  margin-bottom: .75rem;
}
.footer-brand .footer-logo .ac { color: var(--amber); }
.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  max-width: 240px;
}
.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--amber); }
.footer-col p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}
.footer-col a.footer-email {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--amber);
  font-weight: 700;
  font-size: .9rem;
}
.footer-col a.footer-email:hover { color: #f5b84a; }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.28);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ══════════════════════════════════════
   Hero
══════════════════════════════════════ */
.hero {
  padding: 5.5rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(239,159,39,.14) 0%, transparent 60%);
  border-radius: 50%;
  top: -250px;
  right: -200px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,56,6,.06) 0%, transparent 65%);
  border-radius: 50%;
  bottom: -100px;
  left: -80px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--amber-pale);
  color: var(--amber-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 1rem .35rem .65rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(239,159,39,.35);
}
.hero-kicker span { font-size: .8rem; }
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: var(--brown);
  margin-bottom: 1rem;
  letter-spacing: -2px;
  line-height: 1.08;
}
.hero h1 .ac { color: var(--amber); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2.25rem;
  max-width: 460px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-note {
  font-size: .82rem;
  color: var(--muted);
  opacity: .7;
  font-weight: 600;
}

/* Store Buttons */
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1.5rem;
  border-radius: 14px;
  background: var(--text);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-store:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
}
.btn-store-icon { font-size: 1.65rem; line-height: 1; }
.btn-store-text { display: flex; flex-direction: column; }
.btn-store-sub  { font-size: .65rem; opacity: .65; line-height: 1.2; font-weight: 600; }
.btn-store-main { font-size: 1rem; font-weight: 800; line-height: 1.3; }

/* ══════════════════════════════════════
   Phone Splash Screen
══════════════════════════════════════ */
.phone-wrap {
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem;
}
.phone {
  width: 260px;
  height: 530px;
  border: 10px solid #100501;
  border-radius: 46px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow:
    0 40px 100px rgba(99,56,6,.32),
    0 0 0 1.5px rgba(255,255,255,.12) inset,
    0 0 0 3px rgba(0,0,0,.4);
}
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 26px;
  background: #100501;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

/* Splash image fills the phone screen */
.phone-splash-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero::before, .hero::after { display: none; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-note { text-align: center; }
  .phone-wrap { order: -1; }
  .phone { width: 200px; height: 408px; border-width: 8px; border-radius: 38px; }
  .phone-notch { width: 70px; height: 22px; }
  .splash-icon-wrap { width: 60px; height: 60px; border-radius: 20px; font-size: 1.7rem; margin-bottom: 1rem; }
  .splash-name { font-size: 2.2rem; }
  .splash-tag { font-size: .72rem; }
}

/* ══════════════════════════════════════
   Trust Strip
══════════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--muted);
}
.trust-item .ti-icon { font-size: 1rem; }

/* ══════════════════════════════════════
   Features
══════════════════════════════════════ */
.features {
  padding: 5rem 1.5rem;
  background: var(--white);
}
.section-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .6rem;
}
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--brown);
  margin-bottom: .7rem;
}
.section-sub {
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 3.5rem;
}
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(239,159,39,.45);
}
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--amber-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(239,159,39,.2);
}
.feature-card h3 { font-size: 1.05rem; color: var(--brown); margin-bottom: .45rem; }
.feature-card p  { font-size: .9rem; color: var(--muted); line-height: 1.55; }

/* Care card gets special treatment */
.feature-card.care-highlight {
  background: linear-gradient(135deg, #fffbf0 0%, #fff4dc 100%);
  border-color: rgba(239,159,39,.5);
  border-width: 2px;
}
.feature-card.care-highlight::before {
  content: 'Featured';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--amber);
  color: white;
  padding: .2rem .6rem;
  border-radius: 100px;
}
.feature-card.care-highlight .feature-icon-wrap {
  background: var(--amber);
  border-color: var(--amber-dark);
}

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .features-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   Care Spotlight
══════════════════════════════════════ */
.care-spotlight {
  padding: 5.5rem 1.5rem;
  background: var(--bg);
}
.care-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.care-text .section-label { text-align: left; }
.care-text h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--brown);
  margin-bottom: 1rem;
  letter-spacing: -.5px;
}
.care-text > p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.75;
}
.care-list { display: flex; flex-direction: column; gap: .85rem; }
.care-list-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.care-list-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--amber-pale);
  border: 1px solid rgba(239,159,39,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .05rem;
}
.care-list-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .15rem;
}
.care-list-item span {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Care Profile Card */
.care-card-wrap {
  position: relative;
}
.care-card-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.care-profile-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  overflow: hidden;
  position: relative;
}
.cp-header {
  background: linear-gradient(135deg, var(--amber) 0%, #c97e18 100%);
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cp-avatar {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 2px solid rgba(255,255,255,.3);
  flex-shrink: 0;
}
.cp-name { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 700; color: white; line-height: 1.2; }
.cp-age  { font-size: .8rem; color: rgba(255,255,255,.78); font-weight: 600; margin-top: .15rem; }
.cp-badge {
  margin-left: auto;
  background: rgba(255,255,255,.22);
  color: white;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.3);
  white-space: nowrap;
}
.cp-body { padding: 1.25rem 1.5rem; }
.cp-section { margin-bottom: 1.1rem; }
.cp-section-title {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .6rem;
}
.med-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}
.med-row:last-child { border-bottom: none; }
.med-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.med-dot.done    { background: #22c55e; }
.med-dot.pending { background: var(--amber); }
.med-dot.later   { background: #e8ddd0; }
.med-name { font-size: .875rem; font-weight: 700; color: var(--text); flex: 1; }
.med-time { font-size: .78rem; color: var(--muted); font-weight: 600; }
.med-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  font-weight: 800;
}
.med-check.done { background: #dcfce7; color: #16a34a; }
.med-check.pending { background: var(--amber-pale); color: var(--amber-dark); font-size: .6rem; border: 1.5px solid rgba(239,159,39,.4); }

.allergy-section { margin-bottom: 1.1rem; }
.allergy-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .5rem; }
.allergy-tag {
  background: #fef2f2;
  color: #dc2626;
  font-size: .75rem;
  font-weight: 700;
  padding: .22rem .7rem;
  border-radius: 100px;
  border: 1px solid #fecaca;
}

.doctor-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: var(--amber-pale);
  border-radius: 10px;
  padding: .7rem 1rem;
  border: 1px solid rgba(239,159,39,.2);
}
.doctor-icon { font-size: 1.2rem; flex-shrink: 0; }
.doctor-name  { font-size: .875rem; font-weight: 700; color: var(--brown); }
.doctor-spec  { font-size: .75rem; color: var(--muted); font-weight: 600; }

@media (max-width: 900px) {
  .care-inner { grid-template-columns: 1fr; gap: 3rem; }
  .care-text .section-label { text-align: center; }
  .care-text h2 { text-align: center; }
  .care-text > p { text-align: center; }
}

/* ══════════════════════════════════════
   CTA Band
══════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--amber) 0%, #d4861a 100%);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  top: -250px;
  right: -150px;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(0,0,0,.06);
  border-radius: 50%;
  bottom: -200px;
  left: -100px;
  pointer-events: none;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: white;
  margin-bottom: .75rem;
  letter-spacing: -.5px;
}
.cta-band p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 2.25rem;
}
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-store-light {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1.5rem;
  border-radius: 14px;
  background: white;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  transition: transform .2s, box-shadow .2s;
}
.btn-store-light:hover {
  color: var(--brown);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.btn-store-light .btn-store-icon { font-size: 1.65rem; line-height: 1; }
.btn-store-light .btn-store-text  { display: flex; flex-direction: column; }
.btn-store-light .btn-store-sub   { font-size: .65rem; opacity: .6; line-height: 1.2; font-weight: 600; }
.btn-store-light .btn-store-main  { font-size: 1rem; font-weight: 800; line-height: 1.3; }

/* ══════════════════════════════════════
   Content Pages (Privacy & Terms)
══════════════════════════════════════ */
.content-page { padding: 3.5rem 1.5rem 5rem; }
.content-inner { max-width: 720px; margin: 0 auto; }
.content-eyebrow {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .65rem;
}
.content-page h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--brown); margin-bottom: .5rem; }
.content-meta {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border);
}
.content-body h2 {
  font-size: 1.1rem;
  color: var(--brown);
  margin: 2.25rem 0 .75rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.content-body h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1rem;
  background: var(--amber);
  border-radius: 2px;
  flex-shrink: 0;
}
.content-body p   { margin-bottom: .8rem; font-size: .95rem; line-height: 1.8; color: var(--muted); }
.content-body ul  { list-style: disc; padding-left: 1.5rem; margin-bottom: .8rem; }
.content-body ul li { color: var(--muted); margin-bottom: .35rem; font-size: .95rem; line-height: 1.6; }
.content-body a   { color: var(--amber); }
.content-body a:hover { color: var(--amber-dark); }

/* ══════════════════════════════════════
   Support Page
══════════════════════════════════════ */
.support-hero {
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.support-hero .eyebrow {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .75rem;
}
.support-hero h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--brown); margin-bottom: .75rem; }
.support-hero p  { font-size: 1.05rem; max-width: 480px; margin: 0 auto 2rem; }

.btn-email {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--amber);
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  padding: .85rem 2rem;
  border-radius: 12px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-email:hover {
  background: var(--amber-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(239,159,39,.35);
}

.faq-section { padding: 3.5rem 1.5rem 5rem; }
.faq-inner   { max-width: 720px; margin: 0 auto; }
.faq-section h2 { font-size: 1.6rem; color: var(--brown); margin-bottom: 1.5rem; text-align: center; }

details.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
details.faq-item[open] { box-shadow: var(--shadow); border-color: rgba(239,159,39,.4); }
details.faq-item summary {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 1rem;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .25s;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 1rem 1.25rem 1.25rem;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
