/* ==========================================================
   Samantha Banoub: UGC & Lifestyle Creator
   Palette pulled from her media kit: butter, strawberry, blush, cream, sage
   ========================================================== */
:root {
  --butter: #F6DC93;
  --butter-2: #F9E7B4;
  --cream: #FFF8EA;
  --paper: #FFFCF4;
  --berry: #B8474B;
  --berry-2: #A33B40;
  --berry-deep: #7C2A2F;
  --blush: #EDB1C6;
  --blush-2: #F8DCE6;
  --blush-3: #FCEEF3;
  --sage: #9FB865;
  --denim: #6E8FB8;
  --gold: #C99A3C;
  --ink: #3A2225;
  --ink-soft: #6B4F52;

  --serif: "Playfair Display", "Didot", Georgia, serif;
  --sans: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --hand: "Caveat", "Bradley Hand", cursive;

  --radius: 22px;
  --shadow: 0 18px 40px -18px rgba(124, 42, 47, .35);
  --shadow-soft: 0 10px 30px -14px rgba(58, 34, 37, .25);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --gutter: clamp(16px, 4vw, 56px);
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
em { font-style: italic; }
::selection { background: var(--blush); color: var(--berry-deep); }

/* paper grain on warm surfaces */
.hero, .brands, .results, .contact, .approach {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.45  0 0 0 0 0.3  0 0 0 0 0.2  0 0 0 .07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- type ---------- */
.h2, .hero__title, .brands__title, .contact__title, .h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 .4em;
}
.h2 { font-size: clamp(38px, 5.6vw, 76px); }
.h3 { font-size: clamp(28px, 3.4vw, 44px); }
.h4 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin: 0 0 16px; }
.h2 em, .hero__title em, .brands__title em, .h3 em, .contact__title em { color: var(--berry); font-weight: 400; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  color: var(--berry); margin: 0 0 14px;
}
.i-sparkle { width: 14px; height: 14px; color: var(--berry); }
.section { padding: clamp(80px, 11vw, 150px) var(--gutter); position: relative; }
.section__head { max-width: 760px; margin: 0 auto clamp(40px, 6vw, 72px); text-align: center; }
.section__lede { color: var(--ink-soft); font-size: 1.08em; margin: 0 auto; max-width: 560px; }
.link-underline { text-decoration: none; font-weight: 500; color: var(--berry); background: linear-gradient(currentColor, currentColor) 0 100% / 0 1.5px no-repeat; transition: background-size .4s var(--ease); padding-bottom: 2px; }
.link-underline:hover { background-size: 100% 1.5px; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--berry); --fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--bg); color: var(--fg);
  font-weight: 500; font-size: 15px; letter-spacing: .02em; text-decoration: none; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  will-change: transform; position: relative; overflow: hidden; isolation: isolate;
}
.btn::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.35), transparent 60%); opacity: 0; transition: opacity .3s; z-index: -1; }
.btn:hover::after { opacity: 1; }
.btn--berry { box-shadow: 0 10px 24px -10px rgba(184, 71, 75, .7); }
.btn--berry:hover { background: var(--berry-2); box-shadow: 0 16px 30px -12px rgba(184, 71, 75, .8); }
.btn--ghost { --bg: transparent; --fg: var(--berry-deep); border-color: rgba(124, 42, 47, .35); }
.btn--ghost:hover { --bg: var(--paper); border-color: var(--berry); }
.btn--cream { --bg: var(--cream); --fg: var(--berry-deep); }
.btn--cream:hover { --bg: #fff; }
.btn--outline-cream { --bg: transparent; --fg: var(--cream); border-color: rgba(255, 248, 234, .5); font-size: 14px; padding: 13px 22px; }
.btn--outline-cream:hover { border-color: var(--cream); --bg: rgba(255,255,255,.08); }
.btn--small { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 18px 34px; font-size: 16px; }
.btn--block { width: 100%; }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2.5px solid var(--berry); outline-offset: 3px; }
.i-heart { width: 16px; height: 14px; color: currentColor; }
.i-heart--inline { display: inline-block; vertical-align: -1px; color: var(--berry); width: 14px; height: 12px; }
.copy-hint { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; border-left: 1px solid rgba(255,248,234,.4); padding-left: 10px; }

