/* ==========================================================================
   Rabbi Shlome Ekstein — Certified Mohel
   Palette: deep indigo, warm gold, parchment cream
   ========================================================================== */

:root{
  --ink:        #16233d;
  --ink-2:      #1f3054;
  --ink-soft:   #4a5670;
  --body:       #43506b;
  --gold:       #b08341;
  --gold-light: #d4ac6e;
  --cream:      #fbf8f3;
  --cream-2:    #f4efe6;
  --line:       #e3dbcd;
  --line-dark:  rgba(255,255,255,.14);
  --white:      #ffffff;

  --maxw: 1140px;
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(22,35,61,.06), 0 4px 14px rgba(22,35,61,.05);
  --shadow-md: 0 10px 40px rgba(22,35,61,.10);
  --shadow-lg: 0 18px 60px rgba(22,35,61,.14);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; scroll-padding-top:90px; }

body{
  margin:0;
  background:var(--cream);
  color:var(--body);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.72;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }

a{ color:var(--gold); text-decoration:none; }
a:hover{ color:var(--ink); }

h1,h2,h3{
  font-family:var(--serif);
  color:var(--ink);
  font-weight:500;
  line-height:1.14;
  letter-spacing:-.01em;
  margin:0 0 .5em;
}
h1{ font-size:clamp(2.5rem, 5.6vw, 4.2rem); }
h2{ font-size:clamp(1.9rem, 3.6vw, 2.75rem); margin-bottom:.6em; }
h3{ font-size:1.3rem; margin-bottom:.35em; }
p{ margin:0 0 1.15em; }

.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.wrap.narrow{ max-width:800px; }
.center{ text-align:center; }
.center .lede{ margin-left:auto; margin-right:auto; }

.eyebrow{
  font-size:.72rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--gold);
  margin:0 0 1rem;
}

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:300;
  background:var(--ink); color:#fff; padding:12px 18px;
}
.skip-link:focus{ left:12px; top:12px; }

:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

/* ==========================================================================
   Header and navigation
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(251,248,243,.94);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid transparent;
  transition:border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled{
  border-bottom-color:var(--line);
  box-shadow:0 1px 20px rgba(22,35,61,.05);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  min-height:80px; gap:20px;
}
.brand{ display:flex; align-items:center; gap:14px; color:var(--ink); }
.brand-mark{
  font-family:var(--serif); font-size:1rem; color:var(--gold);
  border:1px solid var(--line); border-radius:50%;
  width:42px; height:42px; display:grid; place-items:center;
  flex:0 0 auto; background:var(--white);
}
.brand-text{ display:flex; flex-direction:column; line-height:1.2; }
.brand-text strong{ font-family:var(--serif); font-size:1.28rem; font-weight:600; color:var(--ink); }
.brand-text em{
  font-style:normal; font-size:.66rem; letter-spacing:.2em;
  text-transform:uppercase; color:var(--gold); font-weight:600;
}

.nav{ display:flex; align-items:center; gap:26px; }
.nav-item{ position:relative; }

.nav-link{
  display:inline-flex; align-items:center; gap:6px;
  color:var(--ink-soft); font-family:var(--sans); font-size:.89rem; font-weight:500;
  background:none; border:0; padding:4px 0; cursor:pointer;
  position:relative; white-space:nowrap;
}
.nav-link::after{
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0;
  background:var(--gold); transition:width .25s ease;
}
.nav-link:hover{ color:var(--ink); }
.nav-link:hover::after{ width:100%; }

.caret{
  width:6px; height:6px; margin-top:-3px;
  border-right:1.4px solid currentColor; border-bottom:1.4px solid currentColor;
  transform:rotate(45deg); transition:transform .25s ease;
}
.sub-toggle[aria-expanded="true"] .caret{ transform:rotate(-135deg); margin-top:2px; }

.sub{
  position:absolute; top:calc(100% + 18px); left:-18px;
  min-width:238px; padding:10px 0;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  box-shadow:var(--shadow-md);
  opacity:0; visibility:hidden; transform:translateY(-6px);
  transition:opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-item:hover .sub,
.nav-item:focus-within .sub,
.sub-toggle[aria-expanded="true"] + .sub{
  opacity:1; visibility:visible; transform:none;
}
.sub a{
  display:block; padding:9px 22px;
  color:var(--ink-soft); font-size:.89rem; font-weight:500;
}
.sub a:hover{ background:var(--cream-2); color:var(--ink); }

.nav-cta{
  background:var(--ink); color:#fff; padding:11px 22px; border-radius:var(--radius);
  font-size:.89rem; font-weight:500; white-space:nowrap;
}
.nav-cta:hover{ background:var(--gold); color:#fff; }

/* Active page indicator */
.page-index .nav-link[href="index.html"],
.page-faq   .nav-link[href="faq.html"],
.group-about    .sub-toggle[data-group="about"],
.group-services .sub-toggle[data-group="services"],
.group-families .sub-toggle[data-group="families"]{ color:var(--ink); }

