/* ===========================================================
   Steph Jensen Photography — dark, moody, lush design system
   Deep forest green + near-black, warm-white type, gold CTA
   =========================================================== */

:root {
  --forest:      #2C3E2D;   /* deep forest green (dark sections) */
  --forest-deep: #223124;
  --near-black:  #1a1a1a;   /* near-black (dark sections) */
  --charcoal:    #2A2A2A;   /* button text */
  --cream:       #F5F0E8;   /* light content blocks */
  --cream-2:     #ece5d8;   /* slightly deeper cream, for tonal-shift bands */
  --surface-white: #FFFFFF; /* lifted white section background */
  --warm-white:  #F9F6F2;   /* text on dark */
  --gold:        #E4C378;   /* buttery gold CTA */
  --gold-soft:   #EFD59A;   /* lighter hover */
  --salmon:      #B5605A;   /* CTA button fill */
  --salmon-soft: #C97D77;   /* lighter hover */

  --ink:      #2b332a;      /* body text on cream */
  --ink-soft: #5b6357;
  --line-dark:  rgba(249, 246, 242, .18);   /* hairlines on dark */
  --line-light: rgba(43, 51, 42, .16);       /* hairlines on cream */
  --shadow:   0 30px 90px rgba(15, 20, 15, .35);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Barlow", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- Typography ---- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; line-height: 1.06; letter-spacing: .005em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p  { margin: 0 0 1.1em; }

/* Cormorant Garamond headline scope — Social Media Services page only */
body.cg-headings h1,
body.cg-headings h2,
body.cg-headings h3,
body.cg-headings .price-card .num { font-family: "Cormorant Garamond", var(--serif), serif; }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 1.1rem;
}
.eyebrow.on-dark { color: var(--warm-white); opacity: 1; }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 56ch; }
.serif-quote { font-family: var(--serif); font-style: italic; }

/* ---- Layout helpers ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 10vw, 9rem); }
.center { text-align: center; }
.measure { max-width: 60ch; margin-inline: auto; }

/* dark section variant */
.section.dark, .band-dark { background: var(--forest); color: var(--warm-white); }
.section.dark .lede, .band-dark .lede { color: rgba(249,246,242,.85); }
.section.night { background: var(--near-black); color: var(--warm-white); }

/* ---- Buttons (gold pill, consistent sitewide) ---- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 1.05em 2.4em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .2s ease;
}
/* primary CTA = salmon fill, warm-white text */
.btn, .btn.solid, .btn.gold {
  background: var(--salmon);
  color: var(--warm-white);
  border-color: var(--salmon);
}
.btn:hover, .btn.solid:hover, .btn.gold:hover { background: var(--salmon-soft); border-color: var(--salmon-soft); transform: translateY(-1px); }
/* outline variant on dark backgrounds */
.btn.light {
  background: transparent; color: var(--warm-white); border-color: rgba(249,246,242,.6);
}
.btn.light:hover { background: var(--warm-white); color: var(--charcoal); border-color: var(--warm-white); transform: translateY(-1px); }

/* ---- Stacked CTA buttons + "View the Galleries" dropdown ---- */
.cta-stack { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; margin-top: 1.2rem; }
.cta-stack .btn { min-width: 260px; text-align: center; }
.gallery-dd { position: relative; display: inline-block; }
.gallery-dd-toggle { font-family: inherit; line-height: inherit; }
.gallery-dd-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 200px; background: var(--forest); border-radius: 14px; padding: .5rem;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 20px 50px rgba(15, 20, 15, .28);
  z-index: 20;
}
.gallery-dd-menu a {
  padding: .65rem .9rem; border-radius: 9px; color: var(--warm-white);
  font-family: var(--sans); font-size: .85rem; font-weight: 400; letter-spacing: .04em;
  text-decoration: none; text-transform: none; text-align: center;
}
.gallery-dd-menu a:hover, .gallery-dd-menu a:focus-visible { background: rgba(249, 246, 242, .1); }
.gallery-dd:hover .gallery-dd-menu,
.gallery-dd.open .gallery-dd-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}

/* small text-link */
.tlink {
  font-family: var(--sans);
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  position: relative; padding-bottom: 4px;
}
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.tlink:hover::after { transform: scaleX(1); }

/* ===========================================================
   Header / nav
   =========================================================== */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 22px var(--gutter);
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
.site-header.transparent { color: var(--warm-white); background: transparent; }
.site-header.solid {
  background: var(--forest);
  color: var(--warm-white);
  box-shadow: 0 1px 0 rgba(0,0,0,.15);
  padding-block: 16px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
}
.brand small { display: block; font-family: var(--sans); font-size: .5rem; font-weight: 400; letter-spacing: .42em; margin-top: 5px; opacity: .85; }

.nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 28px); }
.nav a {
  font-family: var(--sans);
  font-size: .74rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--warm-white);
  position: relative; padding: 6px 0;
}
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.nav a:not(.nav-cta):hover::after,
.nav a.active::after { transform: scaleX(1); }

/* BOOK NOW = salmon pill */
.nav-cta {
  background: var(--salmon); color: var(--warm-white) !important;
  border-radius: 999px; padding: .6em 1.3em !important;
  transition: background .3s ease;
}
.nav-cta:hover { background: var(--salmon-soft); }

/* mobile nav */
.nav-toggle { display: none; background: none; border: 0; color: inherit; cursor: pointer; padding: 8px; z-index: 60; }
.nav-toggle span { display: block; width: 26px; height: 1.5px; background: currentColor; margin: 6px 0; transition: .3s; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 22px;
    background: var(--forest); color: var(--warm-white);
    transform: translateX(100%); transition: transform .45s cubic-bezier(.7,0,.2,1);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1rem; letter-spacing: .26em; }
  .nav-cta { padding: .7em 1.6em !important; }
  body.menu-open { overflow: hidden; }
}

/* ===========================================================
   Hero — centered, moody
   =========================================================== */
.hero { position: relative; min-height: 100svh; display: grid; place-items: start center; overflow: hidden; background: var(--near-black); text-align: center; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
/* darkens only the top where the text sits, clearing completely before the faces */
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,12,5,0.78) 0%, rgba(5,12,5,0.60) 28%, rgba(5,12,5,0.15) 48%, transparent 62%);
}
/* anchored to the top of the frame, not centered */
.hero-content {
  position: absolute; top: 12%; left: 50%; transform: translateX(-50%);
  color: var(--warm-white); padding: 0 var(--gutter); max-width: min(1200px, 94vw);
}

.hero-eyebrow {
  font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: .32em;
  text-transform: uppercase; color: rgba(249, 246, 242, .94); margin: 0 0 1.1rem;
}
.hero-title {
  font-family: "Cormorant Garamond", var(--serif), serif; font-weight: 300; text-transform: uppercase;
  font-size: clamp(32px, 4.5vw, 54px); line-height: 1.08; letter-spacing: .01em;
  color: var(--warm-white); margin: 0 0 1.2rem;
  filter: drop-shadow(0 3px 30px rgba(10,14,10,.5));
}
.hero-subhead {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: rgba(249, 246, 242, .96); max-width: 46ch; margin: 0 auto 1.6rem;
}
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.hero-secondary { font-family: var(--sans); font-size: .84rem; letter-spacing: .08em; color: rgba(249,246,242,.85); }
.hero-secondary a { text-decoration: underline; text-underline-offset: 4px; }
.hero-secondary a:hover { color: var(--gold-soft); }

.scroll-cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); color: var(--warm-white); opacity: .95; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; }

/* interior transparent header: subtle scrim so brand/nav stay legible over photos */
.site-header.scrim::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(16,20,14,.55) 0%, rgba(16,20,14,0) 100%);
}

/* ===========================================================
   Split hero — used when the hero image is portrait orientation
   =========================================================== */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100svh; }
.hero-split-media { position: relative; overflow: hidden; background: var(--forest-deep); }
.hero-split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-split-text {
  background: var(--forest); color: var(--warm-white);
  display: flex; flex-direction: column; justify-content: center; gap: 1.1rem;
  padding: clamp(2.5rem, 6vw, 6rem);
}
.hero-split-text .eyebrow { color: var(--gold-soft); margin: 0; }
.hero-split-text h1 { color: var(--warm-white); font-size: clamp(2.1rem, 4vw, 3.6rem); font-weight: 400; line-height: 1.12; }
/* opt-in: keeps this specific hero headline in Playfair Display even on a
   cg-headings page, to match the treatment on families/portraits/maternity */
.hero-split-text h1.serif { font-family: var(--serif); }
.hero-split-text .split-sub { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 1.9vw, 1.7rem); line-height: 1.4; color: rgba(249,246,242,.9); margin: 0; }
.hero-split-text .btn { align-self: flex-start; margin-top: 1.2rem; }
.hero-split-text h2 { color: var(--warm-white); font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 400; line-height: 1.12; }
.hero-split-text .checklist { max-width: none; }
.hero-split-text .checklist .check { color: var(--gold-soft); }
.hero-split-text .checklist p { color: rgba(249,246,242,.85); }