/* ---------- intro ---------- */
.intro {
  position: fixed; inset: 0; z-index: 100; background: var(--butter);
  display: grid; place-items: center;
  transition: clip-path 1s var(--ease) .1s;
  clip-path: inset(0 0 0 0);
}
.intro.is-done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.intro__inner { text-align: center; }
.intro__bow { width: 74px; height: 56px; margin: 0 auto 6px; color: var(--blush); animation: bowPop .8s var(--ease-bounce) both; }
.intro__name { font-family: var(--serif); font-style: italic; font-size: clamp(56px, 11vw, 120px); color: var(--berry); margin: 0; line-height: 1; overflow: hidden; }
.intro__name span { display: inline-block; animation: rise 1s var(--ease) .15s both; }
.intro__sub { font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--berry-deep); margin: 14px 0 0; animation: fadeIn .8s ease .55s both; }
.no-intro .intro { display: none; }
@keyframes bowPop { from { transform: scale(0) rotate(-20deg); } to { transform: none; } }
@keyframes rise { from { transform: translateY(110%); } to { transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gutter);
  transition: padding .4s var(--ease), background .4s, box-shadow .4s, transform .5s var(--ease);
}
.nav.is-scrolled { padding-top: 12px; padding-bottom: 12px; background: rgba(255, 248, 234, .86); backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4); box-shadow: 0 1px 0 rgba(124, 42, 47, .08); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__logo { font-family: var(--serif); font-size: 24px; text-decoration: none; color: var(--berry-deep); letter-spacing: -.01em; }
.nav__logo em { color: var(--berry); }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav__links a:not(.btn) { text-decoration: none; font-size: 14.5px; font-weight: 500; color: var(--ink); position: relative; }
.nav__links a:not(.btn)::after { content: ""; position: absolute; left: 50%; bottom: -6px; width: 5px; height: 5px; border-radius: 50%; background: var(--berry); transform: translateX(-50%) scale(0); transition: transform .3s var(--ease-bounce); }
.nav__links a:not(.btn):hover::after, .nav__links a.is-active::after { transform: translateX(-50%) scale(1); }
.nav__toggle { display: none; width: 44px; height: 44px; border: 0; background: var(--berry); border-radius: 50%; cursor: pointer; position: relative; z-index: 2; }
.nav__toggle span { position: absolute; left: 13px; right: 13px; height: 1.8px; background: var(--cream); border-radius: 2px; transition: transform .35s var(--ease), top .35s var(--ease); }
.nav__toggle span:first-child { top: 18px; } .nav__toggle span:last-child { top: 25px; }
.nav__toggle[aria-expanded="true"] span:first-child { top: 21.5px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { top: 21.5px; transform: rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(24px, 4vw, 64px);
  padding: 130px var(--gutter) 90px;
  background-color: var(--butter);
  overflow: hidden;
}
.hero__copy { position: relative; z-index: 2; max-width: 640px; justify-self: end; }
.hero__title { font-size: clamp(46px, 6.6vw, 96px); color: var(--berry-deep); margin-bottom: 26px; }
.hero__lede { font-size: clamp(16px, 1.3vw, 19px); color: var(--ink-soft); max-width: 520px; margin: 0 0 34px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero__niches { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.hero__niches li { font-size: 12.5px; letter-spacing: .08em; text-transform: lowercase; padding: 6px 14px; border-radius: 999px; background: rgba(255, 255, 255, .5); border: 1px solid rgba(184, 71, 75, .2); color: var(--berry-deep); }
.hero__visual { position: relative; z-index: 1; justify-self: start; width: min(100%, 560px); }

.hero__scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--berry-deep); text-decoration: none; opacity: .75; z-index: 3; }
.hero__scroll i { width: 1.5px; height: 38px; background: linear-gradient(var(--berry) 50%, transparent 50%) 0 0 / 100% 200%; animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { from { background-position: 0 100%; } to { background-position: 0 -100%; } }

/* torn strips, like the washi / denim edges in the kit */
.strip { position: absolute; z-index: 0; pointer-events: none; height: 70px; width: 520px; border-radius: 4px; filter: drop-shadow(0 6px 10px rgba(0,0,0,.08)); }
.strip--gingham {
  background:
    repeating-linear-gradient(90deg, rgba(126, 160, 70, .55) 0 10px, transparent 10px 20px),
    repeating-linear-gradient(0deg, rgba(126, 160, 70, .55) 0 10px, transparent 10px 20px),
    #E4EFC4;
  -webkit-mask: radial-gradient(circle at 6px 50%, transparent 5px, #000 5.5px) 0 0 / 12px 100% repeat-y, linear-gradient(#000, #000);
  clip-path: polygon(0 12%, 4% 0, 9% 10%, 15% 2%, 22% 12%, 30% 0, 38% 9%, 46% 1%, 55% 11%, 63% 2%, 71% 10%, 80% 0, 88% 9%, 95% 1%, 100% 10%, 100% 90%, 96% 100%, 89% 91%, 81% 99%, 73% 90%, 64% 100%, 55% 89%, 47% 98%, 39% 90%, 30% 100%, 22% 91%, 13% 99%, 6% 90%, 0 98%);
}
.strip--denim {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.12) 0 2px, transparent 2px 5px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,.08) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, #7C9CC4, #5F80AC);
  clip-path: polygon(0 18%, 6% 4%, 13% 14%, 20% 0, 28% 12%, 36% 3%, 45% 15%, 53% 2%, 61% 12%, 70% 0, 78% 14%, 86% 3%, 94% 13%, 100% 5%, 100% 84%, 94% 98%, 86% 86%, 78% 100%, 70% 88%, 61% 98%, 53% 86%, 45% 100%, 36% 88%, 28% 97%, 20% 86%, 13% 100%, 6% 88%, 0 96%);
}
.strip--tl { top: 150px; left: -330px; transform: rotate(-32deg); }
.strip--br { bottom: 40px; right: -170px; transform: rotate(-24deg); width: 560px; height: 80px; }
.strip--contact { top: 40px; right: -160px; transform: rotate(24deg); }

/* folder card (from the kit) */
.folder { position: relative; background: var(--berry); border-radius: 14px 18px 18px 18px; padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow); color: var(--cream); }
.folder::before { content: ""; position: absolute; top: -26px; left: 0; width: 44%; height: 40px; background: var(--berry); border-radius: 14px 14px 0 0; clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%); }
.folder__paper { position: absolute; top: -14px; left: 30%; right: 6%; height: 36px; background: #fff; border-radius: 6px 6px 0 0; box-shadow: inset 0 -8px 0 var(--blush-2); z-index: -1; transform: rotate(-1.5deg); }
.folder--hero { aspect-ratio: 1 / 1.12; width: 100%; background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 6px 6px; }

.polaroid { background: var(--paper); padding: 12px 12px 48px; border-radius: 4px; box-shadow: 0 20px 40px -18px rgba(0,0,0,.35); margin: 0; position: relative; transform-style: preserve-3d; }
.polaroid img, .polaroid video { width: 100%; object-fit: cover; border-radius: 2px; background: var(--blush-2); }
.polaroid figcaption { position: absolute; left: 0; right: 0; bottom: 10px; text-align: center; font-family: var(--hand); font-size: 22px; color: var(--berry); line-height: 1.1; }
.polaroid--hero { position: absolute; width: 56%; left: 6%; top: 6%; transform: rotate(-4deg); z-index: 2; }
.polaroid--hero img { aspect-ratio: 4 / 5.3; object-position: 50% 30%; }
.polaroid--video { position: absolute; width: 41%; right: 5%; bottom: 6%; transform: rotate(6deg); z-index: 3; padding: 9px 9px 40px; }
.polaroid--video video { aspect-ratio: 9 / 14; }
.polaroid--video figcaption { font-size: 18px; }
.pin { position: absolute; width: 18px; height: 60px; top: -26px; left: 46%; transform: rotate(18deg); z-index: 4; }

.sticker { position: absolute; pointer-events: none; z-index: 4; filter: drop-shadow(0 8px 10px rgba(58, 34, 37, .22)); }
.sticker--strawberry { width: 92px; height: 100px; left: -34px; bottom: 10%; transform: rotate(-16deg); }
.sticker--marigold { width: 96px; height: 96px; left: -30px; top: -34px; }
.sticker--star { width: 84px; height: 84px; right: -18px; top: 12%; }
.sticker--sparkle { width: 38px; height: 38px; color: var(--butter); right: 26%; top: 4%; }
.sticker--sparkle2 { width: 26px; height: 26px; color: var(--blush); left: 58%; bottom: 3%; }

.spin { animation: spin 26s linear infinite; }
.float { animation: float 6s ease-in-out infinite; }
.twinkle { animation: twinkle 2.6s ease-in-out infinite; animation-delay: var(--d, 0s); }
@keyframes spin { to { rotate: 360deg; } }
@keyframes float { 50% { translate: 0 -14px; } }
@keyframes twinkle { 0%, 100% { scale: 1; opacity: 1; } 50% { scale: .55; opacity: .5; } }

/* ---------- ribbon ---------- */
.ribbon { background: var(--berry); color: var(--cream); display: grid; grid-template-columns: repeat(4, 1fr); padding: clamp(34px, 4vw, 52px) var(--gutter); gap: 20px; position: relative; }
.ribbon::before, .ribbon::after { content: ""; position: absolute; left: 0; right: 0; height: 12px; background: radial-gradient(circle at 8px -2px, transparent 8px, var(--berry) 8.5px) 0 0 / 16px 12px repeat-x; }
.ribbon::before { top: -11px; transform: scaleY(-1); }
.ribbon::after { bottom: -11px; }
.ribbon__item { text-align: center; display: flex; flex-direction: column; gap: 4px; }
.ribbon__item + .ribbon__item { border-left: 1px dashed rgba(255, 248, 234, .3); }
.ribbon strong { font-family: var(--serif); font-weight: 500; font-style: italic; font-size: clamp(36px, 4.4vw, 60px); line-height: 1; }
.ribbon__item > span { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }

/* ---------- brands ---------- */
.brands { background-color: var(--butter); padding: clamp(80px, 9vw, 130px) 0 clamp(70px, 8vw, 110px); text-align: center; overflow: hidden; }
.brands__title { font-size: clamp(38px, 5.4vw, 72px); color: var(--berry-deep); font-style: italic; margin-bottom: clamp(30px, 4vw, 50px); }
.brands__title em { color: var(--berry); }
.marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee + .marquee { margin-top: 16px; }
.marquee__track { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee--reverse .marquee__track { animation-direction: reverse; animation-duration: 50s; }
.marquee ul { list-style: none; display: flex; gap: 16px; padding: 0 8px; margin: 0; }
.marquee li { white-space: nowrap; padding: 14px 30px; border-radius: 999px; background: var(--blush); color: #fff; font-size: clamp(15px, 1.4vw, 19px); box-shadow: 0 6px 0 -1px rgba(184, 71, 75, .18); transition: transform .3s var(--ease-bounce), background .3s; }
.marquee li:hover { transform: translateY(-4px) rotate(-2deg); background: var(--berry); }
.marquee--reverse li { background: transparent; color: var(--berry-deep); border: 1.5px dashed rgba(184, 71, 75, .45); box-shadow: none; font-family: var(--serif); font-style: italic; padding: 10px 26px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 7vw, 110px); align-items: center; max-width: calc(var(--maxw) + 2 * var(--gutter)); margin: 0 auto; }
.about__photo { position: relative; max-width: 460px; justify-self: center; width: 100%; }
.frame { position: relative; padding: 14px; background: var(--paper); border-radius: 6px; box-shadow: var(--shadow); transform: rotate(-2.5deg); outline: 2px solid rgba(201, 154, 60, .5); outline-offset: -7px; }
.frame img { aspect-ratio: 960 / 1180; object-fit: cover; width: 100%; border-radius: 3px; }
.tape { position: absolute; width: 120px; height: 34px; background: rgba(159, 184, 101, .85); background-image: radial-gradient(rgba(255,255,255,.9) 1.4px, transparent 1.6px); background-size: 12px 12px; z-index: 2; box-shadow: 0 2px 4px rgba(0,0,0,.08); }
.tape--tl { top: -10px; left: -30px; transform: rotate(-35deg); }
.tape--br { bottom: -6px; right: -30px; transform: rotate(-35deg); }
.sticker--cherries { width: 96px; height: 106px; right: -40px; top: 8%; transform: rotate(12deg); }
.sticker--daisy-about { width: 110px; height: 110px; left: -46px; bottom: -34px; }
.about__copy p { margin: 0 0 1.1em; color: var(--ink-soft); max-width: 600px; }
.about__copy strong { color: var(--ink); font-weight: 500; }
.chips { list-style: none; padding: 0; margin: 26px 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { padding: 8px 18px; border-radius: 999px; background: var(--blush-3); color: var(--berry-deep); font-size: 14px; border: 1px solid var(--blush-2); transition: transform .3s var(--ease-bounce), background .3s; cursor: default; }
.chips li:hover { transform: translateY(-3px) rotate(-3deg); background: var(--blush-2); }
.about__note { font-family: var(--hand); font-size: 25px; line-height: 1.35; color: var(--berry) !important; }

/* ---------- work ---------- */
.work { background: linear-gradient(180deg, var(--cream), var(--blush-3) 30%, var(--blush-3) 80%, var(--cream)); }
.reels { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.4vw, 32px); max-width: var(--maxw); margin: 0 auto; }
.reel { text-align: center; }
.reel:nth-child(even) { margin-top: 48px; }
.reel__phone { display: block; width: 100%; padding: 8px; border: 0; border-radius: 34px; background: var(--ink); cursor: pointer; position: relative; box-shadow: var(--shadow); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.reel__phone::before { content: ""; position: absolute; top: 16px; left: 50%; width: 60px; height: 16px; border-radius: 99px; background: var(--ink); transform: translateX(-50%); z-index: 2; }
.reel__phone video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 27px; background: var(--blush-2); }
.reel__phone:hover { transform: translateY(-10px) rotate(-1.5deg); box-shadow: 0 30px 50px -20px rgba(124, 42, 47, .5); }
.reel:nth-child(even) .reel__phone:hover { transform: translateY(-10px) rotate(1.5deg); }
.reel__play { position: absolute; left: 50%; top: 50%; width: 64px; height: 64px; border-radius: 50%; background: rgba(255, 248, 234, .92); color: var(--berry); display: grid; place-items: center; transform: translate(-50%, -50%) scale(.85); opacity: 0; transition: .4s var(--ease-bounce); box-shadow: 0 10px 24px -8px rgba(0,0,0,.4); }
.reel__play svg { width: 26px; height: 26px; margin-left: 3px; }
.reel__phone:hover .reel__play, .reel__phone:focus-visible .reel__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.reel h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; margin: 20px 0 2px; }
.reel p { margin: 0; font-size: 13.5px; color: var(--ink-soft); }

.moments { max-width: var(--maxw); margin: clamp(80px, 10vw, 130px) auto 0; }
.moments__head { display: flex; align-items: end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.moments__head .h3 { margin: 0; }
.moments__grid { display: grid; grid-auto-flow: dense; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(160px, 17vw, 230px); gap: clamp(10px, 1.4vw, 18px); }
.moment { margin: 0; position: relative; overflow: hidden; border-radius: 18px; background: var(--blush-2); }
.moment.m-tall { grid-row: span 2; }
.moment img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s; }
.moment figcaption { position: absolute; left: 12px; bottom: 12px; padding: 5px 14px; border-radius: 999px; background: rgba(255, 248, 234, .92); font-family: var(--hand); font-size: 20px; line-height: 1.2; color: var(--berry); transform: translateY(8px); opacity: 0; transition: .45s var(--ease); }
.moment:hover img { transform: scale(1.07); }
.moment:hover figcaption { transform: none; opacity: 1; }

/* ---------- approach ---------- */
.approach { background-color: var(--berry); color: var(--cream); overflow: hidden; }
.section__head--light .eyebrow { color: var(--butter); }
.approach .h2 { color: var(--cream); font-style: italic; }
.approach .h2 em { color: var(--butter); }
.approach__quote { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 34px); line-height: 1.4; text-align: center; max-width: 900px; margin: 0 auto clamp(50px, 7vw, 80px); font-weight: 400; }
.approach__quote em { color: var(--blush); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 30px); max-width: var(--maxw); margin: 0 auto; }
.pillar { background: var(--cream); color: var(--ink); padding: clamp(28px, 3vw, 40px); border-radius: var(--radius); position: relative; transition: transform .5s var(--ease-bounce); }
.pillar:hover { transform: translateY(-8px) rotate(-1deg); }
.pillar:nth-child(2):hover { transform: translateY(-8px) rotate(1deg); }
.pillar__num { font-family: var(--serif); font-style: italic; font-size: 54px; line-height: 1; color: var(--blush); display: block; margin-bottom: 18px; }
.pillar h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; line-height: 1.2; margin: 0 0 10px; }
.pillar p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.sticker--daisy-approach { width: 150px; height: 150px; right: 4%; top: 60px; opacity: .95; }

