:root {
  --paper: #fbfaf8;
  --paper-soft: #f5eeeb;
  --rose: #af7475;
  --rose-dark: #70474d;
  --ink: #262323;
  --muted: #6e6765;
  --line: rgba(74, 57, 57, 0.16);
  --white: #ffffff;
  --sans: "Manrope", Arial, sans-serif;
  --script: "Parisienne", "Snell Roundhand", cursive;
  --header-script: "Allura", "Snell Roundhand", cursive;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: .7rem 1rem;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 88px;
  padding: .7rem clamp(1.2rem, 4vw, 4.8rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 250, 248, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: .8rem; }
.brand img { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; }
.brand > span { display: grid; line-height: 1.05; }
.brand strong { font-family: var(--header-script); font-size: 1.9rem; font-weight: 400; }
.brand small { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; margin-left: .15rem; }
nav { display: flex; align-items: center; gap: clamp(1.4rem, 3vw, 3rem); }
nav a { font-size: .77rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
nav a:not(.nav-cta) { position: relative; }
nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.3rem;
  height: 1px;
  background: var(--rose);
  transition: right .25s ease;
}
nav a:hover::after, nav a:focus-visible::after { right: 0; }
.nav-cta { border: 1px solid var(--ink); padding: .75rem 1.1rem; transition: .25s ease; }
.nav-cta:hover, .nav-cta:focus-visible { background: var(--ink); color: var(--white); }
.menu-toggle { display: none; }

.hero {
  max-width: var(--max);
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.2rem, 5.5vw, 6rem);
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(440px, 1.15fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; max-width: 590px; }
.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--rose-dark);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1 { margin: 0; font-weight: 400; line-height: .9; }
h1 span { display: block; font-family: var(--script); font-size: clamp(4.4rem, 8.2vw, 8rem); color: var(--rose-dark); white-space: nowrap; }
h1 small { display: block; margin: .7rem 0 0 .45rem; font-size: clamp(.75rem, 1.15vw, 1rem); letter-spacing: .52em; text-transform: uppercase; }
.hero-line { margin: 2.8rem 0 .5rem; font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 500; line-height: 1.4; }
.hero-intro { max-width: 540px; margin: 0; color: var(--muted); }
.hero-actions { display: flex; align-items: center; gap: 1.7rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: .82rem 1.45rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--rose-dark); color: var(--white); }
.button-primary:hover, .button-primary:focus-visible { background: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: .55rem; padding: .55rem 0; border-bottom: 1px solid var(--rose); font-size: .82rem; font-weight: 600; letter-spacing: .06em; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(4px); }

.hero-gallery { position: relative; min-height: 650px; }
.hero-image { margin: 0; position: absolute; overflow: hidden; background: var(--paper-soft); }
.hero-image img { height: 100%; object-fit: cover; transition: transform .8s ease; }
.hero-image:hover img { transform: scale(1.025); }
.hero-image-main { right: 0; top: 0; width: 76%; height: 74%; }
.hero-image-main img { object-position: 58% 50%; }
.hero-image-newborn { left: 0; bottom: 0; width: 42%; height: 41%; border: 12px solid var(--paper); }
.hero-image-detail { right: 4%; bottom: 0; width: 35%; height: 27%; border: 10px solid var(--paper); }
.hero-note {
  position: absolute;
  left: 2%;
  top: 7%;
  z-index: 2;
  width: 130px;
  height: 130px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-note span { display: block; color: var(--rose-dark); font-family: var(--script); font-size: 1.65rem; letter-spacing: 0; text-transform: none; line-height: 1; }
.hero-swash { position: absolute; left: -4%; bottom: 9%; width: 44%; height: 70px; border-top: 1px solid rgba(175,116,117,.32); border-radius: 50%; transform: rotate(-8deg); }

.manifesto { padding: clamp(5rem, 10vw, 10rem) 1.2rem; text-align: center; background: var(--paper-soft); }
.manifesto .eyebrow { margin-bottom: 1.8rem; }
.manifesto-line { max-width: 1050px; margin: 0 auto; font-size: clamp(2rem, 5vw, 4.8rem); line-height: 1.18; letter-spacing: -.035em; }
.manifesto-line em { color: var(--rose-dark); font-family: var(--script); font-size: 1.25em; font-style: normal; }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(5rem, 9vw, 9rem) clamp(1.2rem, 5.5vw, 6rem); }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
h2 { margin: 0; font-size: clamp(2.25rem, 4.8vw, 4.7rem); line-height: 1.12; font-weight: 400; letter-spacing: -.045em; }
.section-heading > p { color: var(--muted); max-width: 470px; margin: 0 0 .45rem auto; }