/* light/cream variant, for alternating rhythm down the page */
.hero-split-text.on-cream { background: var(--cream); color: var(--ink); }
.hero-split-text.on-cream .eyebrow { color: var(--forest); }
.hero-split-text.on-cream h1, .hero-split-text.on-cream h2 { color: var(--ink); }
.hero-split-text.on-cream .split-sub { color: var(--ink-soft); }
.hero-split-text.on-cream .checklist .check { color: var(--salmon); }
.hero-split-text.on-cream .checklist p { color: var(--ink-soft); }
.hero-split-text.on-cream .btn.gold { background: var(--salmon); border-color: var(--salmon); color: var(--warm-white); }
.hero-split-text.on-cream .btn.gold:hover { background: var(--salmon-soft); border-color: var(--salmon-soft); }

/* lifted white variant — brighter than the cream page background */
.hero-split-text.on-white { background: var(--surface-white); color: var(--ink); }
.hero-split-text.on-white .eyebrow { color: var(--forest); }
.hero-split-text.on-white h1, .hero-split-text.on-white h2 { color: var(--ink); }
.hero-split-text.on-white .split-sub { color: var(--ink-soft); }
.hero-split-text .accent-rule { display: block; width: 52px; height: 3px; border-radius: 2px; background: var(--salmon); margin-bottom: 1.2rem; }
@media (max-width: 820px){
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-media { min-height: 62svh; }
  .hero-split-text { padding-block: clamp(3rem, 11vw, 5rem); }
}

/* ===========================================================
   Wider gallery variant + fade-in-on-scroll
   =========================================================== */
.gallery-wide { padding-inline: clamp(14px, 2.4vw, 34px); }
.gallery-wide .gallery { columns: 3; column-gap: clamp(14px, 1.6vw, 22px); }
@media (max-width: 1000px){ .gallery-wide .gallery { columns: 2; } }
@media (max-width: 560px){ .gallery-wide .gallery { columns: 1; } }

/* ===========================================================
   Testimonials — sans-serif, easy to read, compact thumbnail
   =========================================================== */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 56px); margin-top: 2.6rem; align-items: start; }
@media (max-width: 780px){ .testimonials { grid-template-columns: 1fr; } }
.tcard { display: flex; align-items: flex-start; gap: 20px; }
.tcard img { width: 96px; height: 96px; flex: none; border-radius: 50%; object-fit: cover; }
.tcard-body { min-width: 0; }
.tcard blockquote { font-family: var(--sans); font-weight: 300; font-style: normal; font-size: 1.02rem; line-height: 1.65; margin: 0 0 .9rem; color: var(--ink); }
.tcard figcaption { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--forest); }
/* single testimonial: center it and cap width for readability */
.testimonials.solo { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
/* no-photo variant: center the quote itself, generous top/bottom room */
.tcard--center { flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding-block: clamp(1.5rem, 4vw, 2.5rem); }
.tcard--center .tcard-body { text-align: center; }
.tcard--center blockquote { font-size: 1.1rem; }
.tcard-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: none; }
.q-line { display: block; }
.q-line + .q-line { margin-top: .5em; }

/* ===========================================================
   Statement / split sections
   =========================================================== */
.statement { text-align: center; padding-top: 40px; padding-bottom: 40px; }
.statement .big-quote { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 3.6vw, 3rem); line-height: 1.2; max-width: 22ch; margin: 0 auto; }
.statement .big-quote em { color: var(--gold); font-style: italic; }

.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 5vw, 64px); margin-top: 3.5rem; text-align: left; }
.cols-3 h4 { font-family: var(--sans); font-weight: 500; font-size: .74rem; letter-spacing: .28em; text-transform: uppercase; color: var(--forest); margin: 0 0 .8rem; }
.cols-3 p { color: var(--ink-soft); margin: 0; }
@media (max-width: 760px){ .cols-3 { grid-template-columns: 1fr; gap: 32px; } }

.cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(32px, 6vw, 80px); margin-top: 2.4rem; text-align: left; }
.cols-2 h3 { margin-bottom: .8rem; }
.cols-2 p { color: var(--ink-soft); margin: 0 0 .9rem; }
.cols-2 p:last-child { margin-bottom: 0; }
@media (max-width: 760px){ .cols-2 { grid-template-columns: 1fr; gap: 40px; } }

.split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(32px, 6vw, 90px); }
.split.flip { direction: rtl; } .split.flip > * { direction: ltr; }
.split img { width: 100%; height: 100%; max-height: 78vh; object-fit: cover; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; } .split img { max-height: 60vh; } }

/* Photo + text callout, equal columns, image cropped to the text block's
   own height (not full-bleed tall) — used for mid-length testimonials. */
.testimonial-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: clamp(28px, 5vw, 64px); }
.testimonial-split.flip { direction: rtl; } .testimonial-split.flip > * { direction: ltr; }
.testimonial-split img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: 4px; display: block; }
.testimonial-split .testimonial-text { display: flex; flex-direction: column; justify-content: center; }
.testimonial-split blockquote { font-family: var(--serif); font-style: italic; color: var(--forest); font-size: clamp(1.1rem, 1.9vw, 1.4rem); line-height: 1.5; margin: 0; }
.testimonial-split .attribution { margin-top: 1.2rem; font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--forest); }
@media (max-width: 760px) { .testimonial-split { grid-template-columns: 1fr; } .testimonial-split img { min-height: 260px; } }

