/* ==========================================================================
   SkitalWebDesign — styles.css
   Design tokens first, then base, layout, components, pages, motion.
   ========================================================================== */

/* ---------- 0. Fonts (self-hosted Google Fonts, latin subset) ----------- */
@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 300 600; font-display: swap; src: url("/assets/fonts/fraunces-roman.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Fraunces"; font-style: italic; font-weight: 300 600; font-display: swap; src: url("/assets/fonts/fraunces-italic.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400 600; font-display: swap; src: url("/assets/fonts/inter.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  color-scheme: light;
  --bg: #F6F1E9;
  --bg-2: #EFE8DD;
  --surface: #FFFCF7;
  --surface-2: #F9F5EE;
  --text: #171412;
  --text-2: #5F5851;
  --line: #E3DBCF;
  --line-2: #D3C9BA;
  --accent: #C63D18;
  --accent-ink: #FFFFFF;
  --accent-soft: rgba(198, 61, 24, .10);
  --ink: #171412;
  --ink-text: #F6F1E9;
  --band: #171412;
  --band-text: #F6F1E9;
  --band-muted: #B9B0A5;
  --band-line: #33302B;
  --form-line: #E3DBCF;
  --form-muted: #5F5851;
  --shadow: 0 1px 2px rgba(23, 20, 18, .06), 0 12px 40px -12px rgba(23, 20, 18, .18);
  --shadow-lg: 0 2px 4px rgba(23, 20, 18, .06), 0 30px 80px -20px rgba(23, 20, 18, .28);
  --frame-bar: #ECE5DA;
  --frame-body: #E4DCD0;

  --font-display: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --step-hero: clamp(2.6rem, 1.4rem + 4.6vw, 5.6rem);
  --step-1: clamp(2.2rem, 1.4rem + 3.4vw, 4.4rem);
  --step-2: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
  --step-3: clamp(1.2rem, 1.1rem + .5vw, 1.4rem);
  --body: 1.0625rem;
  --lead: clamp(1.125rem, 1rem + .5vw, 1.375rem);
  --small: .9375rem;
  --eyebrow: .8125rem;

  --container: 80rem;
  --gutter: clamp(1rem, 4vw, 3rem);
  --section: clamp(4.5rem, 10vw, 9rem);
  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .45s;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #141210;
  --bg-2: #1A1714;
  --surface: #1D1A17;
  --surface-2: #232019;
  --text: #F3EEE6;
  --text-2: #A89F95;
  --line: #2E2A25;
  --line-2: #3B362F;
  --accent: #FF7A4D;
  --accent-ink: #171412;
  --accent-soft: rgba(255, 122, 77, .14);
  --ink: #F3EEE6;
  --ink-text: #171412;
  --band: #0D0C0A;
  --band-text: #F3EEE6;
  --band-muted: #A89F95;
  --band-line: #2A2622;
  --form-line: #2E2A25;
  --form-muted: #A89F95;
  --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 12px 40px -12px rgba(0, 0, 0, .6);
  --shadow-lg: 0 2px 4px rgba(0, 0, 0, .3), 0 30px 80px -20px rgba(0, 0, 0, .7);
  --frame-bar: #2A2620;
  --frame-body: #332E28;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #141210;
    --bg-2: #1A1714;
    --surface: #1D1A17;
    --surface-2: #232019;
    --text: #F3EEE6;
    --text-2: #A89F95;
    --line: #2E2A25;
    --line-2: #3B362F;
    --accent: #FF7A4D;
    --accent-ink: #171412;
    --accent-soft: rgba(255, 122, 77, .14);
    --ink: #F3EEE6;
    --ink-text: #171412;
    --band: #0D0C0A;
    --band-text: #F3EEE6;
    --band-muted: #A89F95;
    --band-line: #2A2622;
    --form-line: #2E2A25;
    --form-muted: #A89F95;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 12px 40px -12px rgba(0, 0, 0, .6);
    --shadow-lg: 0 2px 4px rgba(0, 0, 0, .3), 0 30px 80px -20px rgba(0, 0, 0, .7);
    --frame-bar: #2A2620;
    --frame-body: #332E28;
  }
}

/* ---------- 2. Base ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.05; letter-spacing: -.015em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
ul[role="list"], ol[role="list"] { list-style: none; }
strong { font-weight: 600; }
::selection { background: var(--accent); color: var(--accent-ink); }

:focus { outline: none; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  padding: .75rem 1rem; background: var(--ink); color: var(--ink-text);
  border-radius: 8px; font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 1rem; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 3. Type ------------------------------------------------------ */
