/* ===================================================================
   NEIGHBORHOOD TOOTH FAIRY — Design tokens
   =================================================================== */
:root{
  /* Color */
  --navy-deep:   #12213D;
  --navy:        #1C3563;
  --navy-mid:    #2E4C82;
  --navy-pale:   #E7ECF4;
  --cream:       #F8F5EF;
  --white:       #FFFFFF;
  --accent:      #C1874E;   /* warm clay/honey — "brought to you" */
  --accent-soft: #EFDEC7;
  --accent-deep: #9A6636;
  --ink:         #1A2130;
  --muted:       #59637A;
  --border:      #E4E0D6;
  --focus-ring:  #C1874E;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale (rem, mobile-first; grows via clamp) */
  --step-1: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  --step-2: clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
  --step-3: clamp(1.4rem, 1.2rem + 0.9vw, 1.9rem);
  --step-4: clamp(1.9rem, 1.5rem + 1.6vw, 2.7rem);
  --step-5: clamp(2.5rem, 1.9rem + 2.8vw, 4rem);

  /* Layout */
  --container: 1180px;
  --container-narrow: 760px;
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --shadow-soft: 0 12px 34px rgba(18,33,61,0.09);
  --shadow-lift: 0 20px 48px rgba(18,33,61,0.16);
}

