/* ==========================================================
   My Home Circumcision — Sage / Mint Premium
   Mobile-first. Cormorant + Montserrat. Soft, rounded, warm.
   ========================================================== */

:root {
  --teal:        #7FB8B2;   /* primary sage / teal */
  --teal-dark:   #5F9F98;   /* hover, dark accent */
  --teal-deep:   #43807A;   /* deepest, for text on light */
  --aqua:        #D8ECE8;   /* light sage tint for sections */
  --aqua-soft:   #EAF3F1;
  --beige:       #F2D9C1;   /* warm peach accent */
  --beige-soft:  #FAEBDC;
  --cream:       #FFFAF5;   /* warm white page bg */
  --cream-soft:  #FBF6EF;
  --surface:     #FFFFFF;
  --charcoal:    #3F3F3F;   /* primary text */
  --ink:         #2A2A2A;   /* heading color */
  --gray:        #6F6F6F;   /* secondary text */
  --gray-soft:   #9A9A9A;   /* tertiary text */
  --line:        #ECECE5;
  --line-soft:   #F4F2EC;

  /* Legacy aliases so old class refs keep working */
  --blue:        var(--teal-dark);
  --blue-dk:     var(--teal-deep);
  --blue-pale:   var(--aqua);
  --blue-soft:   var(--aqua);
  --sage:        var(--teal);
  --sage-dk:     var(--teal-dark);
  --sage-soft:   var(--aqua);
  --blush:       var(--aqua);
  --ink-soft:    var(--gray);
  --ink-mute:    var(--gray-soft);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4.5rem;
  --s-7: 6rem;

  --radius:      14px;
  --radius-md:   22px;
  --radius-lg:   28px;
  --radius-xl:   34px;
  --radius-pill: 999px;

  --shadow-sm:  0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md:  0 18px 45px rgba(0, 0, 0, 0.04);
  --shadow-lg:  0 30px 70px rgba(72, 92, 89, 0.12);
  --shadow-cta: 0 12px 26px rgba(95, 159, 152, 0.24);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--teal); color: #FFF; }

/* ---------- Layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s-3);
}
.wrap-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--s-3);
}

section { padding: var(--s-5) 0; }
section.tight { padding: var(--s-4) 0; }
section.cream-soft { background: var(--cream-soft); }
section.aqua-bg, section.sage-bg, section.blush { background: var(--aqua); }
section.terracotta, section.deep-blue, section.dark {
  background: var(--charcoal);
  color: #FFF;
}
section.terracotta h1, section.deep-blue h1, section.dark h1,
section.terracotta h2, section.deep-blue h2, section.dark h2,
section.terracotta h3, section.deep-blue h3, section.dark h3 { color: #FFF; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); font-weight: 500; letter-spacing: -0.01em; line-height: 1.05; }
h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 500; letter-spacing: -0.005em; }
h3 { font-size: 1.7rem; font-weight: 500; }
h4 { font-family: var(--sans); font-size: 0.92rem; font-weight: 600; letter-spacing: 0; color: var(--ink); }

.eyebrow {
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--sans);
  margin-bottom: var(--s-2);
  display: inline-block;
}

p { color: var(--gray); line-height: 1.7; }
p.lead, p.lede {
  color: var(--gray);
  font-size: 1.12rem;
  max-width: 760px;
  line-height: 1.65;
}
.lead.center, p.lede.center { margin-left: auto; margin-right: auto; }

em { font-style: italic; font-weight: 500; color: inherit; }
.script { font-family: var(--serif); font-style: italic; color: inherit; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 15px 28px;
  background: var(--teal-dark);
  color: #FFF;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  border: 1px solid var(--teal-dark);
  box-shadow: var(--shadow-cta);
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(67, 128, 122, 0.28);
}
.btn.secondary, .btn-ghost {
  background: transparent;
  color: var(--teal-deep);
  border-color: var(--teal-dark);
  box-shadow: none;
}
.btn.secondary:hover, .btn-ghost:hover {
  background: var(--teal-dark);
  color: #FFF;
}
.btn-light {
  background: #FFF;
  color: var(--ink);
  border-color: #FFF;
  box-shadow: var(--shadow-sm);
}
.btn-light:hover {
  background: var(--teal-dark);
  color: #FFF;
  border-color: var(--teal-dark);
}
.btn-sage, .btn-blue { /* legacy aliases */
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}
.btn-sage:hover, .btn-blue:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.link-script, .link-underline {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--teal-dark);
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.link-script::after, .link-underline::after { content: '→'; }
.link-script:hover, .link-underline:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
  gap: 14px;
}