.display, .h1, .h2 { font-family: var(--font-display); font-variation-settings: "opsz" 144; }
.h1 { font-size: var(--step-hero); font-weight: 400; line-height: .98; letter-spacing: -.03em; text-wrap: balance; }
.h2 { font-size: var(--step-1); font-weight: 400; line-height: 1.02; letter-spacing: -.025em; text-wrap: balance; }
.h3 { font-family: var(--font-display); font-size: var(--step-2); font-weight: 500; letter-spacing: -.015em; line-height: 1.15; }
.h4 { font-size: var(--step-3); font-weight: 600; letter-spacing: -.01em; }
.lead { font-size: var(--lead); line-height: 1.5; color: var(--text-2); text-wrap: pretty; max-width: 36ch; }
.muted { color: var(--text-2); }
.small { font-size: var(--small); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: var(--eyebrow); font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-2);
}
.eyebrow::before { content: ""; width: 1.5rem; height: 2px; background: var(--accent); border-radius: 1px; }
.accent { color: var(--accent); }
em.it { font-style: italic; font-variation-settings: "opsz" 144; }
.placeholder { background: var(--accent-soft); color: var(--text); box-shadow: inset 0 0 0 1px var(--accent); border-radius: 4px; padding: 0 .3em; font-weight: 500; }

/* ---------- 4. Layout ---------------------------------------------------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: calc(var(--section) * .6); }
.section-head { display: grid; gap: 1.25rem; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); max-width: 52rem; }
.section-head .lead { max-width: 44ch; }
.section-head--split { max-width: none; grid-template-columns: 1fr; align-items: end; }
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
  .section-head--split .lead { justify-self: end; margin-bottom: .4rem; }
}
.grid-12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); }
.rule { border: 0; height: 1px; background: var(--line); margin: 0; }
.ink { background: var(--band); color: var(--band-text); --line: var(--band-line); --text-2: var(--band-muted); }
.ink .muted, .ink .lead, .ink .eyebrow { color: var(--band-muted); }

/* ---------- 5. Buttons --------------------------------------------------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: var(--ink-text);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 600; font-size: 1rem; line-height: 1; text-decoration: none; cursor: pointer;
  overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease-out), background-color .3s, color .3s, border-color .3s, box-shadow .3s;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: var(--accent); transform: translateY(101%); transition: transform .45s var(--ease-out);
}
.btn:hover { color: var(--accent-ink); transform: translateY(-2px); }
.btn:hover::after { transform: translateY(0); }
.btn:active { transform: translateY(0); }
.btn--primary { --btn-bg: var(--accent); --btn-fg: var(--accent-ink); }
.btn--primary::after { background: var(--ink); }
.btn--primary:hover { color: var(--ink-text); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { border-color: transparent; }
.btn--sm { padding: .7rem 1.1rem; font-size: .9375rem; }
.btn--lg { padding: 1.15rem 1.9rem; font-size: 1.0625rem; }
.btn .arrow { width: 1.05em; height: 1.05em; transition: transform .35s var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }
.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; text-decoration: none;
  padding-bottom: .15rem; background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1.5px;
  transition: background-size .4s var(--ease-out);
}
.link-arrow:hover, .link-arrow:focus-visible { background-size: 100% 1.5px; }
.link-arrow svg { width: 1em; height: 1em; transition: transform .35s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 6. Header ---------------------------------------------------- */
.progress { position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 60; pointer-events: none; }
.progress__bar { display: block; height: 100%; width: 100%; background: var(--accent); transform-origin: 0 50%; transform: scaleX(var(--p, 0)); }

.header {
  position: sticky; top: 0; z-index: 50;
  transition: background-color .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: saturate(160%) blur(14px); backdrop-filter: saturate(160%) blur(14px);
  border-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.75rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; font-weight: 600; letter-spacing: -.01em; }
.brand__mark { width: 2rem; height: 2rem; flex: none; }
.brand__name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; font-variation-settings: "opsz" 24; letter-spacing: -.02em; }
.brand__name em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 24; }

.nav { display: flex; align-items: center; gap: 1.25rem; }
.nav__list { display: none; align-items: center; gap: .25rem; }
.nav__link {
  display: inline-block; padding: .55rem .8rem; border-radius: 999px; text-decoration: none; font-weight: 500; font-size: .9375rem;
  color: var(--text-2); transition: color .25s, background-color .25s;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--text); background: var(--accent-soft); }
.nav__cta { display: none; }
@media (min-width: 900px) {
  .nav__list { display: flex; }
  .nav__cta { display: inline-flex; }
}