/* ---------- results ---------- */
.results { background-color: var(--butter); }
.results .section__lede { color: var(--berry-deep); }
.folders { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(34px, 3vw, 44px) clamp(16px, 2vw, 28px); max-width: var(--maxw); margin: 0 auto; padding-top: 26px; }
.fcard { grid-column: span 2; position: relative; background: var(--paper); border-radius: 6px 20px 20px 20px; padding: 28px 28px 26px; box-shadow: var(--shadow-soft); transition: transform .5s var(--ease-bounce), box-shadow .5s; }
.fcard:nth-child(4) { grid-column: 2 / span 2; }
.fcard::before { content: ""; position: absolute; top: -20px; left: 0; width: 42%; height: 24px; background: inherit; border-radius: 14px 14px 0 0; clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%); }
.fcard--pink { background: var(--blush-3); }
.fcard:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.fcard h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin: 0 0 14px; color: var(--berry-deep); }
.fcard__date { margin: -10px 0 12px; font-size: 13px; color: var(--ink-soft); }
.fcard dl { margin: 0; display: grid; gap: 2px; }
.fcard dl div { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 10px 0; border-bottom: 1px dashed rgba(124, 42, 47, .16); }
.fcard dl div:last-child { border-bottom: 0; }
.fcard dt { font-size: 14px; color: var(--ink-soft); }
.fcard dd { margin: 0; font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.fcard .up { color: #3F8F5A; font-style: normal; font-size: 16px; }
.fcard__icons { list-style: none; padding: 0; margin: 6px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fcard__icons li { background: #fff; border-radius: 14px; padding: 14px; display: flex; flex-direction: column; }
.fcard__icons b { font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1.1; color: var(--berry); }
.fcard__icons li > span { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.sticker--star-card { width: 64px; height: 64px; right: -16px; top: -34px; transform: rotate(14deg); }
.sticker--marigold-card { width: 70px; height: 70px; right: -20px; bottom: -24px; }

/* ---------- services ---------- */
.services { background: var(--cream); }
.packages { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.8vw, 24px); max-width: var(--maxw); margin: 0 auto; }
.pkg { text-align: left; background: var(--paper); border: 1.5px solid rgba(124, 42, 47, .12); border-radius: var(--radius); padding: 28px 24px 26px; cursor: pointer; position: relative; display: flex; flex-direction: column; transition: transform .45s var(--ease-bounce), border-color .3s, background .3s, box-shadow .45s; }
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.pkg[aria-checked="true"] { background: var(--berry); color: var(--cream); border-color: var(--berry); box-shadow: var(--shadow); transform: translateY(-6px); }
.pkg__count { font-family: var(--serif); font-style: italic; font-size: 72px; line-height: .9; color: var(--blush); }
.pkg[aria-checked="true"] .pkg__count { color: var(--butter); }
.pkg__label { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; margin: 6px 0 16px; }
.pkg__price { font-size: 14px; opacity: .85; margin-bottom: 14px; }
.pkg__price b { font-family: var(--serif); font-size: 34px; font-weight: 500; opacity: 1; letter-spacing: -.01em; }
.pkg__desc { font-size: 14px; line-height: 1.6; opacity: .82; }
.pkg__badge { position: absolute; top: 18px; right: 18px; font-family: var(--hand); font-size: 20px; padding: 0 12px; border-radius: 999px; background: var(--butter); color: var(--berry-deep); transform: rotate(4deg); }
.pkg__badge--value { background: var(--blush-2); }

.builder { max-width: var(--maxw); margin: clamp(26px, 3vw, 40px) auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); background: var(--blush-3); border-radius: 28px; padding: clamp(26px, 4vw, 52px); border: 1px solid var(--blush-2); }
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 3px; border-radius: 50%; background: var(--berry) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 12.5l4 4 8-9' stroke='%23FFF8EA' stroke-width='2.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 14px no-repeat; }
.builder__col--calc { background: var(--paper); border-radius: 22px; padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-soft); }
.toggle { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; cursor: pointer; border-bottom: 1px dashed rgba(124, 42, 47, .14); }
.toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle__ui { flex: none; width: 46px; height: 26px; border-radius: 99px; background: #E9D9D2; position: relative; transition: background .3s; margin-top: 2px; }
.toggle__ui::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.18); transition: transform .35s var(--ease-bounce); }
.toggle input:checked + .toggle__ui { background: var(--berry); }
.toggle input:checked + .toggle__ui::after { transform: translateX(20px); }
.toggle input:focus-visible + .toggle__ui { outline: 2.5px solid var(--berry); outline-offset: 3px; }
.toggle b { display: block; font-weight: 500; font-size: 15px; }
.toggle small { display: block; font-size: 13px; color: var(--ink-soft); line-height: 1.4; }
.estimate { display: flex; flex-direction: column; align-items: center; padding: 22px 0 18px; text-align: center; }
.estimate__label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.estimate__value { font-family: var(--serif); font-size: clamp(48px, 5vw, 64px); line-height: 1.1; color: var(--berry); }
.estimate__value sup { font-size: .4em; margin-left: 2px; }
.estimate__value.bump { animation: bump .45s var(--ease-bounce); }
@keyframes bump { 40% { transform: scale(1.12); } }
.estimate__sum { font-size: 14px; color: var(--ink-soft); }