/* ---------- Top announcement bar ---------- */
.topbar {
  background: var(--aqua);
  color: var(--charcoal);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  justify-content: center;          /* mobile: logo centered */
  align-items: center;
  padding: 16px var(--s-3);
  background: rgba(255, 255, 255, 0.94);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  /* NOTE: backdrop-filter is applied desktop-only (≥920px). On mobile it would
     make the header a containing block and trap the position:fixed nav drawer
     inside it, clipping the menu. The drawer is hidden on desktop, so the blur
     is safe there. */
  transition: padding 0.25s ease;
}
.site-header .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.site-header .brand img {
  height: 64px;
  width: auto;
  transition: height 0.25s ease;
}
/* mobile: shrink the logo + header once the page is scrolled */
.site-header.scrolled { padding-top: 9px; padding-bottom: 9px; }
.site-header.scrolled .brand img { height: 38px; }
.brand-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #FFF;
  overflow: hidden;
}
.brand-icon img { width: 78%; height: auto; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 0.95;
  color: var(--ink);
}
.brand-name span {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  color: var(--teal-deep);
  letter-spacing: 0.28em;
  font-weight: 600;
  margin-top: 6px;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: absolute;               /* mobile: pinned right, logo stays centered */
  right: var(--s-3);
  top: 50%;
  transform: translateY(-50%);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-desktop { display: none; }

/* Mobile-only Parent Portal button, pinned left in the header bar so it's
   visible at a glance without opening the drawer. Hidden on desktop (≥920px),
   where the in-nav .nav-cta Portal button takes over. */
.nav-portal-m {
  position: absolute;
  left: var(--s-3);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  background: var(--teal-dark);
  color: #FFF;
  border: 1px solid var(--teal-dark);
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--shadow-cta);
}
.nav-portal-m svg { flex: 0 0 auto; }
.nav-portal-m:focus-visible { outline: 2px solid var(--teal-deep); outline-offset: 2px; }
/* very narrow screens: drop the label, keep the icon so it never crowds the logo */
@media (max-width: 380px) {
  .nav-portal-m span { display: none; }
  .nav-portal-m { padding: 9px; }
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  top: var(--drawer-top, 110px);
  background: var(--cream);
  padding: var(--s-4) var(--s-3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 49;
  overflow-y: auto;
}
.nav-drawer[aria-hidden="false"] { transform: translateX(0); }
.nav-drawer ul { list-style: none; padding: 0; margin: 0; }
.nav-drawer li { border-bottom: 1px solid var(--line); }
.nav-drawer li a {
  display: block;
  padding: var(--s-3) 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--ink);
}
.nav-drawer li a.active { color: var(--teal-deep); font-style: italic; }
.nav-drawer .drawer-cta { margin-top: var(--s-4); display: block; text-align: center; }
.nav-drawer .drawer-contact {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--gray);
}
.nav-drawer .drawer-contact strong {
  display: block;
  font-weight: 600;
  color: var(--gray-soft);
  margin-bottom: 6px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ---------- HERO (default — two column with logo card) ---------- */
.hero {
  padding: 0 0 var(--s-7);
  background: #FFFAF5;
  position: relative;
  overflow: hidden;
}
/* mobile: photo shown above the hero content, softly fading into the cream */
.hero-photo-m {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 26%;
  -webkit-mask-image: linear-gradient(to bottom, #000 46%, rgba(0,0,0,0.55) 74%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 46%, rgba(0,0,0,0.55) 74%, transparent 100%);
  margin-bottom: var(--s-2);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  align-items: center;
}
.hero-content { max-width: 720px; }

.hero-eyebrow {
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--sans);
  margin-bottom: var(--s-2);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 4.8rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
  color: var(--ink);
  max-width: 760px;
}
.hero h1 em { font-style: italic; font-weight: 500; color: inherit; }
.hero p {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 620px;
  margin: var(--s-3) 0 var(--s-3);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;           /* stacked — How It Works under Book Consultation */
  align-items: flex-start;
  gap: 14px;
  margin-top: var(--s-3);
  margin-bottom: var(--s-4);
}

.trust-strip {
  display: grid;                    /* mobile: locked 2 × 2 */
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: var(--s-3);
}
.pill {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 0.78rem;
  color: var(--gray);
  font-family: var(--sans);
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-lg);
  display: none;                    /* mobile: hidden — restored at 920px */
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.hero-card img {
  width: 100%;
  max-width: 380px;
  height: auto;
}

/* Legacy hero badge/trust (kept for compat) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--aqua);
  color: var(--teal-deep);
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--s-3);
}
.hero-trust {
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--gray);
}

/* HERO PHOTO variant (kept for inner pages) */
.hero--photo {
  padding: 0;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  color: #FFF;
  background:
    linear-gradient(to top, rgba(40, 60, 60, 0.78) 0%, rgba(40, 60, 60, 0.30) 50%, rgba(40, 60, 60, 0.05) 100%),
    url('https://www.myhomecircumcision.com/cdn/shop/files/banner_copy.jpg?v=1777560949&width=2400') center / cover no-repeat;
}
.hero--photo .wrap { padding-top: var(--s-6); padding-bottom: var(--s-5); }
.hero--photo h1, .hero--photo .hero-eyebrow { color: #FFF; }
.hero--photo p { color: rgba(255,255,255,0.92); }

/* ---------- Section heads ---------- */
.section-head { margin-bottom: var(--s-4); max-width: 50rem; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: var(--s-2); }
.section-head p { font-size: 1.1rem; color: var(--gray); max-width: 760px; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Cards (3-up benefit grid) ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
.card {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.06);
}
.card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--aqua);
  display: grid;
  place-items: center;
  margin-bottom: var(--s-3);
  font-size: 1.5rem;
  color: var(--teal-deep);
}
.card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.card p { color: var(--gray); }