#experience { padding-bottom: 20px; }
#experience .split { align-items: flex-start; gap: 12px 32px; }
#pricing { padding-top: 20px; }

/* ===========================================================
   Gallery preview tiles (home)
   =========================================================== */
.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 2vw, 26px); }
.tile { position: relative; aspect-ratio: 4/5; overflow: hidden; display: block; background: var(--forest-deep); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .6s; filter: brightness(.8); }
.tile:hover img { transform: scale(1.05); filter: brightness(.66); }
.tile-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--warm-white); text-align: center; gap: 6px; }
.tile-label .t-cat { font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.tile-label .t-view { font-family: var(--sans); font-size: .68rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-soft); opacity: 0; transform: translateY(8px); transition: .4s; }
.tile:hover .t-view { opacity: 1; transform: translateY(0); }
@media (max-width: 640px){ .tiles { grid-template-columns: 1fr; } .tile { aspect-ratio: 3/2; } }

/* ===========================================================
   Home gallery grid — seamless 2x2 editorial spread
   Four true-portrait (3:4) panels, two columns / two rows,
   flush edge to edge with no gaps between them.
   =========================================================== */
.g-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  width: 100%;
}
.gpanel {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 3 / 4;
}
.gpanel-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform .5s ease;
}
.gpanel:hover .gpanel-img, .gpanel:focus-visible .gpanel-img { transform: scale(1.04); }

/* top-to-bottom readability gradient — dark at top, clear of faces by ~50% down */
.gpanel-grad {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(10, 18, 10, .72) 0%,
    rgba(10, 18, 10, .45) 20%,
    rgba(10, 18, 10, .10) 35%,
    rgba(10, 18, 10, 0) 50%);
}
.gpanel-text {
  position: absolute; z-index: 2; top: 2rem; left: 2rem; right: 2rem;
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  color: var(--warm-white);
}
.gpanel-name {
  font-family: var(--sans); font-weight: 600; text-transform: uppercase;
  font-size: 32px; letter-spacing: .08em; color: var(--warm-white);
}
.gpanel-words {
  font-family: "Cormorant Garamond", var(--serif), serif; font-style: italic; font-weight: 400;
  font-size: 19px; color: rgba(249, 246, 242, .96); margin-top: .5rem;
}
.gpanel-desc {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: rgba(249, 246, 242, .88); margin-top: .55rem; max-width: 30ch;
}
.gpanel-arrow {
  font-family: var(--sans); font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .16em; color: #C49A3C; margin-top: .6rem;
  opacity: 0; transition: opacity .4s ease;
}
.gpanel:hover .gpanel-arrow, .gpanel:focus-visible .gpanel-arrow { opacity: 1; }

/* mobile: single column, same portrait ratio, same treatment */
@media (max-width: 768px) {
  .g-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   Masonry gallery (gallery pages)
   =========================================================== */
.gallery-head { padding-top: clamp(8rem, 16vw, 11rem); padding-bottom: clamp(2rem,5vw,3.5rem); text-align: center; }
.gallery { columns: 3; column-gap: 16px; padding-bottom: clamp(4rem, 9vw, 8rem); }
@media (max-width: 900px){ .gallery { columns: 2; } }
@media (max-width: 560px){ .gallery { columns: 1; } }
.gallery figure { margin: 0 0 16px; break-inside: avoid; cursor: zoom-in; overflow: hidden; background: var(--forest-deep); }
.gallery img { width: 100%; transition: transform 1s cubic-bezier(.2,.7,.2,1), opacity .8s ease; opacity: 0; }
.gallery img.loaded { opacity: 1; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery-empty { text-align: center; color: var(--ink-soft); padding: 4rem 0; }

/* ===========================================================
   Lightbox
   =========================================================== */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(15,18,14,.95); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; box-shadow: 0 40px 120px rgba(0,0,0,.6); }
.lb-btn { position: absolute; background: none; border: 0; color: var(--warm-white); cursor: pointer; opacity: .8; transition: opacity .25s, transform .25s; padding: 16px; }
.lb-btn:hover { opacity: 1; color: var(--gold-soft); }
.lb-close { top: 14px; right: 18px; font-size: 1.6rem; line-height: 1; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 2.4rem; line-height: 1; }
.lb-prev { left: 8px; } .lb-next { right: 8px; }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }
.lb-count { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: var(--warm-white); font-size: .68rem; letter-spacing: .24em; opacity: .8; }
@media (max-width: 640px){ .lb-prev,.lb-next{ font-size: 1.8rem; } }