.more { max-width: var(--maxw); margin: clamp(70px, 9vw, 120px) auto 0; text-align: center; }
.more__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); margin-top: 36px; text-align: left; }
.more__card { padding: 32px 28px; border-radius: var(--radius); background: var(--paper); border: 1.5px solid rgba(124, 42, 47, .1); transition: transform .45s var(--ease-bounce), box-shadow .45s; }
.more__card:hover { transform: translateY(-6px) rotate(-.6deg); box-shadow: var(--shadow-soft); }
.more__icon { width: 56px; height: 44px; color: var(--blush); margin-bottom: 18px; }
.more__icon--berry { color: var(--berry); width: 44px; height: 40px; }
.more__icon--gold { color: var(--gold); width: 42px; height: 42px; }
.more__card h4 { font-family: var(--serif); font-weight: 500; font-size: 23px; margin: 0 0 8px; }
.more__card p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* ---------- process ---------- */
.process { background: var(--blush-3); }
.steps { list-style: none; padding: 0; margin: 0 auto; max-width: var(--maxw); display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); position: relative; }
.steps::before { content: ""; position: absolute; top: 30px; left: 12%; right: 12%; border-top: 2px dashed rgba(184, 71, 75, .35); }
.step { text-align: center; position: relative; }
.step__dot { width: 60px; height: 60px; border-radius: 50%; background: var(--berry); color: var(--cream); font-family: var(--serif); font-style: italic; font-size: 28px; display: grid; place-items: center; margin: 0 auto 20px; position: relative; box-shadow: 0 0 0 8px var(--blush-3), 0 0 0 10px var(--blush-2); transition: transform .4s var(--ease-bounce); }
.step:hover .step__dot { transform: scale(1.1) rotate(-8deg); }
.step h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin: 0 0 8px; }
.step p { margin: 0 auto; max-width: 250px; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- faq ---------- */
.faq__list { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { background: var(--paper); border-radius: 18px; border: 1.5px solid rgba(124, 42, 47, .1); transition: border-color .3s, box-shadow .3s; }
.faq details[open] { border-color: var(--blush); box-shadow: var(--shadow-soft); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 64px 22px 26px; font-family: var(--serif); font-size: clamp(18px, 1.6vw, 21px); font-weight: 500; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 50%; width: 32px; height: 32px; margin-top: -16px; border-radius: 50%; background: var(--blush-3); color: var(--berry); display: grid; place-items: center; font-family: var(--sans); font-size: 20px; font-weight: 300; transition: transform .4s var(--ease-bounce), background .3s; }
.faq details[open] summary::after { transform: rotate(135deg); background: var(--blush-2); }
.faq details > div { padding: 0 26px 22px; color: var(--ink-soft); overflow: hidden; }
.faq details > div p { margin: 0; }

/* ---------- contact ---------- */
.contact { background-color: var(--butter); overflow: hidden; }
.contact__wrap { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(30px, 5vw, 70px); align-items: center; position: relative; z-index: 1; }
.contact__photo { transform: rotate(-4deg); max-width: 340px; justify-self: center; width: 100%; }
.contact__photo img { aspect-ratio: 4 / 5; }
.folder--contact { text-align: center; padding: clamp(44px, 6vw, 72px) clamp(24px, 5vw, 60px) clamp(34px, 4vw, 48px); }
.contact__kicker { font-family: var(--serif); font-style: italic; font-size: 20px; margin: 0 0 6px; opacity: .92; }
.contact__title { font-size: clamp(52px, 8vw, 104px); font-style: italic; color: var(--cream); margin-bottom: 18px; }
.contact__title em { color: var(--cream); }
.contact__lede { max-width: 480px; margin: 0 auto 30px; opacity: .9; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.contact__ig { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-size: 15px; text-decoration: none; opacity: .9; }
.contact__ig svg { width: 20px; height: 20px; }
.contact__ig:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.contact__year { font-size: 12px; letter-spacing: .25em; opacity: .7; margin: 18px 0 0; }
.sticker--strawberry-c { width: 90px; height: 98px; right: -30px; top: -40px; transform: rotate(18deg); }
.sticker--cherries-c { width: 90px; height: 100px; left: 30px; bottom: -44px; transform: rotate(-10deg); }

/* ---------- footer ---------- */
.footer { background: var(--berry-deep); color: var(--cream); text-align: center; padding: 56px var(--gutter) 40px; font-size: 14px; }
.footer p { margin: 0 0 8px; opacity: .85; }
.footer__logo { font-family: var(--serif); font-size: 30px; opacity: 1 !important; }
.footer__logo em { color: var(--blush); }
.footer__links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.footer a { text-decoration: none; }
.footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer__copy { font-size: 12.5px; opacity: .6 !important; margin-top: 18px !important; }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(58, 34, 37, .82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: grid; place-items: center; padding: 20px; opacity: 0; transition: opacity .35s; }
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox__inner { text-align: center; transform: scale(.94) translateY(12px); transition: transform .45s var(--ease-bounce); }
.lightbox.is-open .lightbox__inner { transform: none; }
.lightbox video { max-height: 80vh; max-height: 80svh; width: auto; max-width: min(92vw, 460px); border-radius: 22px; background: #000; box-shadow: 0 30px 60px -20px rgba(0,0,0,.6); }
.lightbox p { color: var(--cream); font-family: var(--serif); font-style: italic; font-size: 20px; margin: 16px 0 0; }
.lightbox__close { position: absolute; top: 18px; right: 18px; width: 50px; height: 50px; border-radius: 50%; border: 0; background: var(--cream); color: var(--berry); font-size: 30px; line-height: 1; cursor: pointer; transition: transform .35s var(--ease-bounce); }
.lightbox__close:hover { transform: rotate(90deg) scale(1.05); }

/* ---------- toast ---------- */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 30px); background: var(--berry-deep); color: var(--cream); padding: 12px 22px; border-radius: 999px; font-size: 14px; opacity: 0; pointer-events: none; transition: .45s var(--ease-bounce); z-index: 95; box-shadow: var(--shadow); }
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- cursor trail ---------- */
.cursor-layer { position: fixed; inset: 0; pointer-events: none; z-index: 80; overflow: hidden; }
.trail { position: absolute; width: 14px; height: 13px; color: var(--blush); pointer-events: none; animation: trail 1s var(--ease) forwards; }
.trail--sparkle { color: var(--butter); width: 14px; height: 14px; }
.trail--berry { color: var(--berry); width: 10px; height: 9px; }
@keyframes trail { 0% { opacity: .95; transform: translate(-50%, -50%) scale(1) rotate(0deg); } 100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + 34px)) scale(.3) rotate(var(--r)); } }