.theme-toggle {
  display: inline-grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 999px;
  border: 1.5px solid var(--line-2); background: transparent; cursor: pointer;
  transition: border-color .3s, background-color .3s, transform .3s var(--ease-out);
}
.theme-toggle:hover { border-color: var(--text); transform: rotate(15deg); }
.theme-toggle svg { width: 1.15rem; height: 1.15rem; }
.theme-toggle .moon, [data-theme="dark"] .theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .sun { display: none; }
  :root:not([data-theme="light"]) .theme-toggle .moon { display: block; }
}

.nav__burger {
  display: inline-grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 999px;
  border: 1.5px solid var(--line-2); background: transparent; cursor: pointer;
}
.nav__burger span { display: block; width: 1.1rem; height: 2px; background: currentColor; border-radius: 2px; transition: transform .35s var(--ease-out), opacity .2s; }
.nav__burger span + span { margin-top: 5px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 45; background: var(--bg); padding: 6.5rem var(--gutter) 2rem;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateY(-2%); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s var(--ease), transform .45s var(--ease-out), visibility 0s .4s;
}
.menu.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition-delay: 0s; }
.menu__list { display: grid; gap: .25rem; }
.menu__link { font-family: var(--font-display); font-size: clamp(2.4rem, 9vw, 3.6rem); text-decoration: none; padding: .35rem 0; line-height: 1.05; letter-spacing: -.02em; display: block; }
.menu__link:hover { color: var(--accent); }
.menu__foot { display: grid; gap: .5rem; color: var(--text-2); font-size: var(--small); }
.menu__foot a { color: var(--text); }
body.menu-open { overflow: hidden; }
@media (min-width: 900px) { .menu { display: none; } .nav__burger { display: none; } }

/* ---------- 7. Hero ------------------------------------------------------ */
.hero { position: relative; padding-block: clamp(2.5rem, 6vw, 5.5rem) clamp(3rem, 6vw, 6rem); overflow: clip; }
.hero__inner { display: grid; gap: 3rem; align-items: center; }
.hero__copy { display: grid; gap: 1.6rem; max-width: 40rem; }
.hero__title .w { display: inline-block; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem 1.25rem; align-items: center; margin-top: .4rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; color: var(--text-2); font-size: var(--small); }
.hero__meta span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.gallery { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.6rem, 1.6vw, 1.25rem); height: clamp(22rem, 50vw, 38rem); align-items: start; }
.gallery::after { content: ""; position: absolute; inset: auto 0 0 0; height: 30%; background: linear-gradient(to top, var(--bg), transparent); pointer-events: none; }
.gallery__col { display: grid; gap: clamp(.6rem, 1.6vw, 1.25rem); will-change: transform; }
.gallery__col:nth-child(1) { margin-top: 2.5rem; }
.gallery__col:nth-child(2) { margin-top: -1rem; }
.gallery__col:nth-child(3) { margin-top: 5rem; }
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 4rem; }
  .gallery { height: clamp(30rem, 44vw, 42rem); }
}

/* Browser + phone frames ------------------------------------------------- */
.frame {
  --shift: -65%;
  position: relative; border-radius: 12px; background: var(--frame-body);
  box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--line);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
}
.frame__bar { display: flex; align-items: center; gap: .35rem; height: 1.6rem; padding: 0 .6rem; background: var(--frame-bar); border-bottom: 1px solid var(--line); }
.frame__bar i { width: .45rem; height: .45rem; border-radius: 50%; background: var(--line-2); }
.frame__bar b { flex: 1; height: .55rem; margin-left: .45rem; border-radius: 999px; background: var(--line); max-width: 55%; }
.frame__view { position: relative; overflow: hidden; aspect-ratio: 16 / 11; background: var(--frame-body); }
.frame__view img { width: 100%; height: auto; will-change: transform; }
.frame--phone { --shift: -22%; border-radius: 22px; padding: .45rem; background: var(--ink); border-color: transparent; }
.frame--phone .frame__view { aspect-ratio: 9 / 19.5; border-radius: 16px; }
.frame--phone::before { content: ""; position: absolute; top: .8rem; left: 50%; width: 30%; height: .38rem; border-radius: 999px; background: var(--ink); transform: translateX(-50%); z-index: 2; }
.frame--auto .frame__view img { animation: shot 26s ease-in-out infinite; }
.frame--auto:nth-child(even) .frame__view img { animation-delay: -9s; }
.frame--auto.frame--phone .frame__view img { animation-duration: 20s; animation-delay: -4s; }
.frame--hover .frame__view img { transition: transform 5s linear; }
.frame--hover:hover .frame__view img, .frame--hover:focus-within .frame__view img { transform: translateY(var(--shift)); }
@keyframes shot {
  0%, 8% { transform: translateY(0); }
  46%, 54% { transform: translateY(var(--shift)); }
  92%, 100% { transform: translateY(0); }
}