/* ===========================================================
   Checklist ("You're in the right place if...")
   =========================================================== */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.6rem; max-width: 760px; margin-inline: auto; }
.checklist li { display: flex; align-items: flex-start; gap: 16px; }
.checklist .check { flex: none; color: #B5605A; font-size: 1.3rem; font-weight: 600; line-height: 1.6; }
.checklist p { margin: 0; color: var(--ink-soft); line-height: 1.75; }

/* ===========================================================
   Auto-advancing slideshow (families gallery) — height tracks
   each image's natural aspect ratio; no cropping, no letterboxing.
   =========================================================== */
.slideshow { position: relative; width: 100%; max-height: 72vh; overflow: hidden; }
.slideshow-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transition: opacity .8s ease;
}
.slideshow-slide.is-active { opacity: 1; z-index: 1; }
.slideshow-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: rgba(20, 24, 18, .3); color: var(--warm-white);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: .7; transition: opacity .3s ease, background .3s ease;
}
.slideshow-arrow:hover { opacity: 1; background: rgba(20, 24, 18, .5); }
.slideshow-arrow.prev { left: 20px; }
.slideshow-arrow.next { right: 20px; }
.slideshow-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.slideshow-dot {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: rgba(249, 246, 242, .45); transition: background .3s ease, transform .3s ease;
}
.slideshow-dot.is-active { background: var(--warm-white); transform: scale(1.3); }
@media (max-width: 768px) {
  .slideshow { max-height: 55vh; }
  .slideshow-arrow { width: 36px; height: 36px; font-size: 1.15rem; }
}

/* larger gallery variant (Portraits page) */
.slideshow.slideshow-lg { max-height: 100vh; }
@media (max-width: 768px) {
  .slideshow.slideshow-lg { max-height: 78vh; }
}

/* ===========================================================
   Section rhythm — generous, consistent breathing room between
   otherwise edge-to-edge blocks (hero-splits, collage, etc.)
   =========================================================== */
.section.moment { padding-block: clamp(64px, 10vw, 160px); }
#experience.spacious { padding-bottom: clamp(64px, 10vw, 160px); }
#pricing.spacious { padding-top: clamp(64px, 10vw, 160px); }
.checklist-block { padding-bottom: 40px; }
#gallery.gallery-tight { padding-bottom: 40px; }
#pricing.pricing-landing { padding-top: clamp(80px, 8vw, 100px); }

/* ===========================================================
   Editorial image strip (Maternity) — 3-up staggered photos,
   middle image taller for an editorial, not-quite-aligned feel.
   =========================================================== */
.img-strip { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 8px; padding-inline: 24px; align-items: center; }
.img-strip-item img { width: 100%; height: 380px; object-fit: cover; object-position: center; display: block; border-radius: 2px; }
.img-strip-item.img-strip-item--tall img { height: 440px; }
@media (max-width: 620px) {
  .img-strip { grid-template-columns: 1fr; }
  .img-strip-item img, .img-strip-item.img-strip-item--tall img { height: 380px; }
}

/* Wide landscape break (Maternity) — full-bleed band between sections */
.wide-landscape { width: 100%; height: 500px; }
.wide-landscape img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* ===========================================================
   About page — story column + sticky "Fun Facts" sidebar card,
   with a pull quote breaking up the story mid-way.
   =========================================================== */
.about-grid { display: grid; grid-template-columns: minmax(0, 620px) 1fr; align-items: start; gap: clamp(32px, 5vw, 64px); }
.about-main { max-width: 620px; }
.about-main p { margin-bottom: 1.1rem; line-height: 1.75; }
.about-main p:last-child { margin-bottom: 0; }
.about-pullquote {
  font-family: var(--serif); font-style: italic; color: var(--forest);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.4;
  border-left: 3px solid var(--salmon);
  margin: clamp(2rem, 4vw, 3rem) 0; padding-left: clamp(1.2rem, 2vw, 1.6rem);
}
.about-sidebar {
  background: var(--cream);
  border-left: 3px solid var(--salmon);
  border-radius: 0 4px 4px 0;
  padding: clamp(28px, 3.5vw, 40px);
  position: sticky;
  top: 100px;
}
.about-sidebar h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); color: var(--forest); margin-bottom: 1.2rem; }
.about-sidebar ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; counter-reset: fact; }
.about-sidebar li { position: relative; padding-left: 1.9rem; font-size: .92rem; line-height: 1.6; color: var(--ink-soft); counter-increment: fact; }
.about-sidebar li::before { content: counter(fact) "."; position: absolute; left: 0; top: 0; font-family: var(--serif); font-weight: 600; color: var(--salmon); }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
}