.photo-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 240px; gap: clamp(.7rem, 1.4vw, 1.25rem); }
.photo-card { grid-column: span 4; margin: 0; overflow: hidden; position: relative; background: var(--paper-soft); }
.photo-card.photo-tall { grid-row: span 2; }
.photo-card.photo-wide { grid-column: span 8; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.photo-card:nth-child(2) img { object-position: 50% 38%; }
.photo-card.photo-milestone img { object-position: 50% 30%; }
.photo-card:hover img { transform: scale(1.035); }
.photo-card::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(25,18,18,.7)); }
.photo-card figcaption { position: absolute; left: 1.1rem; bottom: .9rem; z-index: 2; color: white; font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.portfolio-footer { display: grid; justify-items: center; margin-top: 2.5rem; }
.portfolio-gallery-link {
  border-bottom: 0;
  padding: 0;
  color: var(--rose-dark);
  font-family: var(--script);
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}
.gallery-botanical { width: min(270px, 62vw); margin-top: .25rem; opacity: .28; transform: rotate(2deg); }

.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 9rem); align-items: center; background: var(--paper-soft); max-width: none; padding-left: max(clamp(1.2rem, 5.5vw, 6rem), calc((100vw - var(--max))/2 + 6rem)); padding-right: max(clamp(1.2rem, 5.5vw, 6rem), calc((100vw - var(--max))/2 + 6rem)); }
.about-portrait { position: relative; max-width: 570px; }
.portrait-frame { aspect-ratio: 4 / 5; overflow: hidden; }
.portrait-frame img { height: 100%; object-fit: cover; object-position: center; }
.about-stamp { position: absolute; right: -47px; bottom: 8%; width: 126px; height: 126px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); display: grid; place-content: center; text-align: center; box-shadow: 0 15px 40px rgba(64,40,42,.12); }
.about-stamp span { font-size: .54rem; letter-spacing: .17em; text-transform: uppercase; }
.about-stamp strong { font-size: 1.45rem; font-weight: 500; letter-spacing: .12em; line-height: 1.25; }
.about-copy { max-width: 650px; }
.about-copy h2 { padding-left: .14em; color: var(--rose-dark); font-family: var(--script); font-size: clamp(4rem, 7vw, 7rem); letter-spacing: 0; line-height: 1; }
.about-name { display: block; padding-left: .42em; }
.about-copy p { color: var(--muted); }
.about-copy .about-lead { margin-top: 2rem; color: var(--ink); font-size: clamp(1.15rem, 1.7vw, 1.42rem); line-height: 1.55; }
.about-copy .text-link { margin-top: .5rem; }

.experience { display: block; }
.experience-intro { position: static; width: min(100%, 820px); margin-bottom: 4rem; }
.experience-intro p:last-child { color: var(--muted); margin-top: 1.8rem; max-width: 490px; }
.steps { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 70px 1fr; gap: 1.2rem; padding: 2.4rem 0; border-bottom: 1px solid var(--line); }
.steps > li > span { color: var(--rose); font-family: var(--script); font-size: 1.8rem; }
.steps h3 { margin: 0 0 .4rem; font-size: 1.4rem; font-weight: 500; }
.steps p { margin: 0; color: var(--muted); max-width: 600px; }

.season-banner { max-width: none; min-height: 680px; padding: 0; position: relative; display: grid; place-items: center; overflow: hidden; }
.season-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(27,20,20,.64), rgba(27,20,20,.22)); }
.season-banner > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 50% 53%; }
.season-copy { position: relative; z-index: 2; width: min(1200px, calc(100% - 2.4rem)); color: white; }
.season-copy .eyebrow { color: white; }
.season-copy h2 { max-width: 700px; margin-bottom: 2rem; font-family: var(--script); font-size: clamp(4.6rem, 9vw, 9rem); letter-spacing: 0; }
.button-light { background: white; color: var(--ink); }
.button-light:hover, .button-light:focus-visible { background: var(--rose-dark); color: white; }