.page-index .nav-link[href="index.html"]::after,
.page-faq   .nav-link[href="faq.html"]::after,
.group-about    .sub-toggle[data-group="about"]::after,
.group-services .sub-toggle[data-group="services"]::after,
.group-families .sub-toggle[data-group="families"]::after{ width:100%; }

.page-about          .sub a[href="about.html"],
.page-experience     .sub a[href="experience.html"],
.page-infant-bris    .sub a[href="infant-bris.html"],
.page-adult-bris     .sub a[href="adult-bris.html"],
.page-other-services .sub a[href="other-services.html"],
.page-travel         .sub a[href="travel.html"],
.page-what-to-expect .sub a[href="what-to-expect.html"],
.page-ceremony       .sub a[href="ceremony.html"],
.page-checklists     .sub a[href="checklists.html"]{ color:var(--gold); }

.nav-toggle{
  display:none; background:none; border:0; cursor:pointer;
  width:44px; height:44px; padding:10px; flex-direction:column; justify-content:space-between;
}
.nav-toggle span{
  display:block; height:1.5px; width:100%; background:var(--ink);
  transition:transform .3s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(10.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(-10.5px) rotate(-45deg); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display:inline-block; padding:15px 32px; border-radius:var(--radius);
  font-family:var(--sans); font-size:.94rem; font-weight:500;
  border:1px solid transparent; cursor:pointer; text-align:center;
  transition:background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}
.btn-primary{ background:var(--gold); color:#fff; }
.btn-primary:hover{ background:var(--ink); color:#fff; transform:translateY(-1px); }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--ink); color:var(--ink); background:var(--white); }
.btn-ghost-light{ background:transparent; color:#fff; border-color:rgba(255,255,255,.4); }
.btn-ghost-light:hover{ background:#fff; color:var(--ink); border-color:#fff; }
.btn-block{ width:100%; }

.link-arrow{
  display:inline-block; font-weight:500; font-size:.94rem;
  border-bottom:1px solid var(--line); padding-bottom:2px;
}
.link-arrow::after{ content:" \2192"; }
.section-dark .link-arrow{ border-bottom-color:rgba(255,255,255,.25); }

/* ==========================================================================
   Hero and page headers
   ========================================================================== */
.hero{
  position:relative;
  padding:clamp(70px, 10vw, 124px) 0 0;
  background:
    radial-gradient(1100px 520px at 78% -12%, rgba(212,172,110,.20), transparent 62%),
    linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 62%);
  overflow:hidden;
}
.hero::after{ content:""; position:absolute; inset:auto 0 0 0; height:1px; background:var(--line); }
.hero-inner{ max-width:880px; }
.hero h1{ margin-bottom:.35em; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:2rem; }

.lede{
  font-size:clamp(1.04rem, 1.5vw, 1.2rem);
  color:var(--ink-soft);
  max-width:64ch;
  line-height:1.75;
}

.page-hero{
  padding:clamp(52px, 7vw, 84px) 0 clamp(48px, 6vw, 72px);
  background:
    radial-gradient(900px 420px at 85% -30%, rgba(212,172,110,.22), transparent 60%),
    var(--cream-2);
  border-bottom:1px solid var(--line);
}
.page-hero h1{ margin-bottom:.3em; }
.page-hero .lede{ margin-bottom:0; }

.crumbs{
  font-size:.78rem; letter-spacing:.06em; color:var(--ink-soft);
  margin-bottom:22px; text-transform:uppercase;
}
.crumbs a{ color:var(--ink-soft); }
.crumbs a:hover{ color:var(--gold); }
.crumbs span{ margin:0 8px; opacity:.5; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats{
  list-style:none; margin:clamp(52px,7vw,84px) 0 0; padding:0;
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
}
.stats.stats-plain{
  margin-top:0; border-top:0; border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; background:var(--white);
}
.stats li{
  padding:30px 26px 34px; border-right:1px solid var(--line);
  display:flex; flex-direction:column; gap:6px;
}
.stats li:last-child{ border-right:0; }
.stats strong{
  font-family:var(--serif); font-size:2.3rem; font-weight:500; color:var(--gold); line-height:1;
}
.stats span{ font-size:.82rem; letter-spacing:.04em; color:var(--ink-soft); }

/* ==========================================================================
   Sections
   ========================================================================== */
.section{ padding:clamp(68px, 8vw, 108px) 0; }
.section-tint{ background:var(--cream-2); }
.section-dark{ background:var(--ink); }
.section-dark h1,
.section-dark h2,
.section-dark h3{ color:#fff; }
.section-dark p,
.section-dark li{ color:#c3cbdb; }
.section-dark .eyebrow{ color:var(--gold-light); }
.section-dark .lede{ color:#c3cbdb; }
.section-dark a{ color:var(--gold-light); }
.section-dark a:hover{ color:#fff; }
.section-dark strong{ color:#fff; font-weight:600; }

.grid-2{
  display:grid; grid-template-columns:1fr 1.12fr; gap:clamp(36px,6vw,72px);
  align-items:center;
}
.contact-grid{ align-items:start; }

.prose h2{ margin-top:0; }
.prose h2 + p{ margin-top:0; }
.prose p{ max-width:68ch; }

/* ==========================================================================
   Portrait
   ========================================================================== */
/* The portrait is supplied as a circular crop on a black ground. It is clipped
   to a circle just inside its own edge, so the black corners never show, and
   sits inside a thin gold ring. */
.portrait-frame{
  position:relative;
  width:100%; max-width:430px; margin:0 auto;
  aspect-ratio:1;
  display:grid; place-items:center;
}
.portrait-frame::before{
  content:""; position:absolute; inset:0;
  border:1px solid var(--gold); border-radius:50%;
}
.portrait-frame img{
  width:calc(100% - 30px); height:calc(100% - 30px);
  object-fit:cover; object-position:center;
  border-radius:50%;
  clip-path:circle(49.4% at 50% 50%);
  background:var(--cream-2);
  filter:drop-shadow(0 14px 34px rgba(22,35,61,.20));
}

/* ==========================================================================
   Timeline
   ========================================================================== */
.timeline{
  list-style:none; counter-reset:tl; margin:52px 0 0 14px; padding:0;
  border-left:1px solid rgba(212,172,110,.32);
}
.timeline li{ counter-increment:tl; position:relative; padding:0 0 42px 42px; max-width:76ch; }
.timeline li:last-child{ padding-bottom:0; }
.timeline li::before{
  content:counter(tl);
  position:absolute; left:-15px; top:2px;
  width:29px; height:29px; border-radius:50%;
  background:var(--ink); border:1px solid var(--gold); color:var(--gold-light);
  font-size:.76rem; font-weight:600; display:grid; place-items:center;
}
.timeline h3{ font-size:1.26rem; margin-bottom:.4em; }
.timeline p{ margin-bottom:0; }

/* ==========================================================================
   Cards
   ========================================================================== */
.cards{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:26px; margin-top:52px;
}
.card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:36px 32px; box-shadow:var(--shadow-sm);
  display:flex; flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--gold-light); }
.card p{ font-size:.97rem; flex:1; }
.cards-dark .card{ background:rgba(255,255,255,.04); border-color:var(--line-dark); box-shadow:none; }
.cards-dark .card:hover{ background:rgba(255,255,255,.07); border-color:var(--gold); }

/* ==========================================================================
   Ticks, numbered lists, callouts, fact boxes
   ========================================================================== */
.ticks{ list-style:none; margin:22px 0 0; padding:0; }
.ticks li{
  position:relative; padding-left:26px; margin-bottom:9px;
  font-size:.93rem; color:var(--ink-soft);
}
.ticks.big li{ font-size:1rem; margin-bottom:13px; }
.ticks li::before{
  content:"\2713"; position:absolute; left:0; top:0;
  color:var(--gold); font-size:.85rem; font-weight:700;
}

.numbered{ list-style:none; counter-reset:n; margin:40px 0 0; padding:0; }
.numbered li{ counter-increment:n; position:relative; padding-left:58px; margin-bottom:32px; }
.numbered li::before{
  content:counter(n);
  position:absolute; left:0; top:-2px;
  font-family:var(--serif); font-size:2rem; color:var(--gold); opacity:.6; line-height:1;
}
.numbered h3{ font-size:1.2rem; }
.numbered p{ margin-bottom:0; font-size:.97rem; }

.callout{
  margin:34px 0 0; padding:24px 28px;
  background:var(--white); border-left:3px solid var(--gold); border-radius:2px;
  font-size:.96rem; box-shadow:var(--shadow-sm);
}
.callout strong{ display:block; color:var(--ink); font-weight:600; margin-bottom:6px; }
.section-dark .callout{ background:rgba(255,255,255,.05); box-shadow:none; }
.section-tint .callout{ background:var(--white); }

.fact-box{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:34px 32px; box-shadow:var(--shadow-sm);
}
.fact-box h3{ font-size:1.16rem; }
.fact-box h3 + p{ margin-top:0; }
.fact-box p{ font-size:.95rem; }
.fact-box p:last-child{ margin-bottom:0; }
.fact-note{
  border-top:1px solid var(--line); padding-top:16px; margin-top:20px !important;
  font-size:.88rem !important; color:var(--ink-soft);
}

/* ==========================================================================
   Assurances
   ========================================================================== */
.assurances{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1px; margin-top:52px;
  background:var(--line); border:1px solid var(--line);
  border-radius:var(--radius); overflow:hidden;
}
.assurance{ background:var(--cream-2); padding:32px 30px; transition:background .3s ease; }
.section-tint .assurance{ background:var(--cream); }
.assurance:hover{ background:var(--white); }
.assurance h3{ font-size:1.14rem; margin-bottom:.45em; position:relative; padding-left:26px; }
.assurance h3::before{
  content:"\2713"; position:absolute; left:0; top:.1em;
  color:var(--gold); font-family:var(--sans); font-size:.9rem; font-weight:700;
}
.assurance p{ font-size:.94rem; margin-bottom:0; padding-left:26px; }

/* ==========================================================================
   Steps
   ========================================================================== */
.steps{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(232px,1fr));
  gap:34px; margin-top:52px;
}
.step-num{
  font-family:var(--serif); font-size:2.6rem; color:var(--gold);
  display:block; line-height:1; margin-bottom:14px; opacity:.55;
}
.step h3{ font-size:1.2rem; }
.step p{ font-size:.95rem; margin-bottom:0; }

/* ==========================================================================
   Quotes
   ========================================================================== */
.quotes{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  gap:26px; margin-top:52px;
}
.quote{ margin:0; padding:34px 30px; background:var(--cream-2); border-radius:var(--radius); }
.section-tint .quote{ background:var(--white); }
.quote blockquote{
  margin:0 0 18px;
  font-family:var(--serif); font-size:1.22rem; line-height:1.55; color:var(--ink);
}
.quote blockquote::before{ content:"\201C"; color:var(--gold); }
.quote blockquote::after{ content:"\201D"; color:var(--gold); }
.quote figcaption{ font-size:.85rem; color:var(--ink-soft); letter-spacing:.03em; }

.pull-quote{ margin:0; text-align:center; }
.pull-quote blockquote{
  margin:0; font-family:var(--serif);
  font-size:clamp(1.4rem, 2.8vw, 2rem); line-height:1.42; color:var(--ink);
}
.pull-quote blockquote::before{ content:"\201C"; color:var(--gold); }
.pull-quote blockquote::after{ content:"\201D"; color:var(--gold); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-heading{
  font-size:1.6rem; margin-top:56px; margin-bottom:0;
  padding-bottom:4px;
}
.faq-heading:first-of-type{ margin-top:0; }
.faq{ margin-top:22px; border-top:1px solid var(--line); margin-bottom:8px; }
.faq details{ border-bottom:1px solid var(--line); }
.faq summary{
  list-style:none; cursor:pointer;
  padding:20px 44px 20px 0; position:relative;
  font-family:var(--serif); font-size:1.24rem; color:var(--ink);
  transition:color .2s ease;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary:hover{ color:var(--gold); }
.faq summary::after{
  content:""; position:absolute; right:8px; top:50%;
  width:10px; height:10px; margin-top:-7px;
  border-right:1.5px solid var(--gold); border-bottom:1.5px solid var(--gold);
  transform:rotate(45deg); transition:transform .25s ease;
}
.faq details[open] summary::after{ transform:rotate(-135deg); margin-top:-2px; }
.faq details p{ margin:0 0 22px; padding-right:44px; font-size:.97rem; }

/* ==========================================================================
   Definition list (ceremony honors)
   ========================================================================== */
.terms{ margin:34px 0 0; padding:0; }
.terms > div{
  display:grid; grid-template-columns:210px 1fr; gap:24px;
  padding:20px 0; border-top:1px solid var(--line);
}
.terms dt{
  font-family:var(--serif); font-size:1.2rem; color:var(--ink); font-weight:500;
}
.terms dd{ margin:0; font-size:.97rem; }

/* ==========================================================================
   Printable sheets (checklists page)
   ========================================================================== */
.sheet-head{ margin-bottom:8px; }
.sheet-head h2{ margin-bottom:.35em; }
.sheet-sub{ font-size:1rem; color:var(--ink-soft); max-width:66ch; }
.sheet-h3{
  font-size:1.18rem; margin-top:36px; padding-bottom:8px;
  border-bottom:1px solid var(--line);
}
.print-actions{ margin-top:26px; }

.sheet-form{ margin-top:34px; }
.sheet-form .field-row{ gap:20px; }
.form-actions{
  display:flex; gap:14px; flex-wrap:wrap; margin-top:26px;
}
.form-actions .btn{ flex:1 1 220px; }

.callout-alert{ border-left-color:#c0563f; }
.callout-phone{
  display:block; margin:10px 0; font-weight:600; color:var(--ink);
  font-size:1.02rem;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-list{ list-style:none; margin:32px 0 0; padding:0; }
.contact-list li{
  display:grid; grid-template-columns:104px 1fr; gap:16px;
  padding:15px 0; border-top:1px solid var(--line); align-items:baseline;
}
.c-label{
  font-size:.69rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--ink-soft); font-weight:600;
}
.contact-list a{ font-size:1.05rem; }

.contact-form{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:clamp(28px,4vw,42px); box-shadow:var(--shadow-md);
}
.form-title{ font-size:1.6rem; margin-bottom:1rem; }
.field{ margin-bottom:18px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field label{
  display:block; font-size:.74rem; letter-spacing:.1em; text-transform:uppercase;
  font-weight:600; color:var(--ink-soft); margin-bottom:8px;
}
.field .opt{ text-transform:none; letter-spacing:0; font-weight:400; opacity:.65; }
.field input,
.field select,
.field textarea{
  width:100%; padding:13px 15px;
  border:1px solid var(--line); border-radius:var(--radius);
  background:var(--cream); color:var(--ink);
  font-family:var(--sans); font-size:.98rem;
  transition:border-color .2s ease, background .2s ease;
}
.field textarea{ resize:vertical; min-height:110px; }
.field input:focus,
.field select:focus,
.field textarea:focus{ outline:none; border-color:var(--gold); background:var(--white); }
.field input.invalid,
.field select.invalid{ border-color:#c0563f; }
.form-note{ font-size:.82rem; color:var(--ink-soft); margin:14px 0 0; text-align:center; }
.form-note.ok{ color:#2f7a52; font-weight:500; }
.form-note.err{ color:#c0563f; font-weight:500; }

/* ==========================================================================
   Closing CTA band
   ========================================================================== */
.cta-band{
  background:
    radial-gradient(700px 300px at 88% 0%, rgba(212,172,110,.20), transparent 60%),
    var(--ink-2);
  padding:clamp(52px,6vw,76px) 0;
}
.cta-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:34px; flex-wrap:wrap;
}
.cta-band h2{ color:#fff; margin-bottom:.25em; }
.cta-band p{ color:#c3cbdb; margin:0; max-width:46ch; }
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background:#101a2e; color:#8794ad; padding:64px 0 0; font-size:.88rem; }
.footer-cols{
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:40px;
  padding-bottom:48px;
}
.footer-brand{ font-family:var(--serif); font-size:1.42rem; color:#fff; margin:0; }
.footer-sub{
  font-size:.66rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold-light); font-weight:600; margin:2px 0 16px;
}
.footer-blurb{ font-size:.86rem; line-height:1.7; margin:0; max-width:38ch; }
.footer-col h3{
  font-family:var(--sans); font-size:.7rem; letter-spacing:.18em; text-transform:uppercase;
  color:#fff; font-weight:600; margin-bottom:16px;
}
.footer-links{ list-style:none; margin:0; padding:0; }
.footer-links li{ margin-bottom:10px; }
.footer-links a{ color:#8794ad; font-size:.87rem; word-break:break-word; }
.footer-links a:hover{ color:var(--gold-light); }

.footer-legal{
  border-top:1px solid rgba(255,255,255,.09);
  padding-top:22px; padding-bottom:34px;
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
}
.footer-legal p{ margin:0; font-size:.78rem; opacity:.75; }

/* ==========================================================================
   Mobile call / WhatsApp bar
   ========================================================================== */
.mobile-bar{
  display:none;
  position:fixed; left:0; right:0; bottom:0; z-index:95;
  background:var(--ink);
  border-top:1px solid rgba(255,255,255,.12);
}
.mobile-bar a{
  flex:1; display:flex; align-items:center; justify-content:center; gap:9px;
  padding:15px 8px; color:#fff; font-size:.92rem; font-weight:600;
}
.mobile-bar a:first-child{ border-right:1px solid rgba(255,255,255,.12); }
.mobile-bar a:last-child{ color:#7fe0a0; }
.mobile-bar svg{ width:18px; height:18px; fill:currentColor; }

/* ==========================================================================
   Reveal animation
   Only ever hides content when JavaScript is running (html.js). If JS fails
   or is switched off, every section stays fully visible.
   ========================================================================== */
.js .reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.js .reveal.visible{ opacity:1; transform:none; }

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  .js .reveal{ opacity:1; transform:none; transition:none; }
  *{ animation-duration:.01ms !important; transition-duration:.01ms !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1060px){
  .nav{ gap:18px; }
  .nav-link{ font-size:.85rem; }
  .footer-cols{ grid-template-columns:1fr 1fr; gap:34px; }
}

@media (max-width:940px){
  .grid-2{ grid-template-columns:1fr; }
  .portrait-frame{ max-width:360px; margin:0 auto 12px; }
  .stats{ grid-template-columns:repeat(2,1fr); }
  .stats li:nth-child(2){ border-right:0; }
  .stats li:nth-child(-n+2){ border-bottom:1px solid var(--line); }
  .cta-inner{ flex-direction:column; align-items:flex-start; }
}

@media (max-width:820px){
  body{ font-size:16px; }
  .nav-toggle{ display:flex; }

  .nav{
    position:fixed; inset:80px 0 auto 0;
    flex-direction:column; align-items:stretch; gap:0;
    background:var(--cream); border-bottom:1px solid var(--line);
    box-shadow:var(--shadow-md);
    padding:8px 24px 26px;
    max-height:calc(100vh - 80px); overflow-y:auto;
    transform:translateY(-12px); opacity:0; visibility:hidden;
    transition:opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .nav.open{ opacity:1; visibility:visible; transform:none; }
  .nav-link{
    width:100%; padding:15px 0; font-size:1rem;
    border-bottom:1px solid var(--line); justify-content:space-between;
  }
  .nav-link::after{ display:none; }
  .nav-item{ position:static; }
  .sub{
    position:static; opacity:1; visibility:visible; transform:none;
    border:0; box-shadow:none; background:transparent;
    padding:0; min-width:0;
    max-height:0; overflow:hidden; transition:max-height .3s ease;
  }
  .sub-toggle[aria-expanded="true"] + .sub{ max-height:320px; }
  .sub a{
    padding:13px 0 13px 18px; border-bottom:1px solid var(--line);
    font-size:.95rem;
  }
  .nav-cta{ margin-top:18px; text-align:center; }

  .mobile-bar{ display:flex; }
  .site-footer{ padding-bottom:56px; }
  .hero-actions .btn{ flex:1 1 100%; }
  .field-row{ grid-template-columns:1fr; }
  .contact-list li{ grid-template-columns:1fr; gap:2px; }
  .footer-cols{ grid-template-columns:1fr; gap:32px; }
}

@media (max-width:460px){
  .stats{ grid-template-columns:1fr; }
  .stats li{ border-right:0; border-bottom:1px solid var(--line); padding:22px 0; }
  .stats li:last-child{ border-bottom:0; }
  .brand-text strong{ font-size:1.1rem; }
  .cta-actions{ width:100%; }
  .cta-actions .btn{ flex:1 1 100%; }
}

@media (max-width:620px){
  .terms > div{ grid-template-columns:1fr; gap:6px; }
}

/* ==========================================================================
   Print — the checklists page is meant to come out on paper and go on a fridge
   ========================================================================== */
@media print{
  .site-header,.mobile-bar,.nav-toggle,.cta-band,.site-footer,
  .no-print,.contact-form,.skip-link,.crumbs{ display:none !important; }

  .js .reveal{ opacity:1 !important; transform:none !important; }

  body{ background:#fff; color:#000; font-size:11pt; line-height:1.45; }
  .wrap,.wrap.narrow{ max-width:100%; padding:0; }
  .section{ padding:0 0 14pt; }
  .section-tint,.section-dark{ background:#fff !important; }
  .section-dark h2,.section-dark h3,.section-dark p,.section-dark li{ color:#000 !important; }

  h1{ font-size:20pt; }
  h2{ font-size:15pt; margin-top:14pt; }
  h3,.sheet-h3{ font-size:12pt; }
  .sheet-sub{ font-size:10pt; }

  .sheet{ break-inside:auto; }
  .sheet-head,.callout,.fact-box,.no-break{ break-inside:avoid; page-break-inside:avoid; }
  h2,h3{ break-after:avoid; page-break-after:avoid; }

  .ticks li{ font-size:10.5pt; margin-bottom:5pt; }
  .callout{ border-left:2pt solid #000; box-shadow:none; background:#fff; padding:8pt 12pt; }

  /* Form fields print as writable lines */
  .field input,.field select,.field textarea{
    border:0; border-bottom:1pt solid #000; border-radius:0;
    background:#fff; padding:2pt 0; min-height:20pt;
  }
  .field textarea{ min-height:34pt; }
  .field label{ font-size:8.5pt; }

  a{ color:#000; text-decoration:none; }
}
.pull-quote figcaption{
  margin-top:18px; font-size:.85rem; color:var(--ink-soft); letter-spacing:.03em;
}

/* ==========================================================================
   Seudah options
   ========================================================================== */
.options{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:18px; margin:26px 0 30px;
}
.option{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:24px 22px; box-shadow:var(--shadow-sm);
}
.option h4{
  font-family:var(--serif); font-size:1.14rem; font-weight:500; color:var(--ink);
  margin:0 0 .4em; line-height:1.2;
}
.option p{ font-size:.92rem; margin:0; color:var(--ink-soft); }

.source-note{
  font-size:.86rem; color:var(--ink-soft); font-style:italic;
  border-left:2px solid var(--line); padding-left:14px; margin-top:-4px;
}

.field-note{
  font-size:.88rem; color:var(--ink-soft);
  background:var(--cream); border-left:2px solid var(--gold);
  padding:14px 16px; margin:4px 0 22px; border-radius:2px;
}

.form-group{
  font-family:var(--sans); font-size:.72rem; letter-spacing:.2em;
  text-transform:uppercase; font-weight:600; color:var(--gold);
  margin:34px 0 16px; padding-bottom:8px; border-bottom:1px solid var(--line);
}
.sheet-form .form-group:first-child{ margin-top:0; }

.ranked{
  margin:20px 0 26px; padding-left:22px;
  font-size:1rem; color:var(--ink-soft);
}
.ranked li{ margin-bottom:7px; padding-left:6px; }
.ranked li::marker{ color:var(--gold); font-weight:600; }