/* ---------- 8. Marquee --------------------------------------------------- */
.marquee { border-block: 1px solid var(--line); padding-block: 1rem; overflow: hidden; }
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__list { display: flex; gap: 2.5rem; padding-right: 2.5rem; white-space: nowrap; font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--text-2); }
.marquee__list li { display: inline-flex; align-items: center; gap: 2.5rem; }
.marquee__list li::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 9. Promise strip --------------------------------------------- */
.promise { display: grid; gap: 1.5rem; }
.promise__item { display: grid; grid-template-columns: auto 1fr; gap: 1rem 1.25rem; align-items: start; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.promise__num { font-family: var(--font-display); font-size: 1.1rem; color: var(--accent); font-variation-settings: "opsz" 24; padding-top: .15rem; }
.promise__item h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: .35rem; }
.promise__item p { color: var(--text-2); max-width: 36ch; text-wrap: pretty; }
@media (min-width: 768px) { .promise { grid-template-columns: repeat(3, 1fr); gap: var(--gutter); } .promise__item:nth-child(2) { margin-top: 2rem; } .promise__item:nth-child(3) { margin-top: 4rem; } }

/* ---------- 10. Work ----------------------------------------------------- */
.work__list { display: grid; gap: clamp(4rem, 9vw, 8rem); }
.work__item { display: grid; gap: 1.75rem; align-items: center; }
.work__media { position: relative; }
.work__media .frame { transform: perspective(1200px) rotateX(0) rotateY(0); }
.work__media:hover .frame { box-shadow: var(--shadow-lg); }
.work__phone { position: absolute; width: 26%; max-width: 12rem; right: -3%; bottom: -8%; z-index: 2; }
.work__copy { display: grid; gap: 1rem; align-content: center; }
.work__copy .h3 { max-width: 20ch; }
.work__copy dl { display: grid; gap: .8rem; margin: .4rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line); }
.work__copy dt { font-size: var(--eyebrow); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; color: var(--text-2); margin-bottom: .15rem; }
.work__copy dd { margin: 0; text-wrap: pretty; }
.work__copy dd.placeholder { display: inline-block; }
.work__tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.work__tags li { font-size: .8125rem; padding: .3rem .7rem; border: 1px solid var(--line-2); border-radius: 999px; color: var(--text-2); }
@media (min-width: 900px) {
  .work__item { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); }
  .work__item--a .work__media { grid-column: 1 / 9; }
  .work__item--a .work__copy { grid-column: 9 / 13; }
  .work__item--b .work__copy { grid-column: 1 / 5; order: 0; }
  .work__item--b .work__media { grid-column: 5 / 13; }
  .work__item--c .work__media { grid-column: 2 / 8; }
  .work__item--c .work__copy { grid-column: 9 / 13; }
  .work__item--d .work__copy { grid-column: 1 / 5; }
  .work__item--d .work__media { grid-column: 6 / 12; }
  .work__item--e .work__media { grid-column: 1 / 8; }
  .work__item--e .work__copy { grid-column: 9 / 13; }
}
.work__note { margin-top: clamp(2.5rem, 6vw, 4rem); padding: 1.25rem 1.5rem; border: 1px dashed var(--line-2); border-radius: var(--radius); color: var(--text-2); font-size: var(--small); }

/* ---------- 11. Services ------------------------------------------------- */
.services { display: grid; gap: 0; border-top: 1px solid var(--line); }
.service { display: grid; grid-template-columns: auto 1fr; gap: 1rem 1.5rem; padding: 1.75rem 0; border-bottom: 1px solid var(--line); align-items: start; transition: padding-left .4s var(--ease-out); }
.service:hover { padding-left: .5rem; }
.service__num { font-family: var(--font-display); font-size: 1.05rem; color: var(--accent); padding-top: .5rem; min-width: 2.2rem; font-variation-settings: "opsz" 24; }
.service__body { display: grid; gap: .5rem; }
.service__body h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.2rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.12; }
.service__body p { color: var(--text-2); max-width: 46ch; text-wrap: pretty; }
.service__body ul { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .4rem; }
.service__body li { font-size: .8125rem; padding: .3rem .7rem; border: 1px solid var(--line-2); border-radius: 999px; color: var(--text-2); }
@media (min-width: 900px) {
  .services { grid-template-columns: repeat(2, 1fr); column-gap: var(--gutter); }
  .service:nth-child(odd) { padding-right: 1rem; }
}
.photo-note { margin-top: clamp(2.5rem, 6vw, 4rem); display: grid; gap: 1.5rem; padding: clamp(1.5rem, 4vw, 3rem); border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); }
.photo-note__img { aspect-ratio: 4 / 5; border-radius: var(--radius); background: var(--bg-2); border: 1px dashed var(--line-2); display: grid; place-items: center; color: var(--text-2); font-size: var(--small); text-align: center; padding: 1rem; }
.photo-note__body { display: grid; gap: 1rem; align-content: center; }
.photo-note__body p { color: var(--text-2); max-width: 50ch; text-wrap: pretty; }
@media (min-width: 768px) { .photo-note { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 3rem; } }