.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 9vw, 9rem); }
.contact-copy > p:not(.eyebrow) { color: var(--muted); max-width: 470px; }
.contact-details { display: grid; gap: .75rem; margin-top: 2rem; }
.contact-details a {
  width: fit-content;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: .72rem 1rem;
  border: 1px solid rgba(112, 71, 77, .32);
  background: rgba(255, 255, 255, .72);
  color: var(--rose-dark);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .015em;
  box-shadow: 0 8px 24px rgba(64, 40, 42, .06);
}
.inquiry-form { padding: clamp(1.4rem, 4vw, 3.2rem); background: var(--paper-soft); display: grid; gap: 1.3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.inquiry-form label { display: grid; gap: .45rem; color: var(--rose-dark); font-size: .72rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; min-height: 48px; border: 0; border-bottom: 1px solid rgba(64,48,49,.33); border-radius: 0; padding: .75rem .2rem; background: transparent; color: var(--ink); text-transform: none; letter-spacing: normal; outline: none; }
.inquiry-form textarea { resize: vertical; min-height: 112px; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--rose-dark); box-shadow: 0 1px 0 var(--rose-dark); }
.inquiry-form .button { width: fit-content; margin-top: .4rem; }
.form-note { margin: -.4rem 0 0; color: var(--muted); font-size: .72rem; }

footer { padding: 4.5rem clamp(1.2rem, 5.5vw, 6rem) 2rem; background: var(--rose-dark); color: white; text-align: center; }
.footer-brand { display: grid; justify-items: center; }
.footer-logo {
  width: min(82vw, 650px);
  max-height: 230px;
  object-fit: contain;
  filter: invert(1) brightness(2.4);
  opacity: .98;
}
.footer-links { display: flex; justify-content: center; gap: 1rem; margin: 1.6rem 0 4rem; }
.footer-links a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-links a:hover, .footer-links a:focus-visible { background: white; color: var(--rose-dark); transform: translateY(-2px); }
.social-icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-icon-facebook { width: 12px; height: 22px; fill: currentColor; stroke: none; }
.social-icon-dot { fill: currentColor; stroke: none; }
.mock-credit { margin: 0; color: rgba(255,255,255,.58); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr 1.05fr; gap: 3rem; }
  h1 span { font-size: clamp(4rem, 7.8vw, 6rem); }
  .hero-gallery { min-height: 570px; }
  .photo-grid { grid-auto-rows: 210px; }
  .contact { gap: 4rem; }
}

@media (max-width: 820px) {
  .site-header { min-height: 76px; }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: 1.45rem; }
  .menu-toggle { display: grid; gap: 5px; width: 48px; height: 48px; place-content: center; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 1px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  nav { position: absolute; top: 76px; left: 0; right: 0; display: grid; gap: 0; padding: 1rem 1.2rem 1.5rem; background: var(--paper); border-bottom: 1px solid var(--line); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .25s ease; }
  nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  nav a { padding: 1rem .2rem; }
  .nav-cta { margin-top: .5rem; text-align: center; }
  .hero { min-height: auto; padding-top: 4rem; grid-template-columns: 1fr; gap: 3rem; }
  .hero-copy { text-align: center; margin: 0 auto; }
  h1 span { font-size: clamp(4rem, 16vw, 6.7rem); white-space: normal; }
  h1 small { font-size: .72rem; letter-spacing: .42em; margin-left: .42em; }
  .hero-actions { justify-content: center; }
  .hero-gallery { min-height: 610px; width: min(100%, 620px); margin: 0 auto; }
  .hero-note { left: 0; top: 5%; }
  .section-heading, .about, .experience, .contact { grid-template-columns: 1fr; }
  .section-heading { gap: 1.5rem; }
  .section-heading > p { margin-left: 0; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 300px; }
  .photo-card, .photo-card.photo-wide { grid-column: span 1; }
  .photo-card.photo-tall { grid-row: span 1; }
  .about { padding-left: clamp(1.2rem, 5.5vw, 6rem); padding-right: clamp(1.2rem, 5.5vw, 6rem); }
  .about-portrait { width: min(88%, 540px); }
  .about-stamp { right: -38px; }
  .experience { row-gap: 2.25rem; }
  .experience-intro { position: static; }
  .season-banner { min-height: 600px; }
  .season-banner::after { background: rgba(27,20,20,.48); }
}

