/* ENSOR CELL · type and surface tokens after DESIGN-apple.md (2026-09-13)
   Display: SF Pro Display (system) with Inter as the off-system stand-in, weight 600, tight tracking.
   Text: SF Pro Text (system) / Inter, 17px, 1.47, -0.374px. Weight ladder 300 / 400 / 600 only.
   One accent (the rose-copper of the foil) carries every interactive element. No shadows on chrome. */
:root {
  --canvas: #FFFFFF; --canvas-alt: #F5F5F7; --pearl: #FAFAFC; --ink: #1D1D1F; --ink-2: #333333; --ink-3: #7A7A7A;
  --hairline: #E0E0E0; --divider: #F0F0F0; --chip: #D2D2D7;
  --accent: #C08A5C; --accent-text: #96652F; --night: #000000; --on-night: #FFFFFF; --on-night-2: #CCCCCC; --accent-night: #D9A778;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
  --text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif;
  --section: 80px;                       /* {spacing.section} */
  --gutter: clamp(1.25rem, 6vw, 5rem);
  color-scheme: light;
}
@media (max-width: 640px) { :root { --section: 48px; } }
* { box-sizing: border-box; }
html { scroll-behavior: auto; }
/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-smooth iframe { pointer-events: none; }
body { margin: 0; background: var(--canvas); color: var(--ink); font-family: var(--text); font-size: 17px; line-height: 1.47; letter-spacing: -0.374px; font-feature-settings: "ss03"; -webkit-font-smoothing: antialiased; }
/* clip, not hidden: overflow-x: hidden on body turns it into a scroll container on touch browsers and ScrollTrigger then reads the wrong scroll position */
html, body { overflow-x: clip; }
img, video { max-width: 100%; display: block; }
p { margin: 0; }
h1, h2 { margin: 0; font-weight: inherit; font-size: inherit; }
ol { margin: 0; padding: 0; list-style: none; }

/* type
   display--lg  {typography.hero-display}  56 / 600 / 1.07 / -0.28px
   display--md  {typography.display-lg}    40 / 600 / 1.10 / 0
   display--sm  {typography.display-md}    34 / 600 / 1.47 / -0.374px
   lead         {typography.lead}          28 / 400 / 1.14 / +0.196px
   eyebrow      {typography.caption-strong} 14 / 600 / 1.29 / -0.224px
   spec, credits, status  {typography.caption} 14 / 400 / 1.43 / -0.224px */
.wordmark { font-family: var(--display); font-weight: 400; font-size: clamp(.85rem, 1.2vw, 1.05rem); letter-spacing: .36em; text-transform: uppercase; color: var(--ink); }   /* logotype, the one tracked setting */
.wordmark--sm { font-size: .75rem; letter-spacing: .3em; color: var(--ink-3); }
/* Apple's system face switches to its Text cut below 20px, which is wider and heavier than the Display cut the desktop
   shows at this size; on phones the tracked wordmark therefore steps down one weight, so it stays a quiet label above
   the 600 headline instead of competing with it */
@media (max-width: 640px) { .wordmark:not(.wordmark--lg) { font-weight: 300; } }
.eyebrow { font-family: var(--text); font-weight: 600; font-size: 14px; line-height: 1.29; letter-spacing: -0.224px; color: var(--ink-3); margin-bottom: 17px; }
.eyebrow--night { color: var(--on-night-2); }
.display { font-family: var(--display); font-weight: 600; text-wrap: balance; letter-spacing: -.005em; }   /* Apple tight: display sizes carry a slight negative tracking */
.display--lg { font-size: clamp(2.125rem, 4.8vw, 3.5rem); line-height: 1.07; letter-spacing: -.005em; }
.display--md { font-size: clamp(1.75rem, 3.4vw, 2.5rem); line-height: 1.1; letter-spacing: -.003em; max-width: 22ch; }
.display--sm { font-size: clamp(1.5rem, 2.8vw, 2.125rem); line-height: 1.47; letter-spacing: -0.374px; max-width: 24ch; }
.lead { font-family: var(--display); font-weight: 400; font-size: clamp(1.3125rem, 2vw, 1.75rem); line-height: 1.14; letter-spacing: 0.196px; color: var(--ink); max-width: 40ch; margin-top: 12px; }
.spec { font-size: 14px; line-height: 1.43; letter-spacing: -0.224px; color: var(--ink-3); margin-top: 8px; font-variant-numeric: tabular-nums; }
.spec__line { white-space: nowrap; }
@media (max-width: 640px) { .spec__sep { display: none; } .spec__line { display: block; } }   /* phones: the product name, then the formula and pack on their own line */

