/* ============================================================
   Sound Sleep 4 Bubbies — brand system
   Palette: night indigo · warm moon gold · cream · soft blush
   ============================================================ */

:root{
  /* --- teal ------------------------------------------------ */
  --teal:       #2E93AC;   /* primary — the whale, buttons, links   */
  --teal-deep:  #14657A;   /* headings, dark panels                 */
  --teal-mid:   #5FB3C6;   /* the ripples, secondary strokes        */
  --aqua:       #A8D8E0;   /* the waterline, soft rules             */
  --aqua-pale:  #DCEBEF;   /* tints, quiet fills                    */

  /* --- warm ------------------------------------------------ */
  --apricot:    #F0B27A;   /* the tail — accent, "book now"         */
  --apricot-dp: #B8763A;   /* apricot as readable text on cream     */

  /* --- neutrals -------------------------------------------- */
  --cream:      #FBF6EE;
  --cream-2:    #F3EDE3;
  --ink:        #14343D;
  --ink-soft:   #5E7A83;
  --line:       #E3DACB;
  --white:      #FFFFFF;

  /* legacy names, mapped so nothing breaks mid-rebuild */
  --night:      var(--teal-deep);
  --night-2:    #1D7A91;
  --gold:       var(--apricot);
  --gold-deep:  var(--apricot-dp);
  --blush:      #E0A79A;
  --sage:       var(--teal-mid);

  --radius:     16px;
  --radius-lg:  26px;
  --shadow:     0 1px 2px rgba(20,52,61,.06), 0 8px 28px rgba(20,52,61,.07);
  --shadow-lg:  0 2px 6px rgba(20,52,61,.08), 0 24px 60px rgba(20,52,61,.13);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-eyebrow: 'Jost', var(--font-body);

  --wrap: 1160px;
}

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

/* browsers give <figure> a default margin:1em 40px — it breaks any grid it sits in */
figure{ margin:0; }

html{ scroll-behavior:smooth; }

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

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  line-height:1.1;
  color:var(--teal-deep);
  margin:0 0 .45em;
  letter-spacing:0;
}
h1{ font-size:clamp(2.9rem, 6.2vw, 4.7rem); }
h2{ font-size:clamp(2.2rem, 4.3vw, 3.2rem); }
h3{ font-family:var(--font-body); font-weight:600; font-size:1.12rem; letter-spacing:-.01em; }
p{ margin:0 0 1.1em; }
a{ color:var(--night-2); }

.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:24px; }
.narrow{ max-width:760px; }