@media (max-width: 560px) {
  .site-header { padding-inline: 1rem; }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: 1.2rem; }
  .brand small { font-size: .52rem; }
  .hero { padding: 3.3rem 1rem 4rem; }
  .hero-line { margin-top: 2rem; }
  .hero-actions { flex-direction: column; gap: .75rem; }
  .button { width: 100%; }
  .hero-gallery { min-height: 490px; }
  .hero-image-main { width: 88%; height: 72%; }
  .hero-image-newborn { width: 48%; height: 38%; border-width: 7px; }
  .hero-image-detail { width: 39%; height: 25%; border-width: 6px; }
  .hero-note { width: 96px; height: 96px; font-size: .52rem; }
  .hero-note span { font-size: 1.25rem; }
  .manifesto { padding: 5rem 1.2rem; }
  .section { padding: 5rem 1rem; }
  .photo-grid { grid-template-columns: 1fr; grid-auto-rows: 390px; gap: .8rem; }
  .about { padding-inline: 1rem; }
  .about-portrait { width: 92%; }
  .about-stamp { width: 104px; height: 104px; right: -8%; }
  .about-copy h2 { font-size: 4.1rem; }
  .about-name { padding-left: .72em; }
  .steps li { grid-template-columns: 48px 1fr; }
  .season-banner { min-height: 560px; }
  .season-banner > img { object-position: 54% 50%; }
  .season-copy { text-align: center; }
  .season-copy h2 { font-size: 4.5rem; }
  .field-row { grid-template-columns: 1fr; }
  .inquiry-form { padding: 1.35rem; }
  .inquiry-form .button { width: 100%; }
  .contact-details a { width: 100%; }
  .contact-details a:first-child { font-size: .85rem; overflow-wrap: anywhere; }
  .footer-links { flex-wrap: wrap; gap: 1rem 1.6rem; }
}

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

/* Full-screen photographic hero */
.site-header {
  position: fixed;
  width: 100%;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(20, 15, 15, .5), transparent);
  border-bottom-color: transparent;
  backdrop-filter: none;
  transition: background-color .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(251, 250, 248, .96);
  border-bottom-color: var(--line);
  box-shadow: 0 7px 30px rgba(45, 32, 33, .06);
  backdrop-filter: blur(14px);
}
.brand { text-shadow: 0 1px 18px rgba(0, 0, 0, .22); }
.site-header.scrolled .brand { text-shadow: none; }
.brand strong { font-size: 1.75rem; }
.nav-cta { border-color: currentColor; }
.site-header:not(.scrolled) .nav-cta:hover,
.site-header:not(.scrolled) .nav-cta:focus-visible { background: var(--white); color: var(--ink); }

.hero {
  max-width: none;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: 7rem 1.2rem 5rem;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #302526;
}
.hero-slides,
.hero-shade { position: absolute; inset: 0; }
.hero-slides { z-index: -2; }
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  isolation: isolate;
  overflow: hidden;
  background: #2d2526;
  will-change: opacity;
  transition: opacity 2.6s cubic-bezier(.45, 0, .2, 1);
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: -6%;
  z-index: -1;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: blur(18px) saturate(.95) brightness(.94);
  opacity: .98;
  transform: scale(1.06);
}
.hero-slide-truck { --hero-image: url("assets/IMG_5074.jpeg"); }
.hero-slide-newborn { --hero-image: url("assets/IMG_5075.jpeg"); }
.hero-slide-rings { --hero-image: url("assets/IMG_5077.jpeg"); }
.hero-slide-children { --hero-image: url("assets/IMG_5078.jpeg"); }
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide.is-leaving { opacity: 0; z-index: 2; }
.hero-slide img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}
.hero-slide.is-active img,
.hero-slide.is-leaving img { transform: none; }
.hero-slide-truck img { object-position: 50% 58%; }
.hero-slide-newborn img { object-position: 50% 48%; }
.hero-slide-rings img { object-position: 50% 48%; }
.hero-slide-children img { object-position: 50% 45%; }
.hero-shade {
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(20, 12, 13, .12) 18%, rgba(20, 12, 13, .28) 100%);
}
.hero .hero-copy {
  width: min(94vw, 1040px);
  max-width: none;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 26px rgba(13, 8, 8, .38);
}
.hero h1 { width: 100%; margin: 0 auto; line-height: 1; }
.hero-logo {
  width: min(86vw, 960px);
  max-height: 41vh;
  margin: 0 auto;
  object-fit: contain;
  filter: invert(1) brightness(2.4);
  opacity: .97;
}
.hero .hero-line {
  margin: clamp(.8rem, 1.8vw, 1.5rem) auto 0;
  color: var(--white);
  font-size: clamp(.85rem, 1.3vw, 1.08rem);
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1.5;
  text-transform: uppercase;
}
.hero .hero-actions { justify-content: center; margin-top: 1.8rem; }
.hero .button-light { min-width: 164px; text-shadow: none; }
.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: .55rem;
  color: rgba(255, 255, 255, .86);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue i { display: block; width: 1px; height: 34px; background: rgba(255, 255, 255, .72); }