/* sub-nav: a 52px frosted strip (parchment at 80% over a 20px blur, a hairline under it). Name as a tagline on the
   left, 12px links, a small pill action on the right. Slides in after the arrival; a dark variant over night surfaces. */
.subnav { position: fixed; top: 0; left: 0; right: 0; z-index: 40; height: 52px; background: rgba(245,245,247,.64); -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid rgba(0,0,0,.08); transform: translateY(-100%); transition: transform .4s cubic-bezier(.2,.7,.2,1); --n: 0; background: color-mix(in srgb, rgba(22,22,23,.64) calc(var(--n) * 100%), rgba(245,245,247,.64)); border-bottom-color: color-mix(in srgb, rgba(255,255,255,.08) calc(var(--n) * 100%), rgba(0,0,0,.08)); }   /* --n (0 day, 1 night) follows the section under the bar frame by frame, so the bar darkens exactly with the page */
.subnav.is-shown { transform: none; }
.subnav__inner { max-width: 61.25rem; height: 100%; margin: 0 auto; padding: 0 var(--gutter); display: flex; align-items: center; gap: 24px; }
.subnav__name { margin-right: auto; font-family: var(--display); font-size: 21px; font-weight: 600; line-height: 1.19; letter-spacing: .231px; color: var(--ink); text-decoration: none; }   /* tagline */
.subnav__links { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; }
.subnav__links a { font-family: var(--text); font-size: 12px; line-height: 1; letter-spacing: -0.12px; color: var(--ink-2); text-decoration: none; }   /* nav-link */
.subnav__links a:hover { color: var(--accent-text); }
.subnav__cta { font-family: var(--text); font-size: 12px; line-height: 1; letter-spacing: -0.12px; color: #fff; background: var(--accent); border-radius: 9999px; padding: 6px 12px; text-decoration: none; transition: background-color .15s ease-out; }
.subnav__cta:hover { background: #B37D50; }
.subnav a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.subnav .subnav__name { color: color-mix(in srgb, var(--on-night) calc(var(--n) * 100%), var(--ink)); }
.subnav .subnav__links a { color: color-mix(in srgb, var(--on-night-2) calc(var(--n) * 100%), var(--ink-2)); }
.subnav.is-dark .subnav__links a:hover { color: var(--accent-night); }
@media (max-width: 560px) { .subnav__links { display: none; } .subnav__name { font-size: 17px; } }
@media (prefers-reduced-motion: reduce) { .subnav { transition: none; } }
html { scroll-padding-top: 52px; }

/* reveal (triggered, time based) */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease-out, transform .6s ease-out; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { transition: opacity .3s ease-out; transform: none; } }

/* 00 Arrival: wordmark first, the box covers, lands frontal, the product name returns above it */
.s00 { height: 476vh; position: relative; }   /* the clip over 361vh of scroll, then a short hold under the title */
.s00__stage { position: sticky; top: 0; height: 100dvh; background: var(--canvas); overflow: hidden; }
/* The frame always covers the viewport, whatever its shape. Tall windows crop the sides of the frame
   (a phone shows the middle of the landed box); there is never a band of page above or below the video. */
.s00__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; background: var(--canvas); }
/* first screen: the five moon phases of the box's skirt in rose copper, the wordmark large, and the hairline that doubles as the scroll cue */
.s00__intro { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(1.4rem, 3.5vh, 2.4rem); z-index: 2; pointer-events: none; opacity: 0; }   /* hidden until the clip is in memory; then its opacity follows the scroll (the box covers it) */
/* loading: a single moon, rose copper, waxing from new to full as the bytes arrive; a faint rim shows the disc at zero */
.s00__load { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; z-index: 3; pointer-events: none; color: var(--accent); transition: opacity .45s ease-out; }
.s00__load.is-done { opacity: 0; }
.load__moon { width: 28px; height: 28px; display: block; }
.load__rim { fill: none; stroke: currentColor; stroke-opacity: .28; stroke-width: .75; }
.load__disc { fill: currentColor; }
.load__label { font-size: 12px; line-height: 1; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3); padding-left: .22em; }
.clip-wait { position: absolute; left: 0; right: 0; bottom: 16vh; display: flex; flex-direction: column; align-items: center; gap: 14px; z-index: 4; pointer-events: none; color: var(--accent); opacity: 0; transition: opacity .45s ease-out; }   /* a later clip still downloading when its section is on screen (main.js) */
.clip-wait.is-on { opacity: 1; }
.wordmark--lg { font-family: var(--display); font-weight: 600; font-size: clamp(1.75rem, 3.6vw, 3.25rem); line-height: 1; letter-spacing: .08em; padding-left: .08em; }   /* the display cut of the headlines, at a lighter scale with open capitals tracking; the trailing tracking is balanced by the padding */
.phases { width: clamp(96px, 8.4vw, 124px); height: auto; color: var(--accent); display: block; margin-bottom: clamp(2.2rem, 5vh, 3rem); }   /* disc about 20px across, set well clear of the wordmark, as on the box */
.phases > * { fill: currentColor; opacity: 0; }
.s00__intro.is-ready .phases > * { animation: moon .7s ease-out forwards; animation-delay: calc(var(--i) * 110ms + .2s); }   /* the row draws in once the first screen appears, left to right */
.phases > :nth-child(1) { --i: 0; } .phases > :nth-child(2) { --i: 1; } .phases > :nth-child(3) { --i: 2; } .phases > :nth-child(4) { --i: 3; } .phases > :nth-child(5) { --i: 4; }
@keyframes moon { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .s00__intro.is-ready .phases > * { animation: none; opacity: 1; } }
/* scroll cue: the hairline under the wordmark. A darker segment draws down the line from the top, then releases from the top
   and drains out at the bottom, over and over: the direction of the scroll, with nothing added to the composition. */