.eyebrow{
  font-family:var(--font-eyebrow);
  font-size:.72rem; font-weight:500; letter-spacing:.2em;
  text-transform:uppercase; color:var(--apricot-dp);
  margin:0 0 1em;
}
.lede{ font-size:1.16rem; color:var(--ink-soft); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  font-family:var(--font-body); font-size:.98rem; font-weight:600;
  padding:.85em 1.6em; border-radius:999px; border:1.5px solid transparent;
  text-decoration:none; cursor:pointer; transition:.18s ease;
  line-height:1.2; white-space:nowrap;
}
.btn-primary{ background:var(--teal-deep); color:var(--cream); }
.btn-primary:hover{ background:var(--teal); transform:translateY(-1px); box-shadow:var(--shadow); }
.btn-gold{ background:var(--apricot); color:#5A3A17; }
.btn-gold:hover{ background:#E79F5F; transform:translateY(-1px); box-shadow:var(--shadow); }
.btn-ghost{ background:transparent; color:var(--night); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--night); background:var(--white); }
.btn-block{ width:100%; }
.btn-sm{ padding:.6em 1.15em; font-size:.88rem; }

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(251,247,241,.9);
  backdrop-filter:saturate(160%) blur(12px);
  border-bottom:1px solid var(--line);
}
.site-header .bar{
  display:flex; align-items:center; gap:24px;
  min-height:74px;
}
.brand{ display:flex; align-items:center; gap:11px; text-decoration:none; margin-right:auto; }
.brand img{ width:38px; height:38px; display:block; }
.brand .name{
  font-family:var(--font-display); font-style:italic; font-weight:600;
  font-size:1.28rem; color:var(--teal-deep); line-height:1.05;
  letter-spacing:0; white-space:nowrap;
}
.brand .name small{
  display:block; font-family:var(--font-eyebrow); font-style:normal;
  font-weight:300; font-size:.58rem; letter-spacing:.16em;
  text-transform:uppercase; color:var(--teal); margin-top:5px;
  white-space:nowrap;
}
.brand img{ width:46px; height:auto; }
.nav{ display:flex; align-items:center; gap:26px; }
.nav a{
  text-decoration:none; color:var(--ink); font-size:.94rem; font-weight:500;
  padding:6px 0; border-bottom:2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"]{ color:var(--teal-deep); border-bottom-color:var(--apricot); }
.nav-toggle{ display:none; background:none; border:0; padding:8px; cursor:pointer; }
.nav-toggle span{ display:block; width:22px; height:2px; background:var(--night); margin:4px 0; border-radius:2px; }

@media (max-width:880px){
  .nav-toggle{ display:block; }
  .nav{
    position:absolute; inset:74px 0 auto; flex-direction:column; align-items:stretch;
    gap:0; background:var(--cream); border-bottom:1px solid var(--line);
    padding:8px 24px 20px; display:none;
  }
  .nav.open{ display:flex; }
  .nav a{ padding:13px 0; border-bottom:1px solid var(--line); }
  .nav .btn{ margin-top:14px; }
}

/* ---------- sections ---------- */
section{ padding:clamp(56px, 8vw, 104px) 0; }
.section-head{ max-width:660px; margin-bottom:48px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.bg-cream2{ background:var(--cream-2); }
.bg-night{ background:var(--teal-deep); color:#C7DEE5; }
.bg-night h1,.bg-night h2,.bg-night h3{ color:var(--cream); }
.bg-night .eyebrow{ color:var(--gold); }
.bg-night .lede{ color:#A9CFD9; }

/* ---------- hero ---------- */
.hero{
  position:relative; overflow:hidden;
  background:linear-gradient(170deg, var(--cream) 0%, var(--cream-2) 100%);
  padding-block:clamp(60px,9vw,116px);
}
.hero .grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:64px; align-items:center; }
.hero-art{
  aspect-ratio:1; border-radius:50%; position:relative;
  background:radial-gradient(circle at 32% 26%, #2E93AC, var(--teal-deep) 72%);
  display:grid; place-items:center; box-shadow:var(--shadow-lg);
}
.hero-art img{ width:58%; }
.hero-art::after{
  content:""; position:absolute; inset:-7%; border-radius:50%;
  border:1px solid var(--line);
}
.hero .cta-row{ display:flex; flex-wrap:wrap; gap:14px; margin-top:8px; }
.trust-row{ display:flex; flex-wrap:wrap; gap:10px 26px; margin-top:34px; font-size:.9rem; color:var(--ink-soft); }
.trust-row span{ display:flex; align-items:center; gap:7px; }
.trust-row svg{ flex:none; color:var(--teal); }
@media (max-width:880px){
  .hero .grid{ grid-template-columns:1fr; gap:44px; }
  .hero-art{ max-width:300px; margin-inline:auto; order:-1; }
}

/* ---------- portrait ---------- */
.portrait{
  width:100%; max-width:280px; margin-inline:auto;
  aspect-ratio:1; border-radius:50%; position:relative;
  box-shadow:var(--shadow-lg);
}
.portrait img{
  width:100%; height:100%; border-radius:50%;
  object-fit:cover; display:block;
}
.portrait::after{
  content:""; position:absolute; inset:-7%; border-radius:50%;
  border:1px solid var(--line);
}
@media (max-width:880px){
  .portrait{ max-width:220px; }
}

/* The portrait standing in for the logo disc in a hero. */
.hero-portrait{ max-width:360px; }
@media (max-width:880px){
  .hero-portrait{ max-width:250px; order:-1; }
}

/* A photograph with soft corners rather than a circle. */
.snap{ width:100%; max-width:260px; margin-inline:auto; }
.snap img{
  width:100%; height:auto; display:block;
  border-radius:16px; box-shadow:var(--shadow-lg);
}
@media (max-width:640px){ .snap{ max-width:220px; } }

/* ---------- cards ---------- */
.cards{ display:grid; gap:24px; }
.cols-2{ grid-template-columns:repeat(2,1fr); }
.cols-3{ grid-template-columns:repeat(3,1fr); }
.cols-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:980px){ .cols-3,.cols-4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .cols-2,.cols-3,.cols-4{ grid-template-columns:1fr; } }

.card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:30px; box-shadow:var(--shadow);
}

/* ---------- pricing ---------- */
.tier{
  display:flex; flex-direction:column; position:relative;
  background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:32px 28px 28px;
  box-shadow:var(--shadow); transition:.2s ease;
}
.tier:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.tier.featured{ border-color:var(--apricot); border-width:2px; }
.tier .flag{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--apricot); color:#5A3A17; font-size:.7rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; padding:6px 14px; border-radius:999px;
  white-space:nowrap; max-width:calc(100% - 16px); overflow:hidden; text-overflow:ellipsis;
}
.tier .tier-name{ font-family:var(--font-display); font-size:1.5rem; color:var(--night); margin:0; }
.tier .tier-len{ font-size:.83rem; font-weight:600; letter-spacing:.11em; text-transform:uppercase; color:var(--gold-deep); margin:6px 0 18px; }
.tier .price{ font-family:var(--font-display); font-size:2.6rem; color:var(--night); line-height:1; }
.tier .price small{ font-family:var(--font-body); font-size:.88rem; font-weight:500; color:var(--ink-soft); letter-spacing:0; }
.tier ul{ list-style:none; padding:0; margin:24px 0 28px; display:grid; gap:11px; }
.tier li{ position:relative; padding-left:27px; font-size:.94rem; line-height:1.5; color:var(--ink); }
.tier li::before{
  content:""; position:absolute; left:0; top:.45em; width:15px; height:9px;
  border-left:2px solid var(--teal); border-bottom:2px solid var(--teal);
  transform:rotate(-45deg);
}
.tier .pay{ margin-top:auto; display:grid; gap:9px; }
.pay-note{ font-size:.78rem; color:var(--ink-soft); text-align:center; margin:2px 0 0; }

/* ---------- lead magnet ---------- */
.magnet{
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;
  background:var(--teal-deep); border-radius:var(--radius-lg); padding:clamp(32px,5vw,56px);
  color:#C7DEE5;
}
.magnet h2{ color:var(--cream); }
@media (max-width:820px){ .magnet{ grid-template-columns:1fr; gap:32px; } }
.form-row{ display:flex; gap:10px; flex-wrap:wrap; }
.form-row input{ flex:1 1 220px; }
input[type=email],input[type=text],input[type=tel],select,textarea{
  width:100%; font-family:var(--font-body); font-size:.98rem; color:var(--ink);
  padding:.82em 1em; border:1.5px solid var(--line); border-radius:12px;
  background:var(--white);
}
input:focus,select:focus,textarea:focus{ outline:2px solid var(--teal); outline-offset:1px; border-color:transparent; }
label{ display:block; font-size:.88rem; font-weight:600; color:var(--night); margin:0 0 6px; }
.field{ margin-bottom:18px; }
.form-hint{ font-size:.8rem; color:var(--ink-soft); margin:8px 0 0; }
.bg-night .form-hint{ color:#9FC1CB; }

/* ---------- reviews ---------- */
.quote{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:30px; box-shadow:var(--shadow); display:flex; flex-direction:column;
}
.quote .stars{ color:var(--apricot); letter-spacing:2px; margin-bottom:14px; font-size:1rem; }
.quote blockquote{ margin:0 0 20px; font-size:1.02rem; line-height:1.62; }
.quote figcaption{ margin-top:auto; font-size:.86rem; color:var(--ink-soft); }
.quote figcaption b{ display:block; color:var(--night); font-size:.95rem; }

/* ---------- steps ---------- */
.steps{ counter-reset:s; display:grid; gap:22px; }
.step{ position:relative; padding-left:64px; }
.step::before{
  counter-increment:s; content:counter(s);
  position:absolute; left:0; top:-2px; width:42px; height:42px;
  display:flex; align-items:center; justify-content:center;
  line-height:1; text-align:center; font-variant-numeric:lining-nums;
  border-radius:50%;
  background:var(--cream-2); border:1px solid var(--line);
  font-family:var(--font-body); font-weight:600; font-size:.95rem;
  color:var(--teal-deep);
}
.bg-night .step::before{ background:#1D7A91; border-color:#2E93AC; color:var(--cream); }
.step h3{ margin-bottom:.3em; }
.step p{ margin:0; color:var(--ink-soft); font-size:.96rem; }
.bg-night .step p{ color:#A9CFD9; }

/* ---------- product grid ---------- */
.product{ display:flex; flex-direction:column; background:var(--white); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); }
.product .thumb{ aspect-ratio:4/3; background:linear-gradient(150deg,var(--cream-2),var(--line)); display:grid; place-items:center; }
.product .thumb img{ width:38%; opacity:.75; }
.product .body{ padding:24px; display:flex; flex-direction:column; flex:1; }
.product .price{ font-family:var(--font-display); font-size:1.5rem; color:var(--night); margin:0 0 14px; }
.product .btn{ margin-top:auto; }

/* ---------- faq ---------- */
details{ border-bottom:1px solid var(--line); padding:20px 0; }
details summary{
  cursor:pointer; font-family:var(--font-display); font-size:1.1rem; color:var(--night);
  list-style:none; display:flex; justify-content:space-between; gap:20px; align-items:center;
}
details summary::-webkit-details-marker{ display:none; }
details summary::after{ content:"+"; font-size:1.4rem; color:var(--apricot-dp); flex:none; }
details[open] summary::after{ content:"−"; }
details p{ margin:14px 0 0; color:var(--ink-soft); font-size:.97rem; }

/* ---------- footer ---------- */
.site-footer{ background:var(--teal-deep); color:#9FC1CB; padding:64px 0 34px; font-size:.92rem; }
.site-footer .grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:40px; }
@media (max-width:820px){ .site-footer .grid{ grid-template-columns:1fr 1fr; gap:32px; } }
.site-footer h4{ color:var(--cream); font-family:var(--font-body); font-size:.78rem; letter-spacing:.15em; text-transform:uppercase; margin:0 0 16px; }
.site-footer a{ color:#BBD8E0; text-decoration:none; display:block; padding:5px 0; }
.site-footer a:hover{ color:var(--apricot); }
.site-footer .brand .name{ color:var(--cream); }
.footer-base{
  border-top:1px solid #24798F; margin-top:44px; padding-top:22px;
  display:flex; flex-wrap:wrap; gap:12px 28px; justify-content:space-between; font-size:.84rem;
}

/* ---------- misc ---------- */
.divider{ height:1px; background:var(--line); border:0; margin:0; }
.badge{
  display:inline-flex; align-items:center; gap:6px; font-family:var(--font-eyebrow);
  font-size:.74rem; font-weight:500;
  letter-spacing:.14em; text-transform:uppercase; color:var(--apricot-dp);
  background:var(--cream-2); border:1px solid var(--line);
  padding:5px 13px; border-radius:999px;
}
.visually-hidden{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
.center{ text-align:center; }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}

/* ---------- credential highlights ---------- */
.highlights{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:40px; margin-top:56px;
}
@media (max-width:820px){ .highlights{ grid-template-columns:1fr; gap:44px; } }
.highlight{ text-align:center; }
.highlight .ic{
  width:66px; height:66px; border-radius:50%;
  display:grid; place-items:center; margin:0 auto 24px;
  background:var(--white); border:1px solid var(--line);
  color:var(--teal); box-shadow:var(--shadow);
}
.highlight h3{ font-size:1.14rem; margin:0; max-width:22ch; margin-inline:auto; }
.highlight p{
  margin:0 auto; color:var(--ink-soft);
  font-size:.95rem; line-height:1.6; max-width:34ch;
}

/* ---------- pull quote ---------- */
.pullquote{
  margin:52px 0; padding:clamp(28px,4vw,40px) clamp(26px,4vw,44px);
  background:var(--white); border-left:4px solid var(--apricot);
  border-radius:0 var(--radius) var(--radius) 0; box-shadow:var(--shadow);
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(1.3rem,2.6vw,1.8rem); line-height:1.35;
  color:var(--night);
}
.pullquote p{ margin:0; }

/* ---------- belief / icon list box ---------- */
.beliefbox{
  background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:clamp(28px,4vw,46px);
  box-shadow:var(--shadow);
}
.beliefbox ul{ list-style:none; padding:0; margin:0; display:grid; gap:22px; }
.beliefbox li{ display:flex; gap:16px; align-items:flex-start; font-size:1.03rem; line-height:1.55; }
.beliefbox li svg{ flex:none; margin-top:4px; color:var(--teal); }

.notbox{
  background:var(--cream-2); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:clamp(28px,4vw,46px);
}
.notbox ul{ list-style:none; padding:0; margin:0; display:grid; gap:18px; }
.notbox li{ display:flex; gap:16px; align-items:flex-start; font-size:1.02rem; line-height:1.55; color:var(--ink); }
.notbox li svg{ flex:none; margin-top:4px; color:#C98A7A; }

/* ---------- parent recognition list ---------- */
.recognition{
  display:grid; grid-template-columns:1fr 1fr;
  gap:26px 44px; margin:48px 0 0; list-style:none; padding:0;
}
@media (max-width:760px){ .recognition{ grid-template-columns:1fr; gap:20px; } }

/* the same list, grouped — a parent finds their own situation faster
   in four named categories than in eight loose lines */
.buckets{
  display:grid; grid-template-columns:1fr 1fr;
  gap:32px 46px; margin:46px 0 0; list-style:none; padding:0;
}
.buckets li{ border-top:2px solid var(--aqua); padding-top:17px; }
.buckets .eyebrow{ margin:0 0 9px; }
.buckets p:last-child{ font-size:1.03rem; line-height:1.55; }
@media (max-width:760px){ .buckets{ grid-template-columns:1fr; gap:26px; } }
.recognition li{
  display:flex; gap:15px; align-items:flex-start;
  font-size:1.03rem; line-height:1.55;
}
.recognition li svg{ flex:none; margin-top:5px; color:var(--teal); }

/* labels on dark panels — navy on navy is invisible */
.magnet label, .bg-night label{ color:var(--cream); }

/* --- dark-panel legibility ------------------------------- */
.magnet .form-hint{ color:#9FC1CB; }
.magnet .eyebrow{ color:var(--apricot); }
.bg-night .step::before{ font-weight:600; }

/* ---------- what I look at ---------- */
.factors{
  display:grid; grid-template-columns:1fr 1fr; gap:30px 40px;
  list-style:none; padding:0; margin:40px 0 0;
}
@media (max-width:760px){ .factors{ grid-template-columns:1fr; gap:26px; } }
.factors li{ display:flex; gap:16px; align-items:flex-start; }
.factors .ic{
  flex:none; width:42px; height:42px; border-radius:12px;
  display:grid; place-items:center; background:var(--aqua-pale); color:var(--teal);
}
.factors h3{ margin:0 0 5px; font-size:1.02rem; }
.factors p{ margin:0; font-size:.94rem; line-height:1.55; color:var(--ink-soft); }

/* ---------- credential badge strip ---------- */
.badgestrip{ position:relative; }
.badgestrip .rail{
  display:flex; gap:16px; justify-content:center; overflow-x:auto; scroll-behavior:auto;
  padding:4px 0 14px; scrollbar-width:none; -ms-overflow-style:none;
  scroll-snap-type:x proximity;
}
.badgestrip .rail::-webkit-scrollbar{ display:none; }
.badgestrip:not(.scrolls)::before,
.badgestrip:not(.scrolls)::after{ display:none; }
.badgestrip::before,
.badgestrip::after{
  content:""; position:absolute; top:0; bottom:14px; width:56px; z-index:2; pointer-events:none;
}
.badgestrip::before{ left:0;  background:linear-gradient(90deg, var(--cream), transparent); }
.badgestrip::after { right:0; background:linear-gradient(270deg, var(--cream), transparent); }
.bg-cream2 .badgestrip::before{ background:linear-gradient(90deg, var(--cream-2), transparent); }
.bg-cream2 .badgestrip::after { background:linear-gradient(270deg, var(--cream-2), transparent); }

.badge-card{
  flex:0 0 168px; scroll-snap-align:center;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:18px 14px; box-shadow:var(--shadow); text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.badge-card img{
  height:auto; width:auto; max-height:64px; max-width:100%;
  object-fit:contain; display:block;
}
.badge-card{ min-height:150px; justify-content:center; }
.badge-card .seal{
  width:44px; height:44px; border-radius:50%; display:grid; place-items:center;
  background:var(--aqua-pale); color:var(--teal);
}
.badge-card b{
  font-family:var(--font-display); font-weight:600; font-size:1.06rem;
  color:var(--teal-deep); line-height:1.2;
}
.badge-card span{ font-size:.78rem; color:var(--ink-soft); line-height:1.4; }
@media (max-width:520px){ .badge-card{ flex-basis:158px; } }

/* ---------- amazon picks ---------- */
.disclosure{
  background:var(--aqua-pale); border:1px solid #C7E1E8; border-radius:var(--radius);
  padding:16px 20px; font-size:.86rem; line-height:1.55; color:var(--ink-soft);
  margin:0 0 32px;
}
.disclosure b{ color:var(--teal-deep); }
.pick{
  display:flex; flex-direction:column; background:var(--white);
  border:1px solid var(--line); border-radius:var(--radius);
  padding:24px; box-shadow:var(--shadow);
}
.pick .cat{
  font-family:var(--font-eyebrow); font-size:.7rem; font-weight:500;
  letter-spacing:.16em; text-transform:uppercase; color:var(--apricot-dp);
  margin:0 0 8px;
}
.pick h3{ margin:0 0 8px; font-size:1.05rem; }
.pick p{ margin:0 0 20px; font-size:.94rem; color:var(--ink-soft); line-height:1.55; }
.pick .btn{ margin-top:auto; }

/* ---------- instagram ---------- */
/* Always one row, side by side, however many reels there are. They share the
   width evenly and the row scrolls sideways rather than wrapping once they
   would get too narrow. */
.reels{
  display:flex; gap:20px;
  overflow-x:auto; scroll-snap-type:x proximity;
  padding-bottom:8px; margin-inline:-4px; padding-inline:4px;
  scrollbar-width:none;
}
.reels::-webkit-scrollbar{ display:none; }
.reel{ flex:1 1 0; min-width:210px; scroll-snap-align:center; }
/* Instagram's embed is taller than the video: a header, then the clip, then a
   like/comment bar and whatever white space is left over. The frame crops to
   the header and the clip, so three reels line up as three matching cards.
   The header is a fixed 53px at any width while the clip scales with it,
   hence padding-top rather than an aspect ratio. */
.reel .frame{
  position:relative; height:0; padding-top:calc(52px + 122%);
  overflow:hidden; border-radius:18px;
  background:#000; box-shadow:var(--shadow-lg);
}
.reel .frame iframe{
  position:absolute; inset:0 0 auto 0;
  width:100%; height:1000px; border:0; display:block; background:#fff;
}
.reel figcaption{ margin-top:13px; font-size:.93rem; color:var(--ink-soft); }
@media (max-width:640px){
  .reels{ gap:14px; scroll-snap-type:x mandatory; }
  .reel{ flex:0 0 72%; }
}
.social{
  display:inline-flex; align-items:center; gap:9px;
  font-size:.92rem;
}
.site-footer .social{ display:flex; }
.social svg{ flex:none; }

/* ---------- Sound Sleepers monogram ----------
   The community's own mark, so the page reads as a sibling of the main
   brand rather than a repeat of it. The S is live text rather than a
   path, so it picks up Cormorant Garamond from the page. */
.monogram{ aspect-ratio:1; position:relative; display:grid; place-items:center; }
.monogram svg{ width:100%; height:auto; filter:drop-shadow(0 24px 44px rgba(20,52,61,.20)); }
.monogram::after{
  content:""; position:absolute; inset:6%; border-radius:50%;
  border:1px solid var(--line);
}
@media (max-width:880px){
  .monogram{ max-width:230px; margin-inline:auto; order:-1; }
}

/* prices are shown before tax, and say so */
.tier-tax{
  margin:-2px 0 0; font-size:.76rem; letter-spacing:.1em;
  text-transform:uppercase; color:var(--ink-soft);
}

/* ---------- free guide downloads ---------- */
.downloads{ display:grid; gap:18px; }
.download{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px 28px; display:flex; gap:26px; align-items:center; justify-content:space-between;
  box-shadow:var(--shadow);
}
.download h3{ margin:0 0 7px; font-size:1.2rem; color:var(--teal-deep); }
.download p{ color:var(--ink-soft); font-size:.95rem; max-width:46ch; }
.download .btn{ flex:none; }
@media (max-width:640px){
  .download{ flex-direction:column; align-items:flex-start; gap:16px; }
  .download .btn{ width:100%; text-align:center; }
}