/* ===========================================================
   Editorial collage gallery — asymmetric grid, reusable across
   the Families and Portraits galleries. Mixed sizes, one anchor
   image, a color-block "matte" peeking behind 1-2 photos, and
   slight vertical offsets so columns don't line up like a table.
   =========================================================== */
.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(42px, 5vw, 58px);
  gap: clamp(24px, 3vw, 40px);
}
.collage-item { position: relative; }
.collage-item img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 2px;
}
.collage-block {
  position: absolute; inset: 0; z-index: 0;
  background: var(--salmon);
  border-radius: 2px;
  transform: translate(20px, 20px);
}
.collage-block.forest { background: var(--forest); }

.collage-item.c-anchor { grid-column: 1 / 8; grid-row: 1 / 11; }
.collage-item.c-2      { grid-column: 8 / 13; grid-row: 1 / 6; }
.collage-item.c-3      { grid-column: 8 / 13; grid-row: 6 / 12; margin-top: clamp(16px, 3vw, 32px); }
.collage-item.c-4      { grid-column: 1 / 5; grid-row: 11 / 16; margin-top: clamp(20px, 3vw, 36px); }
.collage-item.c-5      { grid-column: 5 / 8; grid-row: 11 / 15; }

@media (max-width: 820px) {
  .collage { display: flex; flex-direction: column; gap: clamp(28px, 6vw, 40px); }
  .collage-item { grid-column: auto !important; grid-row: auto !important; margin-top: 0 !important; aspect-ratio: 4 / 5; }
  .collage-block { transform: translate(14px, 14px); }
}

/* ===========================================================
   The Experience — full-width band, 4 steps in a row
   =========================================================== */
.experience-band { background: var(--cream-2); }
#experience.experience-band { padding-block: clamp(64px, 10vw, 160px); }
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.step { text-align: center; }
.step-num { font-family: var(--serif); font-size: clamp(48px, 6vw, 64px); line-height: 1; color: var(--salmon); margin-bottom: .5rem; }
.step-title {
  font-family: var(--sans); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--forest);
  margin: 0 0 .7rem;
}
.step-body { font-size: .95rem; line-height: 1.65; color: var(--ink-soft); margin: 0; }
/* Families' 3-step band: serif title, unlike the small sans-serif uppercase
   .step-title used elsewhere on the site */
.step-title-serif { font-family: "Cormorant Garamond", var(--serif), serif; font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 500; color: var(--ink); margin: 0 0 .6rem; }
.step-body-dark { font-size: .95rem; line-height: 1.65; color: var(--ink-soft); margin: 0; }
/* scoped to Families' cream-background variant only, since .eyebrow and
   .step-num default colors are shared with other pages' dark experience bands */
.experience-band-cream .eyebrow { color: var(--salmon); }
.experience-band-cream .step-num { color: var(--ink); }
@media (max-width: 900px) { .steps-row { grid-template-columns: repeat(2, 1fr); row-gap: clamp(32px, 6vw, 48px); } }
@media (max-width: 480px) { .steps-row { grid-template-columns: 1fr; } }
.steps-row.steps-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .steps-row.steps-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps-row.steps-3 { grid-template-columns: 1fr; } }

/* ===========================================================
   Center-mode carousel (Portraits gallery) — a single track
   slides via translate3d(); large center image, prev/next
   peeking at reduced opacity, arrows, swipe, "N / total" counter.
   =========================================================== */
.carousel { position: relative; }
.carousel-viewport {
  position: relative;
  height: clamp(420px, 62vw, 780px);
  overflow: hidden;
}
.carousel-track {
  position: absolute; top: 0; left: 0; height: 100%;
  display: flex; align-items: center;
  gap: clamp(20px, 4vw, 48px);
  will-change: transform;
  transition: transform 450ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.carousel-slide {
  flex: none;
  /* Actual width/height are set inline per-slide by JS (sizeSlides in
     main.js), from each photo's real aspect ratio, so a landscape photo
     renders properly wide and a portrait photo properly narrow, with
     nothing ever cropped or letterboxed to fit a mold. This height/width
     pair is only the pre-JS fallback. */
  height: 84%; width: min(56vw, 480px);
  object-fit: contain; border-radius: 4px;
  box-shadow: 0 30px 80px rgba(15, 20, 15, .28);
  cursor: pointer;
  opacity: .42;
  transform: scale(.88);
  transition: transform 450ms cubic-bezier(0.25, 0.8, 0.25, 1),
              opacity 450ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.carousel-slide.is-center { opacity: 1; transform: scale(1); cursor: default; }
.carousel-slide.is-adjacent { opacity: .48; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: rgba(20, 24, 18, .3); color: var(--warm-white);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: .7; transition: opacity .3s ease, background .3s ease;
}
.carousel-arrow:hover { opacity: 1; background: rgba(20, 24, 18, .5); }
.carousel-arrow.prev { left: clamp(4px, 2vw, 24px); }
.carousel-arrow.next { right: clamp(4px, 2vw, 24px); }
.carousel-counter {
  text-align: center; margin: 1.4rem 0 0;
  font-family: var(--sans); font-size: .76rem; letter-spacing: .18em;
  color: var(--ink-soft);
}
@media (max-width: 700px) {
  .carousel-arrow { width: 36px; height: 36px; font-size: 1.15rem; }
}

/* ===========================================================
   Pricing
   =========================================================== */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 3vw, 34px); }