/* ---------- 12. Process -------------------------------------------------- */
.process { display: grid; gap: 3rem; }
.process__side { display: grid; gap: 1.25rem; align-content: start; }
.process__counter { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1; letter-spacing: -.03em; display: flex; align-items: baseline; gap: .5rem; }
.process__counter small { font-size: 1.1rem; color: var(--text-2); font-family: var(--font-body); letter-spacing: 0; }
.process__track { height: 3px; background: var(--line); border-radius: 2px; overflow: hidden; }
.process__track span { display: block; height: 100%; width: 100%; background: var(--accent); transform-origin: 0 50%; transform: scaleX(var(--p, 0)); transition: transform .6s var(--ease-out); }
.process__steps { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1rem 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); transition: opacity .4s; }
.step__num { font-family: var(--font-display); font-size: 1.1rem; color: var(--accent); padding-top: .35rem; font-variation-settings: "opsz" 24; }
.step__body { display: grid; gap: .6rem; }
.step__body h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.2rem); font-weight: 500; letter-spacing: -.02em; }
.step__body p { color: var(--text-2); max-width: 50ch; text-wrap: pretty; }
.step__body .small { color: var(--text-2); }
@media (min-width: 900px) {
  .process { grid-template-columns: 4fr 7fr; gap: var(--gutter); }
  .process__side { position: sticky; top: 7rem; }
  .step { opacity: .45; }
  .step.is-active, .no-js .step { opacity: 1; }
}

/* ---------- 13. Pricing -------------------------------------------------- */
.pricing { display: grid; grid-auto-flow: column; grid-auto-columns: min(82vw, 20rem); gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: .25rem var(--gutter) 1.5rem; margin-inline: calc(var(--gutter) * -1); scrollbar-width: thin; }
.pricing > * { scroll-snap-align: start; }
.swipe-hint { color: var(--text-2); font-size: var(--small); margin-bottom: .75rem; }
@media (min-width: 768px) { .swipe-hint { display: none; } }
.tier { display: grid; grid-template-rows: auto auto 1fr auto; gap: 1.25rem; padding: 1.6rem; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s; }
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.tier__head { display: grid; gap: .35rem; }
.tier__name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; letter-spacing: -.02em; }
.tier__for { color: var(--text-2); font-size: var(--small); }
.tier__price { font-family: var(--font-display); font-size: clamp(2.4rem, 3vw, 3rem); line-height: 1; letter-spacing: -.03em; display: flex; align-items: baseline; gap: .35rem; }
.tier__price small { font-size: .9rem; font-family: var(--font-body); color: var(--text-2); letter-spacing: 0; }
.tier__list { display: grid; gap: .55rem; font-size: var(--small); }
.tier__list li { display: grid; grid-template-columns: 1.1rem 1fr; gap: .6rem; align-items: start; }
.tier__list li::before { content: ""; width: 1.1rem; height: 1.1rem; margin-top: .15rem; border-radius: 50%; background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.5l3 3 6-6.5' fill='none' stroke='%23C63D18' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 70% no-repeat; }
[data-theme="dark"] .tier__list li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.5l3 3 6-6.5' fill='none' stroke='%23FF7A4D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .tier__list li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.5l3 3 6-6.5' fill='none' stroke='%23FF7A4D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); } }
.tier__list li.is-photo { font-weight: 600; }
.tier__badge { justify-self: start; font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .65rem; border-radius: 999px; background: var(--accent); color: var(--accent-ink); }
.tier--featured { border-color: var(--accent); }
.tier .btn { width: 100%; padding-inline: .75rem; font-size: .9rem; white-space: nowrap; }
.tier__badge { white-space: nowrap; }
@media (min-width: 768px) {
  .pricing { grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: repeat(2, 1fr); overflow: visible; margin-inline: 0; padding: 0; gap: var(--gutter); }
}
@media (min-width: 1100px) {
  .pricing { grid-template-columns: repeat(5, 1fr); gap: 1rem; align-items: start; }
  .tier:nth-child(2) { margin-top: 1.5rem; }
  .tier:nth-child(3) { margin-top: 3rem; }
  .tier:nth-child(4) { margin-top: 4.5rem; }
  .tier:nth-child(5) { margin-top: 6rem; }
}
.pricing-notes { display: grid; gap: 2.5rem; margin-top: clamp(2.5rem, 6vw, 4rem); }
.pricing-notes h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; letter-spacing: -.02em; margin-bottom: .9rem; }
.pricing-notes ul { display: grid; gap: .5rem; color: var(--text-2); }
.pricing-notes li { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: baseline; }
.pricing-notes li::before { content: "—"; color: var(--accent); }
.addons { display: grid; gap: .35rem .5rem; }
.addons li { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid var(--line); color: var(--text); }
.addons li::before { content: none; }
.addons li span:last-child { color: var(--text-2); white-space: nowrap; font-variant-numeric: tabular-nums; flex: none; }
@media (min-width: 900px) { .pricing-notes { grid-template-columns: 1fr 1fr 1fr; gap: var(--gutter); } .pricing-notes > :last-child { grid-column: 1 / -1; } .addons { grid-template-columns: 1fr 1fr; column-gap: var(--gutter); } }
.payment { margin-top: 2rem; padding: 1.25rem 1.5rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; color: var(--text-2); font-size: var(--small); }
.payment strong { color: var(--text); }