/* ===================================================================
   Reset & base
   =================================================================== */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body{
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-1);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--navy-deep);
}
h1{ font-size: var(--step-5); font-weight: 500; }
h2{ font-size: var(--step-4); }
h3{ font-size: var(--step-3); }
p{ margin: 0 0 1em; }
a{ color: var(--navy); text-decoration-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 4px;
}
ul{ margin: 0; padding: 0; list-style: none; }
.container{ width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.container--narrow{ max-width: var(--container-narrow); }
section{ padding-block: clamp(3.5rem, 6vw, 6.5rem); }
.eyebrow{
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--accent-deep);
  display: inline-block;
  margin-bottom: 0.85em;
}
.section-head{ max-width: 42rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center{ margin-inline: auto; text-align: center; }
.lede{ font-size: var(--step-2); color: var(--muted); }
.visually-hidden{
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link{
  position: absolute; left: 1rem; top: -4rem;
  background: var(--navy-deep); color: var(--white);
  padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
  z-index: 200; transition: top 0.2s ease;
}
.skip-link:focus{ top: 1rem; }

/* ===================================================================
   Buttons
   =================================================================== */
.btn{
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 0.95rem 1.7rem; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; line-height: 1; white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color .18s ease, color .18s ease;
}
.btn svg{ width: 1.1em; height: 1.1em; flex: none; }
.btn--primary{ background: var(--accent); color: var(--white); box-shadow: var(--shadow-soft); }
.btn--primary:hover{ background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--ghost{ background: transparent; border-color: var(--navy-mid); color: var(--navy-deep); }
.btn--ghost:hover{ background: var(--navy-pale); transform: translateY(-2px); }
.btn--on-dark{ background: var(--white); color: var(--navy-deep); }
.btn--on-dark:hover{ background: var(--accent-soft); transform: translateY(-2px); }
.btn--ghost-on-dark{ background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn--ghost-on-dark:hover{ background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn--block{ width: 100%; justify-content: center; }

/* ===================================================================
   Header / Navigation
   =================================================================== */
.site-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,245,239,0.9);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav{
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 0.9rem;
}
.brand{
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.25rem; color: var(--navy-deep); text-decoration: none;
}
.brand-mark{
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy-deep);
  display: grid; place-items: center; flex: none;
}
.brand-mark svg{ width: 20px; height: 20px; }
.nav-links{
  display: none;
  align-items: center; gap: 2.1rem;
}
.nav-links a{
  font-weight: 600; color: var(--navy-deep); text-decoration: none;
  padding-block: 0.3rem; border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color .15s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"]{ border-color: var(--accent); }
.nav-actions{ display: flex; align-items: center; gap: 0.75rem; }
.nav-call{ display: none; }
.nav-toggle{
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: transparent; border: 1.5px solid var(--border);
  cursor: pointer;
}
.nav-toggle svg{ width: 22px; height: 22px; }
.mobile-menu{
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.mobile-menu.is-open{ display: flex; }
.mobile-menu a{
  padding: 1rem 1.5rem; font-weight: 600; color: var(--navy-deep);
  text-decoration: none; border-bottom: 1px solid var(--border);
}
.mobile-menu .btn{ margin: 1rem 1.5rem; }

@media (min-width: 900px){
  .nav-links{ display: flex; }
  .nav-call{ display: inline-flex; }
  .nav-toggle{ display: none; }
  .mobile-menu{ display: none !important; }
}

/* ===================================================================
   Hero — "doorway" signature shape
   =================================================================== */
.hero{
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  overflow: clip;
}
.hero .container{
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  padding-block: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.hero-copy .eyebrow{ color: var(--accent-deep); }
.hero-copy h1{ margin-bottom: 0.45em; }
.hero-copy .lede{ max-width: 34rem; }
.hero-priority{
  display: flex; align-items: center; gap: 0.85rem;
  margin: 1.6rem 0 1.8rem;
  padding: 0.9rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  max-width: 30rem;
}
.hero-priority svg{ width: 26px; height: 26px; flex: none; color: var(--accent); }
.hero-priority strong{ display: block; color: var(--navy-deep); font-size: 1.02rem; }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-visual{
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg) var(--radius-lg) 999px 999px; /* doorway arch */
  background:
    radial-gradient(120% 90% at 30% 15%, rgba(255,255,255,0.18), transparent 55%),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-visual img{
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}
.hero-visual .caption-badge{
  position: absolute; left: 1.25rem; bottom: 1.25rem; right: 1.25rem;
  background: rgba(18,33,61,0.55);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  backdrop-filter: blur(6px);
  z-index: 1;
}
.hero-visual .placeholder-figure{ width: 62%; opacity: 0.9; margin-bottom: 12%; }
.hero-visual .placeholder-figure path,
.hero-visual .placeholder-figure circle{ stroke: rgba(255,255,255,0.85); }

/* first-person intro callout */
.intro-quote{
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  margin-top: 2rem;
  max-width: 40rem;
  box-shadow: var(--shadow-soft);
}
.intro-quote p{ margin: 0; color: var(--ink); font-size: 1.02rem; }
.intro-quote .quote-mark{
  font-family: var(--font-display); font-size: 2.4rem; line-height: 1;
  color: var(--accent); flex: none;
}

/* checklist grid for "why choose" */
.why-grid{
  display: grid; gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.why-item{
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.why-item svg{ width: 22px; height: 22px; flex: none; color: var(--accent-deep); margin-top: 0.1em; }
.why-item span{ font-weight: 600; color: var(--navy-deep); font-size: 0.98rem; }

/* service cards with descriptions */
.service-card-grid{
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.4rem;
}
.service-card h3{ font-size: 1.05rem; margin-bottom: 0.4em; }
.service-card p{ color: var(--muted); font-size: 0.94rem; margin: 0; }

.photo-figure{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.photo-figure img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-figure .fact-badge{
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  background: rgba(18,33,61,0.72);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  line-height: 1.45;
  backdrop-filter: blur(4px);
  margin: 0;
}
.photo-figure .fact-badge strong{
  display: block; color: var(--accent-soft);
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 0.25em;
}

/* numbered list — Importance of Oral Health */
.numbered-list{
  display: grid; gap: 1.2rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.numbered-list li{ display: flex; align-items: flex-start; gap: 1rem; }
.numbered-list .num{
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy-deep); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  flex: none;
}
.numbered-list h3{ font-size: 1.05rem; margin: 0 0 0.2em; color: var(--navy-deep); }
.numbered-list p{ margin: 0; color: var(--muted); font-size: 0.95rem; }

/* route motif under hero */
.route-divider{
  display: block; width: 100%; height: auto;
  margin-block: -1px;
}
@media (min-width: 860px){
  .hero .container{ grid-template-columns: 1.05fr 0.95fr; }
}

/* ===================================================================
   Cards — audience / services / difference
   =================================================================== */
.card-grid{
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color .2s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: transparent; }
.card-icon{
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy-pale);
  display: grid; place-items: center; margin-bottom: 1rem;
  color: var(--navy);
}
.card-icon svg{ width: 24px; height: 24px; }
.card h3{ font-size: 1.15rem; margin-bottom: 0.35em; }
.card p{ color: var(--muted); margin: 0; font-size: 0.97rem; }

.service-list{
  display: grid; gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.service-item{
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 1.05rem 1.1rem;
  background: var(--cream);
  border-radius: var(--radius-md);
}
.service-item .dot-mark{
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); margin-top: 0.5em; flex: none;
}
.service-item span{ font-weight: 600; color: var(--navy-deep); }

/* ===================================================================
   Banner / callout blocks
   =================================================================== */
.banner{
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.banner::before{
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 140% at 85% -10%, rgba(193,135,78,0.25), transparent 55%);
  pointer-events: none;
}
.banner h2, .banner h3{ color: var(--white); }
.banner p{ color: rgba(255,255,255,0.82); }
.banner .lede{ color: rgba(255,255,255,0.82); }

.split{
  display: grid; gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 860px){
  .split{ grid-template-columns: 1fr 1fr; }
  .split--reverse .split-media{ order: 2; }
}
.split-media{
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--navy-pale), var(--white));
  border: 1px solid var(--border);
  display: grid; place-items: center;
  overflow: hidden;
}
.split-media svg{ width: 56%; }

.stat-strip{
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--accent-deep); font-weight: 700; font-family: var(--font-display);
  font-size: 1.6rem;
}

/* ===================================================================
   Final CTA band
   =================================================================== */
.cta-band{
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: clip;
}
.cta-band .container{ text-align: center; }
.cta-band h2{ color: var(--white); max-width: 34rem; margin-inline: auto; }
.cta-band .lede{ color: rgba(255,255,255,0.82); max-width: 36rem; margin-inline: auto; }
.cta-actions{ display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.8rem; }
.cta-secondary-phone{
  margin-top: 1rem; color: rgba(255,255,255,0.72); font-size: 0.95rem;
}
.cta-secondary-phone a{ color: var(--white); font-weight: 700; text-decoration: underline; }

/* ===================================================================
   Footer
   =================================================================== */
.site-footer{
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.75rem;
}
.footer-grid{
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 700px){
  .footer-grid{ grid-template-columns: 1.3fr 1fr 1fr; }
}
.footer-brand{ display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-display); font-size: 1.15rem; color: var(--navy-deep); margin-bottom: 0.5rem; }
.footer-brand .brand-mark{ width: 32px; height: 32px; }
.footer-tag{ color: var(--muted); max-width: 22rem; }
.footer-col h4{ font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy-deep); margin-bottom: 0.9rem; }
.footer-col li{ margin-bottom: 0.6rem; }
.footer-col a{ color: var(--muted); text-decoration: none; }
.footer-col a:hover{ color: var(--navy-deep); }
.footer-bottom{
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  color: var(--muted); font-size: 0.85rem;
}

/* ===================================================================
   Reveal-on-scroll
   =================================================================== */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}

/* ===================================================================
   Page header (About / Contact)
   =================================================================== */
.page-hero{
  background: var(--cream);
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2.5rem, 5vw, 4rem);
}
.page-hero .eyebrow{ color: var(--accent-deep); }
.page-hero .lede{ max-width: 40rem; }

/* About: Sharmin intro */
.person-card{
  display: grid; gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 860px){
  .person-card{ grid-template-columns: 0.85fr 1.15fr; }
}
.person-photo{
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg) var(--radius-lg) 999px 999px;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: grid; place-items: center; place-content: center;
  color: rgba(255,255,255,0.9);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.person-photo svg{ width: 46%; }
.person-photo img{
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 22%;
}
.person-photo figcaption{
  font-size: 0.8rem; color: rgba(255,255,255,0.65);
  margin-top: 0.5rem; text-align: center;
}
.credential-line{
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--navy-pale); color: var(--navy-deep);
  font-weight: 700; font-size: 0.9rem;
  padding: 0.5rem 0.9rem; border-radius: 999px;
  margin-bottom: 1rem;
}