@media (max-width: 820px){ .price-grid { grid-template-columns: 1fr; } }
.price-grid.price-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px){ .price-grid.price-grid-3 { grid-template-columns: 1fr; } }
.price-card { background: #fff; border: 1px solid var(--line-light); padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; }
.price-card.featured { background: var(--forest); color: var(--warm-white); border-color: var(--forest); }
.price-card .num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); line-height: 1; margin-bottom: 1rem; }
.price-card.featured .num { color: var(--gold-soft); }
.price-card h3 { letter-spacing: .01em; }
.price-card .sub { font-family: var(--serif); font-style: italic; color: var(--ink-soft); margin: .2rem 0 1.4rem; }
.price-card.featured .sub { color: rgba(249,246,242,.75); }
.price-meta { border-top: 1px solid var(--line-light); margin-top: auto; padding-top: 1.2rem; }
.price-card.featured .price-meta { border-color: rgba(249,246,242,.2); }
.price-meta .row { display: flex; justify-content: space-between; gap: 16px; font-size: .82rem; letter-spacing: .04em; padding: 6px 0; }
.price-meta .row span:first-child { text-transform: uppercase; letter-spacing: .16em; font-size: .66rem; color: var(--forest); }
.price-card.featured .price-meta .row span:first-child { color: var(--gold-soft); }
.price-amount { font-family: var(--serif); font-size: 1.6rem; margin: 1.4rem 0 .2rem; }

.price-features { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .5rem; }
.price-features li { font-size: .86rem; line-height: 1.5; color: var(--ink-soft); padding-left: 1.1em; position: relative; }
.price-features li::before { content: "–"; position: absolute; left: 0; color: var(--salmon); }
.price-card.featured .price-features li { color: rgba(249,246,242,.8); }
.price-card.featured .price-features li::before { color: var(--gold-soft); }

/* ===========================================================
   Testimonials — three-up variant (desktop only; collapses to
   the shared single-column mobile rule below 780px)
   =========================================================== */
.testimonials.three-up { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 780px){ .testimonials.three-up { grid-template-columns: 1fr; } }

/* ===========================================================
   FAQ accordion (native <details>/<summary>)
   =========================================================== */
.faq { max-width: 820px; margin: 2.6rem auto 0; }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 1.4rem 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 500; color: var(--forest);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--sans); font-size: 1.3rem; font-weight: 300; line-height: 1;
  color: var(--salmon); flex: none; transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { margin: 0 0 1.6rem; color: var(--ink-soft); max-width: 68ch; }

/* ===========================================================
   Forms (contact)
   =========================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px){ .form-grid { grid-template-columns: 1fr; } }
label { display: block; font-family: var(--sans); font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--forest); margin-bottom: 8px; }
input, select, textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--line-light);
  padding: 10px 2px; transition: border-color .3s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
textarea { resize: vertical; }
.form-note { font-family: var(--sans); font-size: .85rem; color: var(--forest); min-height: 1.2em; }
.form-note.error { color: var(--salmon); }

/* contact split */
.contact-info p { color: var(--ink-soft); }
.contact-info a { color: var(--forest); }
.contact-detail { margin-bottom: 1.6rem; }
.contact-detail .k { font-family: var(--sans); font-size: .66rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--forest); display: block; margin-bottom: 4px; }

/* ===========================================================
   Gallery intro — full-width photo + centered heading/copy/arrows,
   sits between the statement section and the gallery grid.
   =========================================================== */
.gallery-intro { background: var(--cream); }
.gallery-intro-photo-wrap { padding: 80px 48px 40px; }
.gallery-intro-photo {
  position: relative; width: 100%; height: 680px; overflow: hidden;
  background-image: url('../../second home page image.jpg');
  background-repeat: no-repeat; background-position: center 28%; background-size: 85% auto;
  opacity: 0; transform: translateY(60px);
  transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1), background-size .5s ease;
}
.gallery-intro-photo.in { opacity: 1; transform: none; }
.gallery-intro-photo-overlay {
  position: absolute; inset: 0; background: rgba(180, 120, 80, 0.08);
  opacity: 0; transition: opacity .5s ease; pointer-events: none;
}
.gallery-intro-photo:hover { background-size: 87.55% auto; }
.gallery-intro-photo:hover .gallery-intro-photo-overlay { opacity: 1; }