/* ---------- 14. Testimonials --------------------------------------------- */
.quotes { display: grid; grid-auto-flow: column; grid-auto-columns: min(88vw, 34rem); gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: .25rem var(--gutter) 1.5rem; margin-inline: calc(var(--gutter) * -1); scrollbar-width: none; }
.quotes::-webkit-scrollbar { display: none; }
.quote { scroll-snap-align: start; display: grid; gap: 1.5rem; padding: clamp(1.5rem, 3vw, 2.5rem); border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); min-height: 18rem; align-content: space-between; }
.quote__mark { width: 2.2rem; height: 2.2rem; color: var(--accent); }
.quote blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(1.35rem, 1.1rem + 1.2vw, 1.9rem); line-height: 1.3; letter-spacing: -.015em; text-wrap: pretty; }
.quote figcaption { display: grid; gap: .1rem; color: var(--text-2); font-size: var(--small); }
.quote figcaption strong { color: var(--text); }
.quotes-nav { display: flex; gap: .5rem; justify-content: flex-end; }
.quotes-nav button { width: 2.75rem; height: 2.75rem; border-radius: 999px; border: 1.5px solid var(--line-2); background: transparent; cursor: pointer; display: grid; place-items: center; transition: border-color .3s, background-color .3s, color .3s; }
.quotes-nav button:hover { background: var(--ink); color: var(--ink-text); border-color: var(--ink); }
.quotes-nav svg { width: 1.1rem; height: 1.1rem; }
@media (min-width: 900px) { .quotes { grid-auto-columns: minmax(0, 1fr); grid-template-columns: repeat(3, 1fr); overflow: visible; margin-inline: 0; padding: 0; gap: var(--gutter); } .quote:nth-child(2) { margin-top: 2.5rem; } .quotes-nav { display: none; } }

/* ---------- 15. FAQ ------------------------------------------------------ */
.faq { display: grid; gap: 3rem; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1.25rem 0; font-family: var(--font-display); font-size: clamp(1.2rem, 1rem + .9vw, 1.6rem); letter-spacing: -.015em; font-weight: 500; transition: color .25s; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__icon { width: 2rem; height: 2rem; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; transition: transform .4s var(--ease-out), background-color .3s, border-color .3s; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; width: .8rem; height: 1.5px; background: currentColor; transition: transform .4s var(--ease-out); }
.faq__icon { position: relative; }
.faq__icon::after { transform: rotate(90deg); }
.faq__item[open] .faq__icon { background: var(--ink); color: var(--ink-text); border-color: var(--ink); }
.faq__item[open] .faq__icon::after { transform: rotate(0); }
.faq__body { padding: 0 0 1.5rem; color: var(--text-2); max-width: 62ch; text-wrap: pretty; display: grid; gap: .8rem; animation: fadeUp .45s var(--ease-out); }
.faq__body a { color: var(--text); }
@media (min-width: 900px) { .faq { grid-template-columns: 4fr 8fr; gap: var(--gutter); } .faq__side { position: sticky; top: 7rem; align-self: start; display: grid; gap: 1.25rem; } }

/* ---------- 16. Contact -------------------------------------------------- */
.contact { display: grid; gap: 3rem; }
.contact__copy { display: grid; gap: 1.5rem; align-content: start; }
.contact__details { display: grid; gap: .9rem; padding-top: 1.5rem; border-top: 1px solid var(--band-line); }
.contact__details a { text-decoration: none; font-size: var(--lead); font-weight: 500; display: inline-flex; align-items: center; gap: .6rem; background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1.5px; transition: background-size .4s var(--ease-out); padding-bottom: .1rem; }
.contact__details a:hover { background-size: 100% 1.5px; }
.contact__details svg { width: 1.1rem; height: 1.1rem; opacity: .7; }
.form { --line: var(--form-line); --text-2: var(--form-muted); display: grid; gap: 1.1rem; padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius-lg); background: var(--bg); color: var(--text); border: 1px solid var(--line); }
.form__row { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; font-size: var(--small); }
.field label span { color: var(--text-2); font-weight: 400; }
.field input, .field select, .field textarea { width: 100%; padding: .85rem 1rem; border-radius: 10px; border: 1.5px solid var(--line-2); background: var(--surface); color: var(--text); font: inherit; transition: border-color .25s, box-shadow .25s; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { min-height: 8.5rem; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%235F5851' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1rem; padding-right: 2.75rem; }
.form__foot { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; color: var(--text-2); font-size: .875rem; }
.form__foot a { color: var(--text); }
.hp { position: absolute; left: -9999px; }
@media (min-width: 900px) { .contact { grid-template-columns: 5fr 7fr; gap: calc(var(--gutter) * 1.5); } }

/* ---------- 17. Footer --------------------------------------------------- */
.footer { padding-block: 3.5rem 2.5rem; border-top: 1px solid var(--line); }
.footer__grid { display: grid; gap: 2.5rem; }
.footer__brand { display: grid; gap: 1rem; align-content: start; }
.footer__brand p { color: var(--text-2); max-width: 30ch; font-size: var(--small); }
.footer h2 { font-size: var(--eyebrow); text-transform: uppercase; letter-spacing: .12em; color: var(--text-2); margin-bottom: .9rem; font-weight: 600; }
.footer ul { display: grid; gap: .5rem; }
.footer a { text-decoration: none; color: var(--text); }
.footer a:hover { color: var(--accent); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: .75rem 2rem; justify-content: space-between; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--text-2); font-size: .875rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--gutter); } }