/* Card with photo header */
.card.has-photo { padding: 0; overflow: hidden; }
.card.has-photo .card-photo {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--cream-soft);
}
.card.has-photo .card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card.has-photo:hover .card-photo img { transform: scale(1.04); }
.card.has-photo .card-body { padding: var(--s-4); }
.card.has-photo .card-body h3 { font-size: 1.5rem; margin-bottom: 8px; }

/* ---------- Photo gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gallery .item {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream-soft);
  aspect-ratio: 1;
}
.gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery .item:hover img { transform: scale(1.05); }

/* Legacy: benefit-card (used on other pages) */
.benefits { display: grid; grid-template-columns: 1fr; gap: var(--s-3); }
.benefit-card {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.benefit-card .photo { aspect-ratio: 4/3; background: var(--cream-soft); overflow: hidden; }
.benefit-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.benefit-card .body { padding: var(--s-3); }
.benefit-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin-bottom: 8px; line-height: 1.25; }
.benefit-card p { font-size: 0.95rem; color: var(--gray); }

/* ---------- Split (image + steps) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: var(--s-5);
}
.soft-photo {
  min-height: 320px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--aqua), #FFF 60%, var(--beige));
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}
.soft-photo .inner-card {
  width: 78%;
  padding: var(--s-4);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--ink);
}
.soft-photo.with-image { padding: 0; background: none; box-shadow: none; min-height: 0; }
.soft-photo.with-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  aspect-ratio: 5/6;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
  margin-top: var(--s-3);
}
.step {
  counter-increment: step;
  background: #FFF;
  border-radius: var(--radius-md);
  padding: 20px 22px 20px 70px;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.step::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: #FFF;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.92rem;
}
.step strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.25;
}
.step p { color: var(--gray); font-size: 0.95rem; margin: 0; }

/* ---------- Vitamin K / banner section ---------- */
.banner {
  background: linear-gradient(120deg, var(--aqua), #FFF);
  border-radius: var(--radius-xl);
  padding: var(--s-5);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  align-items: center;
}
.banner h2 { margin-bottom: 10px; }
.banner p { color: var(--gray); margin-bottom: var(--s-3); }
.banner-cta { display: flex; align-items: center; }

/* ---------- Quote / Testimonial card ---------- */
.google-rating {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray);
  margin-top: var(--s-3);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.google-rating .gr-stars {
  color: var(--teal-dark);
  letter-spacing: 2px;
  font-size: 0.85rem;
}
.google-rating.gr-reviews { display: none; }

.quote-card {
  max-width: 920px;
  margin: 0 auto;
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  text-align: left;
}
.quote-card .stars {
  color: var(--teal-dark);
  letter-spacing: 4px;
  font-size: 0.95rem;
  margin-bottom: var(--s-2);
}
.quote-card p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 var(--s-2);
  font-style: italic;
}
.quote-card strong, .quote-card cite {
  font-style: normal;
  font-weight: 600;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

/* Legacy testimonial style */
.testimonial { text-align: center; max-width: 760px; margin: 0 auto; padding: var(--s-2); }
.testimonial .stars { color: var(--teal-dark); letter-spacing: 5px; margin-bottom: var(--s-2); font-size: 0.95rem; }
.testimonial p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: var(--s-2);
}
.testimonial cite {
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-soft);
}