.gallery-intro-text { max-width: 640px; margin: 0 auto; padding: 48px 20px 40px; text-align: center; }
.gallery-intro-text h2 {
  font-family: "Cormorant Garamond", var(--serif), serif; font-weight: 300;
  font-size: 38px; color: #2A2A2A; line-height: 1.2; margin: 0 0 16px;
}
.gallery-intro-text p {
  font-family: var(--sans); font-size: 14px; color: #888;
  line-height: 1.75; margin: 0 0 36px;
}
.gallery-intro-arrows { display: flex; justify-content: center; gap: 14px; }
.gallery-intro-arrows span {
  display: inline-block; color: #B5605A; font-size: 24px; line-height: 1;
  animation: gallery-intro-bounce 1.8s ease-in-out infinite;
}
.gallery-intro-arrows span:nth-child(1) { animation-delay: 0s; }
.gallery-intro-arrows span:nth-child(2) { animation-delay: .18s; }
.gallery-intro-arrows span:nth-child(3) { animation-delay: .36s; }
@keyframes gallery-intro-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}
@media (max-width: 768px) {
  .gallery-intro-photo-wrap { padding: 40px 0 0; }
  .gallery-intro-photo { height: 340px; }
  .gallery-intro-text { padding: 32px 20px; }
}


/* ===========================================================
   Footer + CTA band
   =========================================================== */
.cta-band { position: relative; overflow: hidden; color: var(--warm-white); text-align: center; background: var(--forest); }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.cta-band .wrap { position: relative; padding-block: clamp(5rem, 12vw, 9rem); }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .lede { margin-inline: auto; color: rgba(249,246,242,.95); }

.site-footer { background: var(--near-black); color: var(--warm-white); }
.site-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; padding-block: clamp(3rem, 6vw, 4.5rem); }
.site-footer .brand { font-size: 1.3rem; color: var(--warm-white); }
.site-footer .brand small { opacity: .8; }
.footer-col h5 { font-family: var(--sans); font-size: .66rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 1rem; }
.footer-col a { display: block; font-size: .85rem; color: rgba(249,246,242,.8); padding: 4px 0; letter-spacing: .04em; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid var(--line-dark); }
.footer-bottom .wrap { padding-block: 1.4rem; font-size: .72rem; letter-spacing: .1em; color: rgba(249,246,242,.6); justify-content: center; }

/* ===========================================================
   Blog index — horizontal post list
   =========================================================== */
.blog-list { display: flex; flex-direction: column; }
.blog-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding-block: clamp(28px, 4vw, 40px); border-bottom: 1px solid rgba(138, 122, 106, 0.3);
  text-decoration: none; color: inherit;
}
.blog-list .blog-row:first-child { padding-top: 0; }
.blog-list .blog-row:last-child { border-bottom: none; padding-bottom: 0; }
.blog-row-text h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: .5rem; transition: color .2s ease; }
.blog-row-text p { color: var(--ink-soft); font-size: .94rem; margin: 0; }
.blog-row:hover .blog-row-text h3 { color: var(--salmon); }
.blog-row .read-more { flex: none; color: #B5605A; font-weight: 600; font-size: .86rem; white-space: nowrap; }
@media (max-width: 640px) { .blog-row { flex-direction: column; align-items: flex-start; gap: 10px; } }

/* ===========================================================
   Blog post template
   =========================================================== */
.blog-post-header { text-align: center; padding-block: clamp(3rem, 7vw, 5rem) clamp(2rem, 4vw, 3rem); }
.blog-post-header h1 { max-width: 800px; margin-inline: auto; }
.blog-post-header .post-date { margin-top: 1rem; font-family: var(--sans); font-size: .82rem; letter-spacing: .04em; color: var(--ink-soft); }
.blog-post-divider { max-width: var(--maxw); margin: 0 auto; border: 0; border-top: 1px solid rgba(138, 122, 106, 0.3); }
.blog-post-footer-img { width: 100%; height: 500px; object-fit: cover; display: block; }
.blog-post-body { max-width: 720px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) var(--gutter); }
.blog-post-body p { font-family: var(--sans); font-size: 17px; line-height: 1.85; color: #3a3a3a; margin: 0 0 24px; }
.blog-post-body p.lead { font-size: 19px; }
.blog-post-body h2 { font-family: "Cormorant Garamond", var(--serif), serif; font-size: 28px; color: #2A2A2A; margin: 48px 0 16px; }
.blog-post-body p:last-child { margin-bottom: 0; }
@media (max-width: 600px) { .blog-post-footer-img { height: 320px; } }

/* ===========================================================
   Reveal-on-scroll
   =========================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