/* ---------- 18. Inner pages --------------------------------------------- */
.page-hero { padding-block: clamp(3rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem); display: grid; gap: 1.5rem; max-width: 52rem; }
.prose { max-width: 66ch; display: grid; gap: 1.1rem; }
.prose h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.3rem); letter-spacing: -.02em; margin-top: 1.75rem; }
.prose h3 { font-size: 1.2rem; font-weight: 600; margin-top: .75rem; }
.prose p, .prose li { color: var(--text-2); text-wrap: pretty; }
.prose ul { padding-left: 1.2rem; display: grid; gap: .4rem; list-style: disc; }
.prose a { color: var(--text); }
.prose strong { color: var(--text); }
.prose .updated { font-size: var(--small); }

/* AI Editor page */
.editor-hero { display: grid; gap: 3rem; align-items: center; padding-block: clamp(3rem, 7vw, 5rem) clamp(3rem, 7vw, 6rem); }
@media (min-width: 900px) { .editor-hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 4rem; } }
.demo { display: grid; gap: 1rem; padding: 1rem; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.demo__chat { display: grid; gap: .6rem; }
.demo__chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.demo__chip { padding: .5rem .85rem; border-radius: 999px; border: 1.5px solid var(--line-2); background: transparent; cursor: pointer; font-size: .875rem; font-weight: 500; transition: background-color .25s, border-color .25s, color .25s, transform .3s var(--ease-out); }
.demo__chip:hover, .demo__chip[aria-pressed="true"] { background: var(--ink); color: var(--ink-text); border-color: var(--ink); }
.demo__chip:active { transform: scale(.97); }
.demo__log { display: grid; gap: .5rem; min-height: 4.5rem; }
.demo__msg { max-width: 85%; padding: .6rem .9rem; border-radius: 14px; font-size: .9rem; line-height: 1.45; animation: fadeUp .4s var(--ease-out); }
.demo__msg--you { justify-self: end; background: var(--ink); color: var(--ink-text); border-bottom-right-radius: 4px; }
.demo__msg--ai { justify-self: start; background: var(--bg-2); border-bottom-left-radius: 4px; }
.demo__msg--ai .dots { display: inline-flex; gap: .25rem; }
.demo__msg--ai .dots i { width: .4rem; height: .4rem; border-radius: 50%; background: var(--text-2); animation: pulse 1s infinite ease-in-out; }
.demo__msg--ai .dots i:nth-child(2) { animation-delay: .15s; } .demo__msg--ai .dots i:nth-child(3) { animation-delay: .3s; }
@keyframes pulse { 0%, 100% { opacity: .3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-2px); } }
.demo__site { border-radius: 12px; border: 1px solid var(--line); overflow: hidden; background: var(--frame-body); }
.demo__page { padding: 1.25rem; background: var(--mini-bg, #F4EBDD); color: var(--mini-fg, #2B1F14); display: grid; gap: .9rem; transition: background-color .6s, color .6s; font-size: .8rem; }
.demo__page nav { display: flex; justify-content: space-between; align-items: center; font-weight: 700; letter-spacing: .15em; font-size: .7rem; }
.demo__page nav b { padding: .35rem .7rem; border-radius: 999px; background: var(--mini-acc, #B9552B); color: #fff; letter-spacing: 0; font-weight: 600; transition: background-color .6s; }
.demo__page h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: -.02em; line-height: 1.05; }
.demo__page .hours { display: inline-flex; gap: .5rem; align-items: center; padding: .4rem .7rem; border-radius: 8px; background: rgba(0,0,0,.06); font-weight: 500; }
.demo__page .photo { aspect-ratio: 16 / 7; border-radius: 10px; background: var(--mini-soft, #E6D6BF); display: grid; place-items: center; font-size: .65rem; letter-spacing: .2em; opacity: .8; transition: background-color .6s; }
.demo__page .banner { padding: .5rem .7rem; border-radius: 8px; background: var(--mini-acc, #B9552B); color: #fff; font-weight: 600; font-size: .75rem; }
.demo__page .banner:empty { display: none; }
.flash { animation: flash .9s var(--ease-out); }
@keyframes flash { 0% { box-shadow: 0 0 0 0 var(--accent); } 100% { box-shadow: 0 0 0 10px transparent; } }
.features { display: grid; gap: 0; border-top: 1px solid var(--line); }
.feature { display: grid; grid-template-columns: auto 1fr; gap: 1rem 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.feature__num { font-family: var(--font-display); color: var(--accent); padding-top: .3rem; min-width: 2.2rem; }
.feature h3 { font-family: var(--font-display); font-size: clamp(1.35rem, 1.1rem + 1vw, 1.8rem); font-weight: 500; letter-spacing: -.02em; margin-bottom: .4rem; }
.feature p { color: var(--text-2); max-width: 50ch; text-wrap: pretty; }
@media (min-width: 900px) { .features { grid-template-columns: 1fr 1fr; column-gap: var(--gutter); } }
.compare { display: grid; gap: 1rem; margin-top: 2rem; }
.compare__col { padding: 1.5rem; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface); display: grid; gap: .8rem; align-content: start; }
.compare__col h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; letter-spacing: -.02em; }
.compare__col ul { display: grid; gap: .45rem; color: var(--text-2); font-size: var(--small); }
.compare__col li { display: grid; grid-template-columns: auto 1fr; gap: .6rem; }
.compare__col li::before { content: "✓"; color: var(--accent); font-weight: 700; }
.compare__col--no li::before { content: "✕"; color: var(--text-2); }
@media (min-width: 768px) { .compare { grid-template-columns: 1fr 1fr; gap: var(--gutter); } }

/* 404 */
.notfound { min-height: 70vh; display: grid; align-content: center; gap: 1.5rem; padding-block: 4rem; }
.notfound .h1 { font-size: clamp(5rem, 22vw, 16rem); line-height: .9; }
.notfound .h1 span { display: inline-block; }
.notfound .h1 span:nth-child(2) { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144; }

/* ---------- 19. Motion --------------------------------------------------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal--scale { transform: translateY(20px) scale(.98); }
.js [data-stagger] > * { --d: calc(var(--i, 0) * 80ms); }
.js .hero__title .w { opacity: 0; transform: translateY(.4em) rotate(1deg); animation: word .55s var(--ease-out) forwards; animation-delay: calc(var(--i) * 40ms); }
.js .hero__copy > :not(.hero__title) { opacity: 0; animation: fadeUp .7s var(--ease-out) forwards; animation-delay: .35s; }
.js .hero__copy > .hero__actions { animation-delay: .45s; }
.js .hero__copy > .hero__meta { animation-delay: .55s; }
.js .gallery__col { opacity: 0; transform: translateY(40px); animation: fadeUp .8s var(--ease-out) forwards; }
.js .gallery__col:nth-child(1) { animation-delay: .15s; } .js .gallery__col:nth-child(2) { animation-delay: .25s; } .js .gallery__col:nth-child(3) { animation-delay: .35s; }
@keyframes word { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .hero__title .w, .js .hero__copy > *, .js .gallery__col { opacity: 1; transform: none; animation: none; }
  .frame--auto .frame__view img { animation: none; }
  .marquee__track { animation: none; width: auto; flex-wrap: wrap; }
  .marquee__list:last-child { display: none; }
  .marquee__list { white-space: normal; flex-wrap: wrap; row-gap: .5rem; }
  .progress { display: none; }
}
@media (hover: none) { .frame--hover .frame__view img { transition: none; } }