/* ---------- Locations grid ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
}
.location-card {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}
.location-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.location-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.location-card .region {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-soft);
}
.location-card::after {
  content: '→';
  color: var(--teal-dark);
  font-size: 1.2rem;
}

/* ---------- FAQ ---------- */
.faq-list { }
.faq-item {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-3);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s-3);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal-dark);
  line-height: 1;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .body {
  padding: 0 var(--s-3) var(--s-3);
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.7;
}
.faq-item .body ul { padding-left: 1.2rem; margin-top: var(--s-2); }
.faq-item .body ul li { margin-bottom: 6px; }
.faq-item .body p + p { margin-top: var(--s-2); }

/* ---------- Stats / Numbers ---------- */
.stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
.stat-card {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-card .num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: lining-nums proportional-nums;
  font-feature-settings: "lnum" 1, "pnum" 1;
}
.stat-card .lbl {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ---------- Forms ---------- */
.form-card {
  background: #FFF;
  padding: var(--s-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: var(--s-3); }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  -webkit-appearance: none;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #FFF;
}
.field textarea { min-height: 100px; resize: vertical; }
.field-pair { display: grid; grid-template-columns: 1fr; gap: 0; }

/* ---------- Pricing — two-column split ---------- */
.pricing-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  align-items: center;
}
.includes-col h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--s-2);
  color: var(--ink);
}
.includes-refined { list-style: none; padding: 0; margin: 0; }
.includes-refined li {
  position: relative;
  padding: 15px 0 15px 38px;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  color: var(--ink);
}
.includes-refined li:last-child { border-bottom: 0; }
.includes-refined li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 19px;
  width: 9px;
  height: 16px;
  border: solid var(--teal-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.price-card {
  background: #FFF;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.price-card .price-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream-soft);
}
.price-card .price-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.price-card .price-body { padding: var(--s-5); text-align: center; }
.price-card .price-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 600;
}
.price-card .amount {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 12vw, 4.4rem);
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1;
  margin: 12px 0 var(--s-2);
  font-variant-numeric: lining-nums proportional-nums;
  font-feature-settings: "lnum" 1, "pnum" 1;
}
.price-card .price-body p {
  color: var(--gray);
  font-size: 0.98rem;
  margin: 0 auto var(--s-3);
  max-width: 32ch;
}
.price-card .btn { width: 100%; }
.price-card .price-note {
  margin-top: var(--s-3);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-soft);
}

/* ---------- Feature split (for inner pages) ---------- */
.feature-split { display: grid; gap: var(--s-4); align-items: center; }
.feature-split .feature-image { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; }
.feature-split .feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-split .feature-media { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; }
.feature-split .feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-split .feature-text h2 { margin-bottom: var(--s-2); }
.feature-split .feature-text p { margin-bottom: var(--s-2); }

/* ---------- Final CTA / Footer ---------- */
.final-cta {
  text-align: center;
  background: var(--charcoal);
  color: #FFF;
  padding: var(--s-6) var(--s-3);
}
.final-cta h2 { color: #FFF; }
.final-cta p { color: #DDD; max-width: 640px; margin: var(--s-3) auto; font-size: 1.1rem; }

.site-footer {
  padding: var(--s-5) var(--s-3) var(--s-3);
  text-align: center;
  font-size: 0.86rem;
  color: var(--gray);
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
}
.site-footer .wrap { display: grid; gap: var(--s-4); }
.footer-brand { text-align: center; }
.footer-brand img { height: 60px; margin: 0 auto var(--s-2); }
.footer-brand p { color: var(--gray); max-width: 36ch; margin: 0 auto; }
.footer-col { text-align: center; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--s-2);
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 5px 0; }
.footer-col ul a { color: var(--gray); }
.footer-col ul a:hover { color: var(--teal-deep); }
.footer-bottom {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-2);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-soft);
}
.admin-link {
  color: inherit;
  opacity: 0.45;
  transition: opacity 0.2s, color 0.2s;
}
.admin-link:hover { opacity: 1; color: var(--teal-deep); }

.socials { display: flex; gap: 10px; justify-content: center; }
.socials a {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gray);
  font-size: 0.74rem;
  font-family: var(--sans);
  transition: all 0.2s;
}
.socials a:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #FFF;
}

/* ---------- Misc utilities ---------- */
.divider { width: 60px; height: 1px; background: var(--teal-dark); margin: var(--s-3) 0; }
.divider.center { margin-left: auto; margin-right: auto; }

/* ---------- Editorial list (legacy) ---------- */
.editorial-feature { display: grid; gap: var(--s-4); }
.editorial-feature .feature-image { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-lg); }
.editorial-feature .feature-image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-list { list-style: none; padding: 0; display: grid; gap: var(--s-3); margin-top: var(--s-3); }
.editorial-list li { display: grid; grid-template-columns: auto 1fr; gap: var(--s-3); padding-bottom: var(--s-3); border-bottom: 1px solid var(--line); }
.editorial-list li:last-child { border-bottom: 0; }
.editorial-list .num { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--teal-deep); padding-top: 4px; }
.editorial-list h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 6px; }
.editorial-list p { color: var(--gray); }