.intro__rule { position: relative; width: 1px; height: clamp(40px, 7vh, 64px); background: var(--hairline); }
/* While the clip downloads the same segment is the progress: it fills from the top with the bytes (--load, set by
   the script). Once the page unlocks the loop takes over from the full state (negative delay) and drains it. */
.intro__rule::after { content: ""; position: absolute; inset: 0; background: var(--ink-3); transform: scaleY(var(--load, 0)); transform-origin: top; transition: transform .25s linear; }
.s00__intro.is-ready .intro__rule::after { animation: rule 2.6s cubic-bezier(.45, 0, .2, 1) -1.2s infinite; transition: none; }
html.is-locked { overflow: hidden; }   /* the page holds at the arrival until the clip is in memory */
@keyframes rule { 0% { transform: scaleY(0); transform-origin: top; } 46% { transform: scaleY(1); transform-origin: top; } 54% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (prefers-reduced-motion: reduce) { .s00__intro.is-ready .intro__rule::after { animation: none; transform: scaleY(0); } }
/* after the landing: wordmark and product name above the box, set as a tile headline */
.s00__title { position: absolute; left: 0; right: 0; top: 12vh; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 0 var(--gutter); z-index: 2; pointer-events: none; opacity: 0; will-change: transform, opacity; }   /* opacity and rise are driven by the scroll position, so they are reversible */
.s00__title .display { font-size: clamp(2.25rem, 5vw, 3.5rem); line-height: 1.07; letter-spacing: -.005em; max-width: 20ch; }   /* hero-display */

/* statements: one tile each, light then parchment; the surface change is the divider */
.statement { min-height: 100dvh; display: grid; place-items: center; padding: var(--section) var(--gutter); background: var(--canvas); }
.statement__inner { max-width: 61.25rem; width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.statement--alt { background: var(--canvas-alt); }
/* 03 Origin, in four steps of hierarchy: the eyebrow; the setup sentence as a quiet lead (it only leads the eye down);
   the word itself as the hero, the largest thing in the section; its pronunciation and part of speech as one caption
   line; and the definition as the payoff, set in display weight so it answers the hero. Spacing tightens from setup to
   hero and opens again before the definition. */
.origin { min-height: 100dvh; display: grid; place-items: center; padding: var(--section) var(--gutter); background: var(--canvas-alt); }
.origin__inner { width: 100%; max-width: 61.25rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
.origin__inner > .eyebrow { margin-bottom: 20px; }
.origin__line { max-width: 38ch; text-wrap: balance; font-family: var(--display); font-weight: 400; font-size: clamp(1.3125rem, 2.2vw, 1.75rem); line-height: 1.24; letter-spacing: .196px; color: var(--ink-2); }   /* lead: the setup, quieter than the word it introduces */
.origin__entry { margin: clamp(8px, 1.4vw, 18px) 0 0; width: min(100%, 48rem); display: flex; flex-direction: column; align-items: center; }
.origin__word { font-family: var(--display); font-weight: 600; font-size: clamp(3.75rem, 11vw, 8.5rem); line-height: 1.02; letter-spacing: -.025em; color: var(--ink); }   /* hero */
.origin__meta { margin: clamp(10px, 1.2vw, 16px) 0 0; display: flex; gap: 10px; align-items: baseline; font-family: var(--text); font-size: 17px; line-height: 1.29; letter-spacing: -0.224px; color: var(--ink-3); }   /* caption line */
.origin__ipa { font-family: var(--text); letter-spacing: 0; }
.origin__meta .origin__pos::before { content: "\00B7"; margin-right: 10px; }
.origin__pos { font-style: italic; }
.origin__def { margin: clamp(22px, 2.6vw, 34px) 0 0; font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 2.8vw, 2.125rem); line-height: 1.18; letter-spacing: -0.2px; color: var(--ink); text-wrap: balance; }   /* the payoff */

/* 02 The Unit: copy above, product below (still frames until the sequence is produced) */
.s02 { height: 924vh; position: relative; }   /* the unit takes more scroll than the hero: 10 s, the opening weighted */
.s02__stage { position: sticky; top: 0; height: 100dvh; background: var(--canvas); overflow: hidden; isolation: isolate; }
.s02__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; z-index: 1; mix-blend-mode: multiply; }   /* multiply: the clip's white is clear, so the landing line behind it shows and the syringes cross in front of it */
/* layout A: the product holds the centre (the middle third, so a phone's crop keeps both syringes); the words sit in
   the bands above and below and rise into place with the landing, driven by the scroll */
.s02__copy { position: absolute; left: 0; right: 0; padding: 0 var(--gutter); display: flex; flex-direction: column; align-items: center; text-align: center; z-index: 3; pointer-events: none; }
.s02__copy--behind { top: calc(50% - clamp(2.6rem, 5vw, 4.4rem)); gap: 12px; z-index: 0; }   /* behind the video, centred on the standing pair */
.s02__copy--behind .eyebrow { margin: 0; }
.s02__land { font-size: clamp(2.25rem, 5.5vw, 4.875rem); line-height: 1.05; letter-spacing: -0.015em; max-width: none; white-space: nowrap; }
.s02__copy--bottom { bottom: clamp(1.75rem, 6vh, 4rem); }
.s02__copy { opacity: 0; will-change: transform, opacity; }
.s02__intro { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 var(--gutter); z-index: 3; pointer-events: none; }   /* over the video: the band of the arriving box passes exactly behind it (band centre = frame centre); it fades as the box opens */
.s02__intro { --band: 0.0231; transform: translateY(calc(var(--band) * max(56.25vw, 100dvh))); }   /* the band's centre sits 2.31% of the clip height below frame centre; the clip is cover-scaled, so its height is max(width·9/16, stage height) */
.s02__intro .display { line-height: 1; margin: 0; text-box: trim-both cap alphabetic; }   /* centre the capitals, not the line box: the letters sit optically in the middle of the band */
/* under the line: the section label below it, covered (faded) as the box's wall passes */
.s02__under { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.s02__under-line { position: absolute; left: 0; right: 0; top: calc(50% + clamp(2.5rem, 5.5vw, 4.25rem)); margin: 0 auto; padding: 0 var(--gutter); text-align: center; max-width: none; }   /* sits under "PDRN + HA." like the statement did */
/* the facts: a caption over a large figure, faded in and out by clip time in main.js */
.s02__beat { position: absolute; left: 0; right: 0; padding: 0 var(--gutter); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; z-index: 3; pointer-events: none; opacity: 0; will-change: transform, opacity; }
.s02__beat--low { top: 66%; }
.s02__beat--mid { top: calc(50% - clamp(2.4rem, 4.2vw, 3.4rem)); }   /* centred between the two syringes as they part */
.s02__beat-cap { font-family: var(--text); font-weight: 600; font-size: 14px; line-height: 1.29; letter-spacing: -0.224px; color: var(--ink-3); }
.s02__beat-num { font-family: var(--display); font-weight: 600; font-size: clamp(2.75rem, 6.4vw, 5rem); line-height: 1; letter-spacing: -0.015em; color: var(--ink); font-variant-numeric: tabular-nums; }
.s02__copy .display { max-width: 22ch; }


/* 05 Actives: a utility list, hairline rows */
/* 05 Actives: headline + tiles. Tiles are the one filled surface in the section (parchment on white, 18px radius, no
   shadow); inside each, the benefit sits as a caption at the top and the name carries the tile at the bottom. The key
   pair fills the first row at twice the height and size of the three below. */
.s05 { padding: var(--section) var(--gutter); background: var(--canvas); }
.s05__inner { max-width: 71.25rem; margin: 0 auto; }
.s05__inner > .eyebrow { text-align: center; margin-bottom: 12px; }
.s05__title { text-align: center; font-size: clamp(2.25rem, 4.6vw, 3.75rem); line-height: 1.06; letter-spacing: -.015em; margin: 0 auto clamp(32px, 4.5vw, 56px); }
.tiles { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(12px, 1.4vw, 20px); }
.tile { grid-column: span 2; min-height: clamp(9rem, 13vw, 11.5rem); padding: clamp(22px, 2.6vw, 36px); border-radius: 18px; background: var(--canvas-alt); display: flex; flex-direction: column; }
.tile--key { grid-column: span 3; min-height: clamp(12.5rem, 21vw, 17rem); }   /* short enough that the headline and both rows sit in one view */
.tile__role { font-family: var(--text); font-weight: 600; font-size: 14px; line-height: 1.29; letter-spacing: -0.224px; color: var(--ink-3); }
.tile__name { margin-top: auto; font-family: var(--display); font-weight: 600; font-size: clamp(1.625rem, 2.6vw, 2.25rem); line-height: 1.08; letter-spacing: -.01em; color: var(--ink); text-wrap: balance; }
.tile--key .tile__name { font-size: clamp(2.25rem, 4.6vw, 4.25rem); line-height: 1.02; letter-spacing: -.025em; }
.tile__note { margin-top: 8px; font-family: var(--text); font-size: 14px; line-height: 1.43; letter-spacing: -0.224px; color: var(--ink-3); }
.tile--key .tile__role { color: var(--accent-text); }   /* the product's two: their benefit carries the one accent */
@media (max-width: 820px) { .tiles { grid-template-columns: repeat(2, 1fr); } .tile, .tile--key { grid-column: span 2; } .tile:not(.tile--key) { grid-column: span 1; } .tile:last-child { grid-column: span 2; } }
@media (max-width: 520px) { .tile, .tile:not(.tile--key), .tile:last-child { grid-column: span 2; min-height: 9rem; } .tile--key { min-height: 13rem; } }

/* 06 Phase: the moon fills, then the page turns to night */
.s06 { height: 324vh; position: relative; }   /* 224vh of scroll: moon 124vh, night 40vh, hold 60vh (main.js) */
.s06__stage { position: sticky; top: 0; height: 100dvh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(1.4rem, 4vh, 2.6rem); padding: 0 var(--gutter); background: var(--canvas); color: var(--ink); text-align: center; overflow: hidden; }
.moon { width: clamp(140px, 24vmin, 260px); height: auto; }
.moon__rim { fill: none; stroke: var(--hairline); stroke-width: .8; }
.moon__disc { fill: var(--accent); }
.moon { transform: translateY(-7vh); }   /* moon and lines sit a little above centre, as one group */
.s06__line { opacity: 0; transform: translateY(10px); will-change: opacity, transform; position: absolute; left: var(--gutter); right: var(--gutter); top: calc(50% - 7vh + clamp(70px, 12vmin, 130px) + clamp(2rem, 6vh, 3.5rem)); margin: 0 auto; }   /* both lines hang from the same top edge just under the moon, so one-line and two-line copy start at the same height */
/* both lines are driven by main.js from the scroll, on the same beat as the night (no timed transitions to lag behind it) */
/* night is driven by the scroll position, not by a timed transition: --n goes 0 -> 1 over a short band of scroll right
   after the moon is full, so fast scrolling, reversing or leaving mid-change can never leave the stage in a stale colour */
.s06 { --n: 0; }
.s06__stage { background: color-mix(in srgb, var(--night) calc(var(--n) * 100%), var(--canvas)); color: color-mix(in srgb, var(--on-night) calc(var(--n) * 100%), var(--ink)); }
.moon__rim { stroke: color-mix(in srgb, rgba(255,255,255,.18) calc(var(--n) * 100%), var(--hairline)); }
.moon__disc { fill: color-mix(in srgb, var(--accent-night) calc(var(--n) * 100%), var(--accent)); }

/* 07 Campaign film: the one dark section. One film is shown as a feature, poster beside its title; from two films on,
   the same list becomes a rail of posters (data-count is set by main.js). */
.s07 { background: var(--night); color: var(--on-night); padding: var(--section) 0; }
.s07__inner { display: flex; flex-direction: column; gap: 28px; }
.s07__inner > .eyebrow { margin: 0 var(--gutter); }
.rail { list-style: none; margin: 0; padding: 0 var(--gutter); display: flex; gap: clamp(16px, 2.2vw, 28px); overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.rail::-webkit-scrollbar { display: none; }
.rail__item { flex: 0 0 auto; width: clamp(180px, 22vw, 280px); scroll-snap-align: start; }
.card { position: relative; display: block; width: 100%; aspect-ratio: 9 / 16; padding: 0; border: 0; border-radius: 8px; overflow: hidden; background: #0a0a0a; cursor: pointer; transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease-out; }
.card__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.card__play { position: absolute; left: 50%; top: 50%; width: 56px; height: 56px; margin: -28px 0 0 -28px; border-radius: 50%; border: 1px solid rgba(255,255,255,.75); background: rgba(0,0,0,.28); backdrop-filter: blur(6px); opacity: 0; transition: opacity .25s ease-out; }
.card__play::after { content: ""; position: absolute; left: 22px; top: 18px; border-style: solid; border-width: 10px 0 10px 16px; border-color: transparent transparent transparent #fff; }
.card:hover .card__poster, .card:focus-visible .card__poster { transform: scale(1.02); }   /* no lift, no shadow: DESIGN-apple keeps shadow for products only */
.card:hover .card__play, .card:focus-visible .card__play { opacity: 1; }
.card:focus-visible { outline: 2px solid var(--on-night); outline-offset: 4px; }
.card__text { margin-top: 12px; }
.card__kicker { display: none; }
.card__title { margin: 0; color: var(--on-night); font-family: var(--text); font-weight: 600; font-size: 17px; line-height: 1.29; letter-spacing: -0.374px; }   /* on the rail: body-strong */
.card__line { display: none; }
.card__meta { margin: 2px 0 0; font-family: var(--text); font-size: 14px; line-height: 1.43; letter-spacing: -0.224px; color: var(--on-night-2); }
.card__watch { display: none; }
@media (prefers-reduced-motion: reduce) { .card__poster { transition: none; } }
/* the feature: a single film. Key art on the left, a quiet Apple-tile stack on the right:
   caption-strong kicker, display-lg title, lead tagline, caption meta, one pill. */
.s07[data-count="1"] .s07__inner > .eyebrow { display: none; }
.s07[data-count="1"] .rail { overflow: visible; justify-content: center; }
.s07[data-count="1"] .rail__item { width: min(100%, 60rem); display: grid; grid-template-columns: clamp(220px, 28vw, 340px) 1fr; column-gap: clamp(32px, 6vw, 88px); align-items: center; }
.s07[data-count="1"] .card { border-radius: 12px; }
.s07[data-count="1"] .card__text { margin: 0; display: flex; flex-direction: column; align-items: flex-start; }
.s07[data-count="1"] .card__kicker { display: block; margin: 0 0 10px; font-family: var(--text); font-weight: 600; font-size: 14px; line-height: 1.29; letter-spacing: -0.224px; color: var(--on-night-2); }
.s07[data-count="1"] .card__title { font-family: var(--display); font-weight: 600; font-size: clamp(1.75rem, 3.4vw, 2.5rem); line-height: 1.1; letter-spacing: 0; }   /* display-lg */
.s07[data-count="1"] .card__line { display: block; margin: 10px 0 0; font-family: var(--display); font-weight: 400; font-size: clamp(1.25rem, 2.2vw, 1.75rem); line-height: 1.14; letter-spacing: .196px; color: var(--on-night); }   /* lead */
.s07[data-count="1"] .card__meta { margin-top: 12px; }
/* the one action: a white capsule, as a film page plays; body type, 11 x 22, pill, press scale */
.s07[data-count="1"] .card__watch { display: inline-flex; align-items: center; gap: 9px; margin-top: 28px; padding: 11px 22px 11px 18px; min-height: 44px; border: 0; border-radius: 9999px; background: var(--on-night); color: var(--ink); font-family: var(--text); font-size: 17px; font-weight: 400; line-height: 1; letter-spacing: -0.374px; cursor: pointer; transition: background-color .15s ease-out, transform .12s ease-out; }
.s07[data-count="1"] .card__watch:hover { background: #E8E8ED; }
.s07[data-count="1"] .card__watch:active { transform: scale(.95); }
.s07[data-count="1"] .card__watch:focus-visible { outline: 2px solid var(--on-night); outline-offset: 3px; }
.card__watch-glyph { width: 0; height: 0; border-style: solid; border-width: 6px 0 6px 10px; border-color: transparent transparent transparent currentColor; }
@media (max-width: 640px) {
  .s07[data-count="1"] .rail__item { grid-template-columns: 1fr; row-gap: 28px; justify-items: center; text-align: center; }
  .s07[data-count="1"] .card { width: min(72vw, 320px); }
  .s07[data-count="1"] .card__text { align-items: center; }
}
/* the theatre: the page darkens, the film plays centred at its own ratio */
.theatre[hidden] { display: none; }
.theatre { position: fixed; inset: 0; z-index: 50; background: rgba(0,0,0,.94); display: flex; align-items: center; justify-content: center; padding: clamp(16px, 4vw, 48px); }
.theatre__stage { width: min(100%, calc((100vh - 2 * clamp(16px, 4vw, 48px)) * 16 / 9)); aspect-ratio: 16 / 9; background: #000; }
.theatre__video { width: 100%; height: 100%; display: block; background: #000; }
.theatre__close { position: absolute; top: 18px; right: max(18px, env(safe-area-inset-right)); height: 36px; padding: 0 14px; border: 1px solid rgba(255,255,255,.5); border-radius: 18px; background: transparent; color: #fff; font-family: var(--text); font-size: 14px; letter-spacing: -0.224px; cursor: pointer; }
.theatre__close:hover { border-color: #fff; }
.theatre__close:focus-visible { outline: 2px solid var(--accent-night); outline-offset: 3px; }

/* 08 Contact: parchment tile. A centred head (eyebrow, display-lg, lead), then the form as one white utility card
   (18px radius, hairline, no shadow) with parchment-filled fields, and the one pill action. Then a quiet footer. */
.s08 { background: var(--canvas-alt); padding: calc(var(--section) * 1.5) var(--gutter) 0; }
.s08__inner { max-width: 44rem; margin: 0 auto; display: flex; flex-direction: column; }
.s08__head { display: flex; flex-direction: column; align-items: center; text-align: center; }
.s08__head .eyebrow { margin-bottom: 12px; }
.s08__title { font-size: clamp(1.75rem, 3.4vw, 2.5rem); line-height: 1.1; max-width: 20ch; }
.s08__lead { margin-top: 12px; color: var(--ink-2); max-width: none; }
.s08__lead span { display: block; }   /* one sentence per line */
.form { margin-top: clamp(32px, 4vw, 48px); background: var(--canvas); border: 1px solid rgba(0,0,0,.06); border-radius: 18px; padding: clamp(24px, 3.4vw, 40px); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field span { font-family: var(--text); font-size: 14px; font-weight: 600; line-height: 1.29; letter-spacing: -0.224px; color: var(--ink-2); }
.field input, .field textarea { font: inherit; letter-spacing: inherit; color: var(--ink); background: var(--canvas-alt); border: 1px solid transparent; border-radius: 11px; padding: 11px 14px; min-height: 44px; width: 100%; transition: border-color .15s ease-out, background-color .15s ease-out; }
.field textarea { resize: vertical; min-height: 7rem; }
.field input:focus, .field textarea:focus { outline: none; background: var(--canvas); border-color: var(--accent); box-shadow: 0 0 0 3px rgba(192,138,92,.22); }
@media (max-width: 640px) { .form__grid { grid-template-columns: 1fr; } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form__foot { margin-top: 24px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.button { font-family: var(--text); font-size: 17px; line-height: 1; letter-spacing: -0.374px; color: #fff; background: var(--accent); border: 0; border-radius: 9999px; padding: 11px 22px; min-height: 44px; cursor: pointer; transition: transform .12s ease-out, background-color .15s ease-out; }
.button:hover { background: #B37D50; }
.button:active { transform: scale(.95); }
.button:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 3px; }
.form__status { font-size: 14px; line-height: 1.43; letter-spacing: -0.224px; color: var(--ink-2); }
.form__status:empty { display: none; }
.footer { max-width: 61.25rem; margin: clamp(64px, 8vw, 96px) auto 0; padding: 20px 0 28px; border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer__fine { font-size: 12px; line-height: 1.33; letter-spacing: -0.12px; color: var(--ink-3); }

@media (max-width: 640px) { .s02__land { white-space: normal; font-size: clamp(2.25rem, 10vw, 3rem); } }

/* 04 Renewal: the video is only a frame source; the canvas paints the colour frame, then the running type with the
   subject cut out of it using the matte half of the same frame */
.s04 { height: 520vh; position: relative; }
.s04__stage { position: sticky; top: 0; height: 100dvh; background: var(--canvas); overflow: hidden; }
.s04__video { position: absolute; width: 2px; height: 2px; opacity: 0; pointer-events: none; }
.s04__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 1; }
.s04__foot { position: absolute; left: 0; right: 0; bottom: clamp(1.75rem, 6vh, 4rem); z-index: 3; text-align: center; padding: 0 var(--gutter); opacity: 0; }
.s04__foot .lead { color: var(--ink); margin: 0 auto; max-width: none; white-space: nowrap; }
@media (max-width: 560px) { .s04__foot .lead { white-space: normal; text-wrap: balance; } }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