/* ---------- reveal animations ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.js [data-reveal="left"] { transform: translateX(-50px) rotate(-3deg); }
.js [data-reveal="pop"] { transform: scale(.88) rotate(2deg); transition-timing-function: var(--ease), var(--ease-bounce); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-split] .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.js [data-split] .w > span { display: inline-block; transform: translateY(105%) rotate(4deg); transition: transform 1s var(--ease); transition-delay: calc(var(--i) * 55ms + var(--d, 0s)); }
.js [data-split].is-in .w > span { transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .reels { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
  .reel:nth-child(even) { margin-top: 0; }
  .packages { grid-template-columns: repeat(2, 1fr); }
  .folders { grid-template-columns: repeat(2, 1fr); }
  .fcard, .fcard:nth-child(4) { grid-column: span 1; }
  .fcard:last-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 26px;
    background: var(--butter); clip-path: circle(0 at calc(100% - 44px) 42px); transition: clip-path .7s var(--ease); visibility: hidden;
  }
  .nav__links.is-open { clip-path: circle(150% at calc(100% - 44px) 42px); visibility: visible; }
  .nav__links a:not(.btn) { font-family: var(--serif); font-size: 36px; font-weight: 400; font-style: italic; color: var(--berry-deep); }
  .nav__links .btn { font-size: 16px; padding: 14px 30px; margin-top: 8px; }

  .hero { grid-template-columns: 1fr; padding-top: 110px; padding-bottom: 100px; text-align: center; min-height: auto; }
  .hero__copy { justify-self: center; }
  .hero__lede { margin-inline: auto; }
  .hero__ctas, .hero__niches { justify-content: center; }
  .hero__visual { justify-self: center; width: min(92%, 460px); margin-top: 30px; }
  .hero__scroll { display: none; }
  .strip--tl { top: 70px; left: -260px; }

  .ribbon { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .ribbon__item:nth-child(3) { border-left: 0; }

  .about { grid-template-columns: 1fr; }
  .about__photo { max-width: 360px; }
  .about__copy { text-align: center; }
  .about__copy p { margin-inline: auto; }
  .chips { justify-content: center; }

  .moments__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .moments__head { justify-content: center; text-align: center; }

  .pillars, .more__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .sticker--daisy-approach { width: 90px; height: 90px; top: 30px; right: -20px; }

  .builder { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .steps::before { display: none; }

  .contact__wrap { grid-template-columns: 1fr; }
  .contact__photo { max-width: 260px; order: 2; }
}
@media (max-width: 560px) {
  .reels { gap: 14px; }
  .reel__phone { padding: 6px; border-radius: 26px; }
  .reel__phone video { border-radius: 21px; }
  .reel__phone::before { width: 40px; height: 11px; top: 12px; }
  .reel h3 { font-size: 17px; }
  .reel p { font-size: 12px; }
  .packages, .folders { grid-template-columns: 1fr; }
  .fcard:last-child { grid-column: auto; }
  .steps { grid-template-columns: 1fr; }
  .ribbon__item > span { font-size: 11px; letter-spacing: .1em; }
  .contact__actions .btn { width: 100%; }
  .btn--outline-cream { font-size: 13px; }
  .sticker--star, .sticker--marigold { width: 64px; height: 64px; }
  .sticker--strawberry { width: 66px; height: 72px; left: -18px; }
  .sticker--cherries { right: -14px; width: 70px; height: 78px; }
  .sticker--daisy-about { left: -16px; width: 80px; height: 80px; }
  .sticker--strawberry-c { right: -10px; width: 64px; height: 70px; }
  .moments__grid { grid-auto-rows: 170px; }
  .moment figcaption { opacity: 1; transform: none; font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .intro { display: none; }
}

/* lining figures for stats & prices */
.ribbon strong, .fcard dd, .fcard__icons b, .pkg__price b, .pkg__count, .estimate__value, .step__dot, .pillar__num { font-variant-numeric: lining-nums tabular-nums; }
.builder__sub { margin-top: 30px; }
.checks--plus li::before { background: var(--blush) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 6v12M6 12h12' stroke='%23FFF8EA' stroke-width='2.6' stroke-linecap='round'/></svg>") center / 14px no-repeat; }
.builder__note { font-family: var(--hand); font-size: 23px; line-height: 1.3; color: var(--berry); margin: 26px 0 0; }

/* ==========================================================
   Motion layer v2
   ========================================================== */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
.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; }