/* =========================================================
   Breakpoints
   ========================================================= */

@media (min-width: 640px) {
  .wrap { padding: 0 var(--s-4); }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .field-pair { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .footer-brand, .footer-col { text-align: left; }
  .socials { justify-content: flex-start; }
}

@media (min-width: 920px) {
  .wrap { padding: 0 var(--s-5); }
  section { padding: var(--s-7) 0; }

  /* Header: show desktop nav */
  .site-header {
    padding: 22px 7%;
    justify-content: space-between;
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
  }
  .nav-toggle, .nav-drawer, .nav-portal-m { display: none !important; }
  .nav-desktop {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .nav-desktop a { color: var(--charcoal); font-weight: 500; }
  .nav-desktop a.active { color: var(--teal-deep); }
  .nav-desktop a:hover { color: var(--teal-deep); }
  .nav-desktop .nav-cta,
  .nav-desktop .nav-cta:hover { margin-left: 8px; color: #FFF; }

  .site-header .brand img { height: 52px; }
  /* desktop: header stays a constant size — shrink-on-scroll is mobile-only */
  .site-header.scrolled { padding-top: 22px; padding-bottom: 22px; }
  .site-header.scrolled .brand img { height: 52px; }

  /* Hero two-column — restore the diagonal cream-to-photo wash */
  .hero {
    padding: var(--s-5) 7% var(--s-6);
    background-image:
      linear-gradient(100deg, rgba(255,250,245,0.97) 0%, rgba(255,250,245,0.88) 40%, rgba(255,250,245,0.58) 68%, rgba(216,236,232,0.42) 100%),
      url('https://www.myhomecircumcision.com/cdn/shop/files/banner_copy.jpg?v=1777560949&width=2400');
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
  }
  .hero-photo-m { display: none; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--s-5); }
  .hero-card { display: flex; padding: var(--s-5); min-height: 440px; }
  .hero-card img { max-width: 420px; }

  /* Desktop: trust pills flow at natural width */
  .trust-strip { display: flex; flex-wrap: wrap; }
  .pill { display: inline-flex; }

  /* Cards row */
  .cards { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }

  /* Gallery — 4 across (set at 640px) */

  /* Pricing two-column */
  .pricing-split { grid-template-columns: 1.05fr 0.95fr; gap: var(--s-5); align-items: center; }

  /* Split layout side-by-side */
  .split { grid-template-columns: 0.95fr 1.05fr; gap: var(--s-5); padding: var(--s-6); }

  /* Banner two-column */
  .banner { grid-template-columns: 1fr auto; gap: var(--s-4); padding: var(--s-6); }

  /* Locations 4-up */
  .locations-grid { grid-template-columns: repeat(4, 1fr); }

  /* Feature split for inner pages */
  .feature-split { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .feature-split.reverse .feature-image { order: 2; }

  /* Editorial */
  .editorial-feature { grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: center; }
  .editorial-feature.reverse .feature-image { order: 2; }

  /* Benefits */
  .benefits { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }

  /* Footer */
  .site-footer { text-align: left; padding: var(--s-6) 7% var(--s-3); }
  .site-footer .wrap { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-5); }

  /* Final CTA */
  .final-cta { padding: var(--s-6) 7%; }

  .topbar { font-size: 0.82rem; }
}

@media (min-width: 1200px) {
  .hero h1 { font-size: 5rem; }
}

/* ---------- Mobile hero: keep it calm and uncluttered ---------- */
@media (max-width: 919px) {
  .hero .trust-strip,
  .hero .google-rating { display: none; }
  .google-rating.gr-reviews { display: inline-flex; margin-top: var(--s-2); }
}

body.nav-open { overflow: hidden; }

/* ============================================================
   Phone-first CTAs (call / text)
   ============================================================ */
.phone-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--teal-dark); color: #FFF; text-decoration: none;
  font-family: var(--serif); font-weight: 600; line-height: 1;
  font-size: clamp(1.7rem, 4vw, 2.4rem); letter-spacing: 0.01em;
  padding: 18px 34px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-cta);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.phone-cta svg { width: 1.05em; height: 1.05em; flex-shrink: 0; }
.phone-cta:hover { background: var(--teal-deep); transform: translateY(-1px); box-shadow: 0 16px 34px rgba(67,128,122,0.30); }