/* Repeating botanical language from the redesigned logo */
.manifesto,
.about,
.experience,
.contact { position: relative; overflow: hidden; }
.botanical {
  position: absolute;
  z-index: 0;
  width: clamp(360px, 48vw, 760px);
  height: auto;
  opacity: .15;
  pointer-events: none;
  user-select: none;
}
.manifesto > :not(.botanical),
.about > :not(.botanical),
.experience > :not(.botanical),
.contact > :not(.botanical) { position: relative; z-index: 1; }
.botanical-manifesto { left: -8%; top: -10%; transform: rotate(-5deg); }
.botanical-about { right: -12%; bottom: -2%; transform: rotate(168deg); }
.botanical-experience { left: -16%; bottom: -4%; transform: rotate(8deg); }
.botanical-contact { right: -13%; top: -5%; transform: rotate(177deg); }
.about-stamp { overflow: hidden; padding: 0; }
.about-stamp img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 820px) {
  .site-header:not(.scrolled) .menu-toggle > span:not(.sr-only) { background: var(--white); }
  .site-header nav { color: var(--ink); }
  .site-header nav.is-open { box-shadow: 0 16px 24px rgba(35, 25, 26, .1); }
  .hero { min-height: 100svh; padding: 6rem 1rem 4.5rem; }
  .hero-logo { width: min(95vw, 760px); max-height: 35vh; }
  .hero .hero-line { max-width: 90%; font-size: .8rem; }
  .hero-slide-truck img { object-position: 51% 55%; }
  .hero-slide-family img { object-position: 52% 42%; }
  .hero-slide-newborn img { object-position: 52% 50%; }
  .hero-slide-children img { object-position: 50% 48%; }
  .botanical { width: 560px; opacity: .14; }
}

@media (max-width: 560px) {
  .site-header { min-height: 72px; }
  .brand strong { font-size: 1.35rem; }
  .hero { padding: 5.6rem .8rem 4.5rem; }
  .hero-logo { width: 100%; max-height: 29vh; }
  .hero .hero-line { font-size: .74rem; letter-spacing: .13em; }
  .hero .button { width: auto; min-width: 178px; }
  .scroll-cue { bottom: 1rem; }
  .botanical { width: 470px; opacity: .13; }
  .botanical-about { right: -55%; }
  .botanical-contact { right: -48%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide:not(.is-active) { display: none; }
  .hero-slide.is-active img { transform: none; }
}

/* Keep the mobile experience steps in a strict vertical flow. */
@media (max-width: 820px) {
  .experience { display: block; }
  .experience-intro { position: static; width: 100%; margin: 0 0 3.5rem; }
  .steps { position: static; width: 100%; margin: 0; clear: both; }
}

@media (max-width: 560px) {
  .steps li {
    grid-template-columns: 4rem minmax(0, 1fr);
    column-gap: 1.15rem;
    align-items: start;
    padding: 2.25rem 0;
  }
  .steps > li > span { display: block; padding-top: .1rem; line-height: 1.15; }
  .steps li > div { min-width: 0; }
  .steps h3 { line-height: 1.25; }
}