.feature-grid{
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.feature{ text-align: left; }
.feature .card-icon{ margin-bottom: 1.1rem; }

.pull-quote{
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem);
  color: var(--navy-deep);
  line-height: 1.35;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  position: relative;
}

.checklist{ display: grid; gap: 0.85rem; }
.checklist li{ display: flex; align-items: flex-start; gap: 0.75rem; color: var(--ink); }
.checklist svg{ width: 22px; height: 22px; flex: none; color: var(--accent-deep); margin-top: 0.15em; }

/* ===================================================================
   Contact page
   =================================================================== */
.contact-grid{
  display: grid; gap: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 900px){
  .contact-grid{ grid-template-columns: 0.85fr 1.15fr; }
}
.contact-card{
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.9rem, 4vw, 2.6rem);
  height: fit-content;
}
.contact-card h3{ color: var(--white); }
.contact-card .credential-line{ background: rgba(255,255,255,0.12); color: var(--white); }
.contact-method{
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.contact-method:first-of-type{ border-top: none; }
.contact-method svg{ width: 22px; height: 22px; color: var(--accent); flex: none; }
.contact-method a{ color: var(--white); font-weight: 700; font-size: 1.05rem; text-decoration: none; }
.contact-method a:hover{ text-decoration: underline; }
.contact-method .method-label{ display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 500; }

.form-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-soft);
}
.form-row{ display: grid; gap: 1.15rem; margin-bottom: 1.15rem; }
@media (min-width: 620px){
  .form-row--two{ grid-template-columns: 1fr 1fr; }
}
.field label{
  display: block; font-weight: 700; font-size: 0.92rem;
  color: var(--navy-deep); margin-bottom: 0.4rem;
}
.field .hint{ font-weight: 500; color: var(--muted); font-size: 0.82rem; }
.field input, .field select, .field textarea{
  width: 100%; font: inherit; color: var(--ink);
  padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: var(--cream);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--accent); background: var(--white); outline: none;
}
.field textarea{ min-height: 130px; resize: vertical; }
.form-note{
  font-size: 0.85rem; color: var(--muted); margin-top: 1rem;
}
.form-status{
  margin-top: 1rem; padding: 0.9rem 1rem; border-radius: var(--radius-sm);
  background: var(--navy-pale); color: var(--navy-deep); font-weight: 600;
  display: none;
}
.form-status.is-visible{ display: block; }

/* utility */
.mt-lg{ margin-top: clamp(2rem, 5vw, 3.5rem); }
.text-center{ text-align: center; }
.bg-cream{ background: var(--cream); }