.hero-cta-phone { margin-top: var(--s-3); }
.cta-kicker { display: block; font-family: var(--sans); font-weight: 600; color: var(--charcoal); font-size: 0.98rem; margin-bottom: 12px; }
.phone-sub { margin-top: 12px; font-family: var(--sans); font-size: 0.92rem; color: var(--gray); }
.phone-sub a { color: var(--teal-deep); font-weight: 600; text-decoration: underline; }

.hero-actions.secondary-actions { flex-direction: row; flex-wrap: wrap; gap: 10px; margin-top: var(--s-3); }

.topbar a { color: var(--charcoal); font-weight: 700; text-decoration: underline; }

/* final CTA uses a light phone button on the dark section */
.final-cta .phone-cta { background: #FFF; color: var(--teal-deep); }
.final-cta .phone-cta:hover { background: #FFF; color: var(--teal-deep); }
.final-cta-msg { max-width: 460px; margin: var(--s-4) auto 0; text-align: left; }
.final-cta-sub { margin-top: var(--s-3); color: #DDD; font-family: var(--sans); font-size: 0.95rem; }
.final-cta-sub a { color: #FFF; text-decoration: underline; font-weight: 600; }

/* sticky mobile call / text bar */
.mobile-cta-bar { display: none; }
@media (max-width: 760px) {
  .mobile-cta-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,250,245,0.96); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(0,0,0,0.06);
  }
  .mobile-cta-bar .mcta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; border-radius: var(--radius-pill);
    font-family: var(--sans); font-weight: 700; font-size: 0.98rem;
    letter-spacing: 0.04em; text-decoration: none;
  }
  .mobile-cta-bar .mcta svg { width: 18px; height: 18px; }
  .mcta.call { background: var(--teal-dark); color: #FFF; }
  .mcta.text { background: #FFF; color: var(--teal-deep); border: 1.5px solid var(--teal); }
  body { padding-bottom: 78px; }                 /* clear the fixed bar */
  .phone-cta { font-size: clamp(1.5rem, 7vw, 2rem); padding: 16px 24px; }
}

/* ============================================================
   BLOG — listing grid + article (prose) pages
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--s-4);
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card .thumb { aspect-ratio: 16 / 10; background: var(--aqua-soft); overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card .card-body { padding: var(--s-3); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card .meta { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-soft); font-weight: 600; }
.blog-card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; line-height: 1.25; color: var(--ink); }
.blog-card p { font-size: 0.92rem; color: var(--gray); line-height: 1.6; margin: 0; }
.blog-card .read { margin-top: auto; padding-top: 6px; font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-deep); }

/* article */
.article-hero { text-align: center; }
.article-hero .eyebrow { justify-content: center; }
.article-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.12; margin: 6px auto 10px; max-width: 22ch; }
.article-hero .byline { font-size: 0.82rem; color: var(--gray-soft); letter-spacing: 0.04em; }
.article-figure { margin: var(--s-4) 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.article-figure img { width: 100%; height: auto; display: block; }
.article-body { font-size: 1.06rem; line-height: 1.8; color: #3A3A3A; }
.article-body h2 { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; color: var(--ink); margin: var(--s-4) 0 var(--s-1); }
.article-body h3 { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin: var(--s-3) 0 6px; }
.article-body p { margin-bottom: var(--s-2); color: #3A3A3A; }
.article-body ul, .article-body ol { margin: 0 0 var(--s-2) 1.3em; }
.article-body li { margin-bottom: 8px; line-height: 1.7; color: #3A3A3A; }
.article-body a { color: var(--teal-deep); text-decoration: underline; }
.article-body img { width: 100%; height: auto; border-radius: var(--radius); margin: var(--s-3) 0; }
.article-body strong { color: var(--ink); }
.article-cta {
  margin-top: var(--s-5); padding: var(--s-4); text-align: center;
  background: var(--aqua-soft); border: 1px solid #D8E8E5; border-radius: var(--radius-lg);
}
.article-cta h2 { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; color: var(--ink); margin-bottom: 6px; }
.article-cta p { color: var(--gray); margin-bottom: var(--s-3); }
.article-cta .btn-row { justify-content: center; }
.article-back { display: inline-block; margin-top: var(--s-4); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-deep); text-decoration: none; }

/* ============================================================
   Hero embedded "send us a message" form (homepage)
   ============================================================ */
.hero-msg { margin-top: var(--s-3); max-width: 460px; }
.hero-msg-kicker { font-family: var(--sans); font-weight: 600; color: var(--charcoal, #2A2A2A); font-size: 1rem; margin-bottom: 12px; }
.hero-msg-form { background: #FFF; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: var(--s-3); }
.hero-msg-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; font-family: var(--sans); font-size: 0.98rem; color: var(--ink); background: var(--cream); resize: vertical; min-height: 64px; }
.hero-msg-phone { width: 100%; margin-top: 10px; padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--radius-pill); font-family: var(--sans); font-size: 0.98rem; color: var(--ink); background: var(--cream); }
.hero-msg-form textarea:focus, .hero-msg-phone:focus { outline: none; border-color: var(--teal); background: #FFF; }
.hero-msg-send { width: 100%; white-space: nowrap; margin-top: 12px; }
.hero-msg-consent { display: flex; gap: 8px; align-items: flex-start; font-size: 0.64rem; color: var(--gray); margin-top: 10px; line-height: 1.4; }
.hero-msg-consent input { margin-top: 2px; flex: none; }
.hero-msg-alt { margin-top: 12px; font-family: var(--sans); font-size: 0.92rem; color: var(--gray); }
.hero-msg-alt a { color: var(--teal-deep); font-weight: 700; text-decoration: none; }
.hero-msg-err { display: none; margin-top: 10px; background: #FBEAEA; color: #9B2C2C; border-radius: 10px; padding: 9px 12px; font-size: 0.82rem; }
.hero-msg-err.show { display: block; }
.hero-msg-done { background: #FFF; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: var(--s-4); }
.hero-msg-done h3 { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--ink); margin-bottom: 6px; }
.hero-msg-done p { color: var(--gray); margin: 0; }

/* ---------- Free parent guide (email capture below hero) ---------- */
.guide-grid { display: grid; grid-template-columns: minmax(0, 240px) 1fr; gap: var(--s-4); align-items: center; }
.guide-cover { position: relative; }
.guide-cover img {
  display: block; width: 100%; height: auto; border-radius: var(--radius);
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.guide-badge {
  position: absolute; top: -10px; left: -10px;
  background: var(--teal-deep); color: #FFF; font-family: var(--sans);
  font-size: 0.72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-pill); box-shadow: var(--shadow-md);
}
.guide-content h2 { margin-bottom: 10px; }
.guide-content .lead { margin-bottom: var(--s-3); }
.guide-points {
  list-style: none; margin: 0 0 var(--s-3); padding: 0;
  display: grid; gap: 8px; font-family: var(--sans); color: var(--ink); font-size: 0.96rem;
}
.guide-points li { position: relative; padding-left: 26px; }
.guide-points li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 16px; height: 16px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2343807A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.guide-form-row { display: flex; gap: 10px; flex-wrap: wrap; }
.guide-email {
  flex: 1 1 220px; min-width: 0; padding: 13px 18px; border: 1px solid var(--line);
  border-radius: var(--radius-pill); font-family: var(--sans); font-size: 0.98rem;
  color: var(--ink); background: #FFF;
}
.guide-email:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(127,184,178,.35); }
.guide-send { flex: 0 0 auto; white-space: nowrap; }
.guide-consent {
  display: flex; gap: 8px; align-items: flex-start; font-size: 0.8rem;
  color: var(--gray); margin-top: 10px; line-height: 1.45;
}
.guide-consent input { margin-top: 2px; flex: none; }
.guide-instant { margin-top: 10px; font-family: var(--sans); font-size: 0.85rem; color: var(--gray); }
.guide-err { display: none; margin-top: 10px; background: #FBEAEA; color: #9B2C2C; border-radius: 10px; padding: 9px 12px; font-size: 0.82rem; }
.guide-err.show { display: block; }
.guide-done h3 { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--ink); margin-bottom: 6px; }
.guide-done p { color: var(--gray); margin: 0 0 var(--s-3); }
.guide-done .guide-dl { margin-bottom: var(--s-3); }
.guide-done-sub { font-family: var(--sans); font-size: 0.9rem; }
.guide-done-sub a { color: var(--teal-deep); font-weight: 700; text-decoration: none; }
@media (max-width: 760px) {
  .guide-grid { grid-template-columns: 1fr; gap: var(--s-3); }
  .guide-cover { max-width: 200px; margin: 0 auto; }
  .guide-send { flex: 1 1 100%; }
}

/* ============================================================
   Dropdown navigation — desktop hover menus + mobile accordion
   ============================================================ */
@media (min-width: 920px) {
  .nav-desktop .nav-item { position: relative; display: inline-flex; align-items: center; }
  .nav-desktop .nav-item > a { display: inline-flex; align-items: center; gap: 6px; }
  .nav-desktop .nav-item > a::after {
    content: ''; width: 6px; height: 6px; margin-top: -3px;
    border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg); opacity: 0.6;
  }
  .nav-desktop .dropdown {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
    background: #FFF; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-md); padding: 8px; min-width: 214px;
    display: flex; flex-direction: column; gap: 2px;
    opacity: 0; visibility: hidden; transition: opacity .16s ease, transform .16s ease; z-index: 60;
  }
  .nav-desktop .dropdown::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
  .nav-desktop .nav-item:hover .dropdown,
  .nav-desktop .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(3px); }
  .nav-desktop .dropdown a {
    text-transform: none; letter-spacing: 0; font-size: 0.9rem; font-weight: 500;
    color: var(--ink); padding: 9px 14px; border-radius: 8px; white-space: nowrap; font-family: var(--sans);
  }
  .nav-desktop .dropdown a:hover { background: var(--aqua-soft); color: var(--teal-deep); }
  .nav-desktop .nav-parent { cursor: default; }
  .nav-desktop { gap: 20px; }
}

/* mobile drawer accordion (native <details>) */
.nav-drawer .dgroup { display: block; }
.nav-drawer .dgroup > summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-3) 0; font-family: var(--serif); font-weight: 500; font-size: 1.9rem;
  color: var(--ink); cursor: pointer; list-style: none;
}
.nav-drawer .dgroup > summary::-webkit-details-marker { display: none; }
.nav-drawer .dgroup > summary::after { content: '+'; font-family: var(--sans); font-weight: 400; color: var(--gray-soft); margin-left: 12px; }
.nav-drawer .dgroup[open] > summary::after { content: '\2013'; }
.nav-drawer .dgroup > a {
  display: block; padding: 11px 0 11px 18px; font-family: var(--sans); font-size: 1.05rem;
  color: var(--gray); border-top: 1px solid var(--line-soft);
}

/* Mobile hero: center content + lift it up to tighten over the photo */
@media (max-width: 760px) {
  .hero-photo-m { height: 260px; margin-bottom: 0; }
  .hero .wrap { margin-top: -48px; }
  .hero-content { text-align: center; }
  .hero-msg, .hero-msg-form, .hero-msg-done { margin-left: auto; margin-right: auto; }
  .hero-actions.secondary-actions { justify-content: center; }
  .hero-msg-consent { text-align: left; }
}

/* ============================================================
   Google reviews widget (real reviews via /api/reviews)
   ============================================================ */
.gr-summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: #FFF; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: 18px 22px; margin-bottom: var(--s-3); }
.gr-sum-rating { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.gr-stars-y { color: #F5A623; letter-spacing: 2px; font-size: 1rem; }
.gr-sum-count { font-size: 0.9rem; color: var(--gray); margin-top: 2px; }
.gr-leave { font-size: 0.74rem; }
.gr-track-wrap { position: relative; }
.gr-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 2px 8px; scrollbar-width: none; }
.gr-track::-webkit-scrollbar { display: none; }
.gr-card { scroll-snap-align: start; flex: 0 0 320px; max-width: 320px; background: #FFF; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: var(--s-3); text-align: left; }
@media (max-width: 520px) { .gr-card { flex-basis: 84%; max-width: 84%; } }
.gr-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.gr-av { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; }
.gr-av-ph { background: var(--aqua); color: var(--teal-deep); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--sans); }
.gr-name { font-weight: 600; color: var(--ink); font-size: 0.95rem; line-height: 1.2; }
.gr-time { font-size: 0.78rem; color: var(--gray-soft); }
.gr-g { width: 20px; height: 20px; margin-left: auto; flex: none; }
.gr-text { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; margin-top: 8px;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.gr-arrow { position: absolute; top: 42%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%;
  background: #FFF; border: 1px solid var(--line); box-shadow: var(--shadow-sm); color: var(--ink); font-size: 1.3rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; }
.gr-prev { left: -8px; } .gr-next { right: -8px; }
.gr-arrow:hover { background: var(--aqua-soft); }
@media (max-width: 760px) { .gr-arrow { display: none; } }

/* reviews: card-as-link, read-more, and see-all */
a.gr-card { text-decoration: none; color: inherit; transition: box-shadow 0.2s, transform 0.15s; }
a.gr-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.gr-readmore { display: inline-block; margin-top: 8px; font-size: 0.82rem; font-weight: 700; color: var(--teal-deep); }
.gr-seeall { text-align: center; margin-top: var(--s-3); }
.gr-seeall a { font-family: var(--sans); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-deep); border-bottom: 1px solid var(--teal); padding-bottom: 3px; }
.gr-seeall a:hover { color: var(--charcoal); border-color: var(--charcoal); }

/* Footer legal links (Privacy / Terms / Cookie preferences) */
.footer-legal { font-size: 0.78rem; color: var(--gray); }
.footer-legal a { color: var(--gray); text-decoration: none; }
.footer-legal a:hover { color: var(--teal-deep); text-decoration: underline; }
.footer-bottom { flex-wrap: wrap; gap: 0.5rem 1rem; }