/* scroll progress */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60; pointer-events: none; }
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--blush), var(--berry)); transform-origin: 0 50%; transform: scaleX(0); }

/* hero rotating word */
.rotator { display: inline-grid; vertical-align: bottom; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; transition: width .7s var(--ease); }
.rotator em { grid-area: 1 / 1; white-space: nowrap; transform: translateY(105%) rotate(6deg); opacity: 0; transition: transform .8s var(--ease), opacity .6s; }
.rotator em.is-active { transform: none; opacity: 1; }
.rotator em.is-out { transform: translateY(-105%) rotate(-6deg); opacity: 0; }
.hero__visual { will-change: transform; transform-style: preserve-3d; }
.hero__copy { will-change: transform, opacity; }

/* floating sparkles in hero */
.floaties { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.floaty { position: absolute; bottom: -30px; width: var(--s); height: var(--s); color: var(--c); opacity: 0; animation: floatUp var(--t) linear var(--delay) infinite; }
@keyframes floatUp { 0% { opacity: 0; transform: translate(0, 0) rotate(0deg); } 12% { opacity: .9; } 85% { opacity: .6; } 100% { opacity: 0; transform: translate(var(--drift), -105vh) rotate(var(--rot)); } }

/* odometer */
.odo { display: inline-flex; align-items: flex-start; height: 1.08em; overflow: hidden; line-height: 1.08; }
.odo__col { display: inline-block; height: 1.08em; overflow: hidden; }
.odo__strip { display: flex; flex-direction: column; transform: translateY(0); transition: transform 2.4s cubic-bezier(.16, .9, .2, 1); transition-delay: var(--d, 0s); }
.odo__strip span { height: 1.08em; line-height: 1.08; display: block; text-align: center; }
.odo__static { display: inline-block; }

/* kinetic band */
.band { background: var(--cream); padding: clamp(40px, 6vw, 80px) 0; overflow: hidden; border-block: 1px solid rgba(184, 71, 75, .1); }
.band__row { display: flex; width: max-content; font-family: var(--serif); font-style: italic; font-size: clamp(54px, 10vw, 150px); line-height: 1.08; color: var(--berry); white-space: nowrap; will-change: transform; }
.band__row span { padding-right: .3em; }
.band__row i { font-style: normal; color: var(--blush); font-size: .45em; vertical-align: .35em; margin: 0 .25em; }
.band__row--outline { color: transparent; -webkit-text-stroke: 1.4px var(--berry); }
.band__row--outline i { -webkit-text-stroke: 0; color: var(--gold); }

/* portfolio: horizontal scroll */
.work { background: var(--blush-3); position: relative; padding: 0; }
.hscroll { position: relative; }
.hscroll__sticky { position: relative; overflow: hidden; }
.hscroll__track { display: flex; align-items: center; gap: clamp(22px, 3vw, 56px); padding: clamp(80px, 10vw, 120px) var(--gutter); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.hscroll__track::-webkit-scrollbar { display: none; }
.hscroll__intro { flex: 0 0 min(82vw, 440px); scroll-snap-align: start; }
.hscroll__intro .section__lede { margin: 0; }
.hscroll__hint { margin: 28px 0 0; font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--berry); display: flex; align-items: center; gap: 12px; }
.hscroll__hint i { font-style: normal; font-size: 20px; animation: nudge 1.6s ease-in-out infinite; }
@keyframes nudge { 50% { transform: translateX(10px); } }
.work .reels { display: flex; gap: clamp(22px, 3vw, 56px); max-width: none; margin: 0; }
.work .reel { flex: 0 0 auto; width: min(62vw, 290px); margin-top: 0; scroll-snap-align: center; }
.hscroll__end { flex: 0 0 min(82vw, 420px); text-align: center; scroll-snap-align: end; padding: 0 10px; }
.hscroll__end-kicker { font-family: var(--hand); font-size: 28px; color: var(--berry); margin: 0; }
.hscroll__end-title { font-family: var(--serif); font-size: clamp(40px, 4.6vw, 64px); line-height: 1.05; margin: 6px 0 28px; }
.hscroll__end-title em { color: var(--berry); }
.hscroll__bar { display: none; }

.h-on .hscroll__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; display: flex; align-items: center; }
.h-on .hscroll__track { overflow: visible; padding: 0 var(--gutter); scroll-snap-type: none; will-change: transform; }
.h-on .work .reel { width: clamp(210px, 31vh, 320px); }
.h-on .work .reel:nth-child(even) { margin-top: 70px; }
.h-on .hscroll__bar { display: block; position: absolute; left: var(--gutter); right: var(--gutter); bottom: 34px; height: 3px; border-radius: 3px; background: var(--blush-2); overflow: hidden; }
.h-on .hscroll__bar span { display: block; height: 100%; background: var(--berry); transform-origin: 0 50%; transform: scaleX(0); }

/* moments now their own section */
.moments-wrap { background: linear-gradient(180deg, var(--blush-3), var(--cream)); padding-top: clamp(40px, 6vw, 80px); }
.moments-wrap .moments { margin-top: 0; }

/* wipe reveal for photos */
.js .wipe[data-reveal] { opacity: 1; transform: none; clip-path: inset(100% 0 0 0 round 18px); transition: clip-path 1.3s var(--ease); transition-delay: var(--d, 0s); }
.js .wipe[data-reveal].is-in { clip-path: inset(0 0 0 0 round 18px); }
.js .wipe img { transform: scale(1.35); transition: transform 1.8s var(--ease); transition-delay: var(--d, 0s); }
.js .wipe.is-in img { transform: scale(1); }
.js .moment.wipe.is-in:hover img { transform: scale(1.07); transition-delay: 0s; transition-duration: 1.1s; }

/* quote fills word by word */
.approach__quote .fw { opacity: .2; transition: opacity .35s ease; }
.approach__quote .fw.on { opacity: 1; }

/* velocity skew on brand marquee */
.brands .marquee ul { transform: skewX(var(--skew, 0deg)); transition: transform .2s linear; }

@media (max-width: 900px) {
  .work .reel:nth-child(even) { margin-top: 0; }
  .hscroll__hint span::after { content: " / swipe"; }
}
@media (prefers-reduced-motion: reduce) {
  .floaties, .progress { display: none; }
  .approach__quote .fw { opacity: 1; }
  .js .wipe[data-reveal] { clip-path: none; }
  .js .wipe img { transform: none; }
}
.hero__title { font-size: clamp(44px, 6vw, 86px); }
.hero__title .rotator { text-align: left; }
@media (max-width: 900px) { .br-lg { display: none; } }
.ribbon .odo { align-self: center; }
@media (max-width: 900px) { .strip--tl { display: none; } .strip--br { bottom: 10px; } }
@media (max-width: 560px) { .sticker--strawberry { bottom: -4%; left: -10px; } }
