/* Homepage theatre. Detail and policy pages continue to use style.css alone. */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

.home-page {
  --home-night: #090a0a;
  --home-night-raised: #111211;
  --home-paper: #f7f4ed;
  --home-paper-raised: #fbf9f4;
  --home-ink: #111210;
  --home-muted: #69675f;
  --home-gold: #e6b85c;
  --home-gold-light: #f3d793;
  --home-gold-glow: rgba(230, 184, 92, .25);
  --home-pink: #e85a68;
  --home-blue: #55a8dc;
  --home-radius-sm: 12px;
  --home-radius-md: 20px;
  --home-radius-lg: 30px;
  --home-radius-xl: 46px;
  --home-shadow-soft: 0 24px 70px rgba(30, 25, 17, .11);
  --home-shadow-object: 0 24px 54px rgba(0, 0, 0, .32), 0 4px 14px rgba(0, 0, 0, .24);
  --home-serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --home-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  --home-mono: ui-monospace, "SF Mono", Menlo, monospace;
  --motion-fast: 160ms;
  --motion-ui: 280ms;
  --motion-section: 650ms;
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --ease-spring: cubic-bezier(.16, 1, .3, 1);
  margin: 0;
  overflow-x: clip;
  background: var(--home-night);
  color: var(--home-ink);
  font-family: var(--home-sans);
  font-size: 1rem;
  line-height: 1.5;
}

.home-page main,
.home-page footer {
  max-width: none;
  margin: 0;
  padding: 0;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  font-family: var(--home-serif);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .96;
  margin: 0;
}

.home-page a { color: inherit; }
.home-page img { max-width: 100%; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: .7rem 1rem;
  border-radius: 999px;
  color: var(--home-night) !important;
  background: var(--home-gold-light);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--motion-fast) var(--ease-out);
}

.skip-link:focus { transform: translateY(0); }

.home-page :focus-visible {
  outline: 3px solid var(--home-gold-light);
  outline-offset: 5px;
}

/* Header */

.home-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.8rem;
  padding-top: .85rem;
  pointer-events: none;
}

/* Hero */

.home-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  height: clamp(760px, 92svh, 1040px);
  min-height: 88svh;
  overflow: hidden;
  color: #f7f3e9;
  background:
    radial-gradient(circle at 50% 55%, rgba(230, 184, 92, .085), transparent 34%),
    radial-gradient(circle at 16% 14%, rgba(85, 168, 220, .055), transparent 24%),
    linear-gradient(145deg, #080909 0%, #0d0f0e 52%, #080909 100%);
}

.hero-atmosphere,
.hero-atmosphere::before,
.hero-atmosphere::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-atmosphere::before {
  opacity: .15;
  background-image: radial-gradient(rgba(255, 255, 255, .38) .55px, transparent .7px);
  background-size: 11px 11px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 86%);
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-atmosphere::after {
  box-shadow: inset 0 -120px 150px rgba(0, 0, 0, .4);
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(92vw, 1560px);
  padding-top: 2.6rem;
  text-align: center;
}

.hero-wordmark {
  color: #f9f5eb;
  font-size: clamp(7rem, 17vw, 15.5rem);
  font-weight: 500 !important;
  letter-spacing: -.075em !important;
  line-height: .72 !important;
  text-indent: -.055em;
  text-shadow: 0 10px 42px rgba(0, 0, 0, .45);
  animation: hero-word 900ms var(--ease-spring) 80ms both;
}

.hero-tagline {
  margin: clamp(2rem, 4.5vh, 3.6rem) 0 .6rem;
  color: #f7f1e4;
  font-family: var(--home-serif);
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  letter-spacing: -.035em;
  animation: hero-copy 700ms var(--ease-out) 300ms both;
}

.hero-aside {
  margin: 0;
  color: rgba(255, 255, 255, .44);
  font-family: var(--home-mono);
  font-size: clamp(.68rem, .78vw, .82rem);
  letter-spacing: .07em;
  animation: hero-copy 700ms var(--ease-out) 420ms both;
}

@keyframes hero-word {
  from { opacity: 0; transform: translateY(20px) scale(.985); filter: blur(5px); }
  to { opacity: 1; transform: none; filter: none; }
}
@keyframes hero-copy {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.scroll-cue {
  position: absolute;
  z-index: 10;
  bottom: clamp(4.8rem, 8vh, 7rem);
  left: 50%;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(255, 255, 255, .48) !important;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  animation: hero-copy 700ms var(--ease-out) 800ms both;
  transition: opacity var(--motion-ui) var(--ease-out), transform var(--motion-ui) var(--ease-out), color var(--motion-fast);
}
.scroll-cue i {
  display: grid;
  place-items: center;
  width: 2.05rem;
  height: 2.05rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  font-style: normal;
  transition: transform var(--motion-ui), border-color var(--motion-ui), color var(--motion-ui);
}
.scroll-cue:hover { color: #fff !important; }
.scroll-cue:hover i { transform: translateY(3px); border-color: var(--home-gold); color: var(--home-gold); }
.home-hero.has-scrolled .scroll-cue { opacity: 0; pointer-events: none; transform: translate(-50%, 8px); }

.hero-app {
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: absolute;
  z-index: 8;
  color: #fff !important;
  text-decoration: none;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 700ms var(--ease-out);
}
.hero-app__body {
  position: relative;
  display: block;
  animation: object-settle 1s var(--ease-spring) both;
}
.hero-app__body::before {
  position: absolute;
  z-index: -1;
  inset: -22%;
  border-radius: 50%;
  content: "";
  opacity: .4;
  filter: blur(24px);
}
.hero-app img {
  display: block;
  width: clamp(5.4rem, 7.4vw, 8.2rem);
  height: auto;
  border-radius: 25%;
  box-shadow: var(--home-shadow-object);
  transition: transform var(--motion-ui) var(--ease-spring), box-shadow var(--motion-ui);
}
.hero-app__name {
  position: absolute;
  top: calc(100% + .7rem);
  left: 50%;
  width: max-content;
  padding: .36rem .63rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(255, 255, 255, .62);
  background: rgba(8, 9, 9, .55);
  font-size: .66rem;
  font-weight: 600;
  opacity: .6;
  transform: translateX(-50%);
  transition: opacity var(--motion-fast), color var(--motion-fast), border-color var(--motion-fast);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.hero-app:hover img { transform: translateY(-5px) scale(1.015); box-shadow: 0 34px 68px rgba(0, 0, 0, .42), 0 5px 16px rgba(0, 0, 0, .28); }
.hero-app:hover .hero-app__name { opacity: 1; color: #fff; border-color: rgba(230, 184, 92, .48); }
.hero-app--mile { top: 24%; left: clamp(4%, 8vw, 11%); transform: translate3d(var(--parallax-x), var(--parallax-y), 0) rotate(-5deg); }
.hero-app--mile .hero-app__body { animation-delay: 480ms; }
.hero-app--mile .hero-app__body::before { background: var(--home-gold-glow); }
.hero-app--passport { top: 19%; right: clamp(4%, 9vw, 12%); transform: translate3d(var(--parallax-x), var(--parallax-y), 0) rotate(4deg); }
.hero-app--passport .hero-app__body { animation-delay: 620ms; }
.hero-app--passport .hero-app__body::before { background: rgba(243, 215, 147, .2); }
.hero-app--tip { right: clamp(8%, 16vw, 20%); bottom: 17%; transform: translate3d(var(--parallax-x), var(--parallax-y), 0) rotate(3deg); }
.hero-app--tip .hero-app__body { animation-delay: 720ms; }
.hero-app--tip .hero-app__body::before { background: rgba(232, 90, 104, .18); }

@keyframes object-settle {
  from { opacity: 0; transform: translateY(-22px) scale(.88); }
  to { opacity: 1; transform: none; }
}

.escape-dot {
  position: absolute;
  z-index: 3;
  width: var(--dot-size, 10px);
  height: var(--dot-size, 10px);
  border-radius: 50%;
  background: var(--dot-color, var(--home-gold));
  box-shadow: 0 0 22px var(--dot-glow, var(--home-gold-glow));
  animation: dot-drift var(--dot-speed, 11s) ease-in-out infinite alternate;
}
.escape-dot::after {
  position: absolute;
  top: 48%;
  right: 80%;
  width: var(--trail, 36px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--dot-color));
  opacity: .3;
  transform: rotate(var(--trail-angle, 0deg));
  transform-origin: right;
}
.escape-dot i { position: absolute; inset: -8px; border: 1px solid var(--dot-color); border-radius: 50%; opacity: .2; }
.escape-dot b { position: absolute; top: 35%; width: 2px; height: 2px; border-radius: 50%; background: #151515; }
.escape-dot b:first-child { left: 27%; }
.escape-dot b:last-child { right: 27%; }
.escape-dot--gold { --dot-color: var(--home-gold); --dot-glow: rgba(230, 184, 92, .5); }
.escape-dot--blue { --dot-color: var(--home-blue); --dot-glow: rgba(85, 168, 220, .42); }
.escape-dot--pink { --dot-color: var(--home-pink); --dot-glow: rgba(232, 90, 104, .44); }
.escape-dot--cream { --dot-color: #f3eee1; --dot-glow: rgba(255, 255, 255, .3); }
.escape-dot--one { top: 15%; left: 34%; --dot-size: 7px; --trail-angle: 12deg; }
.escape-dot--two { top: 37%; right: 28%; --dot-size: 5px; --trail: 24px; --trail-angle: -18deg; --dot-speed: 14s; }
.escape-dot--three { bottom: 28%; left: 25%; --dot-size: 8px; --trail-angle: 22deg; --dot-speed: 13s; }
.escape-dot--four { top: 20%; right: 39%; --dot-size: 4px; --trail: 18px; --dot-speed: 9s; }
.escape-dot--five { bottom: 19%; left: 42%; --dot-size: 12px; --trail: 44px; --trail-angle: -12deg; --dot-speed: 15s; }
.escape-dot--six { top: 45%; left: 13%; --dot-size: 4px; --trail: 16px; --dot-speed: 10s; }
@keyframes dot-drift { to { transform: translate3d(14px, -11px, 0) rotate(5deg); } }

/* Paper world and shared section type */

.paper-world {
  position: relative;
  z-index: 20;
  margin-top: -42px;
  overflow: hidden;
  border-radius: var(--home-radius-xl) var(--home-radius-xl) 0 0;
  background:
    radial-gradient(circle at 90% 5%, rgba(230, 184, 92, .08), transparent 22rem),
    var(--home-paper);
}

.home-section {
  width: min(calc(100% - 3rem), 1440px);
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: #8a6a2a;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--home-ink) !important;
  font-size: .84rem;
  font-weight: 750;
  text-decoration: none;
}
.text-link span { transition: transform var(--motion-fast) var(--ease-out); }
.text-link:hover span { transform: translateX(4px); }

.featured-grid {
  display: grid;
  grid-template-columns: 1.14fr repeat(4, minmax(0, 1fr));
  gap: clamp(.85rem, 1.35vw, 1.35rem);
  align-items: start;
}

.featured-intro { padding: 1rem clamp(.7rem, 1.5vw, 1.5rem) 0 0; }
.featured-intro h2,
.section-heading h2,
.promise-heading h2,
.studio-copy h2 {
  font-size: clamp(2.75rem, 4.2vw, 4.75rem);
}
.featured-intro > p:not(.eyebrow) {
  max-width: 28rem;
  margin: 1.6rem 0 2rem;
  color: var(--home-muted);
  font-size: clamp(.96rem, 1.1vw, 1.08rem);
  line-height: 1.65;
}

.featured-card a { display: block; color: var(--home-ink) !important; text-decoration: none; }
.featured-card__stage {
  position: relative;
  height: clamp(23rem, 34vw, 31rem);
  overflow: hidden;
  border: 1px solid rgba(17, 18, 16, .1);
  border-radius: var(--home-radius-lg);
  box-shadow: 0 4px 14px rgba(32, 24, 12, .05);
  transition: transform var(--motion-ui) var(--ease-spring), box-shadow var(--motion-ui) var(--ease-out), border-color var(--motion-ui);
}
.featured-card__stage::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, .16);
  content: "";
  pointer-events: none;
}
.featured-card__icon {
  position: absolute;
  z-index: 4;
  top: 1rem;
  left: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 24%;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .2);
}
.featured-card__shot {
  position: absolute;
  z-index: 2;
  bottom: -8%;
  left: 50%;
  width: 72%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 26px 50px rgba(0, 0, 0, .29);
  transform: translateX(-50%);
  transition: transform 520ms var(--ease-spring), box-shadow 520ms var(--ease-out);
}
.featured-card:hover .featured-card__stage { transform: translateY(-7px); box-shadow: var(--home-shadow-soft); }
.featured-card:hover .featured-card__shot { transform: translateX(-50%) translateY(-8px) scale(1.01); box-shadow: 0 34px 58px rgba(0, 0, 0, .33); }
.featured-card__copy { position: relative; padding: 1.2rem .2rem 0; }
.featured-card__copy h3 { margin: .48rem 2rem .48rem 0; font-size: clamp(1.45rem, 1.8vw, 1.85rem); }
.featured-card__copy p { margin: 0; color: var(--home-muted); font-size: .86rem; line-height: 1.48; }
.product-status { display: inline-flex; align-items: center; gap: .4rem; color: #77736a; font-size: .62rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.product-status i { width: .38rem; height: .38rem; border-radius: 50%; background: #a69e8e; }
.product-status--download { color: #21734b; }
.product-arrow { position: absolute; top: 2.2rem; right: .25rem; font-size: 1.15rem; transition: transform var(--motion-fast) var(--ease-out); }
.featured-card:hover .product-arrow { transform: translate(3px, -3px); }

.featured-card--mile .featured-card__stage { background: radial-gradient(circle at 70% 18%, rgba(230, 184, 92, .18), transparent 34%), #101312; }
.featured-card--passport .featured-card__stage { background: radial-gradient(circle at 50% 26%, #6d6250, #242522 59%, #111210); }
.featured-card--tip .featured-card__stage { background: radial-gradient(circle at 50% 15%, #fff, transparent 39%), #f6e9e5; }
.featured-card--potato .featured-card__stage { background: radial-gradient(circle at 50% 16%, rgba(255, 94, 21, .26), transparent 35%), #24120d; }
.route-thread { position: absolute; inset: 8% 2% auto auto; width: 82%; height: 72%; opacity: .34; }
.route-thread path { fill: none; stroke: var(--home-gold); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 420; stroke-dashoffset: 150; transition: stroke-dashoffset 850ms var(--ease-out); }
.featured-card--mile:hover .route-thread path { stroke-dashoffset: 108; }
.focus-halo { position: absolute; top: 15%; left: 50%; width: 72%; aspect-ratio: 1; border: 1px solid rgba(243, 215, 147, .55); border-radius: 50%; box-shadow: 0 0 54px rgba(243, 215, 147, .18); transform: translateX(-50%) scale(1.08); transition: transform 700ms var(--ease-spring); }
.featured-card--passport:hover .focus-halo { transform: translateX(-50%) scale(1); }
.tip-divider { position: absolute; top: 31%; left: 14%; width: 72%; height: 3px; border-radius: 999px; background: var(--home-pink); opacity: .45; transform: scaleX(.68); transition: transform 520ms var(--ease-spring); }
.featured-card--tip:hover .tip-divider { transform: scaleX(.83); }
.tiny-ember { position: absolute; z-index: 4; top: 13%; right: 14%; width: 7px; height: 7px; border-radius: 50%; background: #ff6422; box-shadow: 0 0 18px #ff6422; opacity: 0; transform: translateY(12px); transition: opacity var(--motion-ui), transform 520ms var(--ease-out); }
.featured-card--potato:hover .tiny-ember { opacity: 1; transform: translateY(0); }

/* Shelf */

.shelf { border-top: 1px solid rgba(17, 18, 16, .1); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-heading h2 { max-width: 17ch; }
.shelf-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: clamp(1.45rem, 3vw, 3.6rem) clamp(.7rem, 1.8vw, 1.7rem); padding: 0; margin: 0; list-style: none; }
.shelf-item { position: relative; display: flex; flex-direction: column; align-items: center; color: var(--home-ink) !important; text-align: center; text-decoration: none; }
.shelf-item::before { position: absolute; z-index: 0; top: 72%; width: 72%; height: 18%; border-radius: 50%; content: ""; background: rgba(32, 26, 16, .11); filter: blur(12px); opacity: .5; transform: scale(.72); transition: transform var(--motion-ui), opacity var(--motion-ui); }
.shelf-item img { position: relative; z-index: 1; display: block; width: min(100%, 7.7rem); height: auto; border-radius: 24%; box-shadow: 0 10px 22px rgba(36, 28, 16, .12), 0 2px 5px rgba(36, 28, 16, .08); transition: transform var(--motion-ui) var(--ease-spring), box-shadow var(--motion-ui) var(--ease-out), filter var(--motion-ui); }
.shelf-item span { display: flex; align-items: center; min-height: 2.2em; margin-top: .95rem; font-size: clamp(.72rem, .82vw, .84rem); font-weight: 700; line-height: 1.1; }
.shelf-item small { margin-top: .12rem; color: #8a6a2a; font: 700 .55rem/1.2 var(--home-mono); letter-spacing: .08em; text-transform: uppercase; }
.shelf-item > i { position: absolute; z-index: 2; top: .55rem; right: calc(50% - min(50%, 3.5rem)); width: .43rem; height: .43rem; border: 2px solid var(--home-paper); border-radius: 50%; background: #aca79c; box-shadow: 0 1px 3px rgba(0, 0, 0, .2); }
.shelf-item--live > i { background: #2f9962; }
.shelf-item--building > i { background: var(--home-gold); box-shadow: 0 0 0 3px rgba(230, 184, 92, .16); }
.shelf-item--building img { border: 1px dashed rgba(17, 18, 16, .28); }
.shelf-item:hover img { transform: translateY(-8px) rotate(.6deg) scale(1.012); box-shadow: 0 25px 40px rgba(36, 28, 16, .17), 0 4px 8px rgba(36, 28, 16, .1); }
.shelf-item:hover::before { opacity: .85; transform: scale(1); }
.shelf-item--still:hover img { transform: none; }
.shelf-item--still:hover::before { opacity: .5; transform: scale(.72); }
.shelf-item--potato b { position: absolute; z-index: 3; top: 4%; right: 15%; width: 5px; height: 5px; border-radius: 50%; background: #ff6422; box-shadow: 0 0 12px #ff6422; opacity: 0; transition: opacity var(--motion-fast), transform var(--motion-ui); }
.shelf-item--potato:hover b { opacity: 1; transform: translate(4px, -7px); }
.shelf-item--moon:hover img { filter: brightness(1.06) contrast(1.02); }
.shelf-item--route:hover img { filter: drop-shadow(0 0 10px rgba(230, 184, 92, .25)); }
.shelf-item--water:hover img { filter: brightness(1.04) drop-shadow(0 0 8px rgba(85, 168, 220, .23)); }
.shelf-note { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: clamp(3.5rem, 7vw, 6rem); color: var(--home-muted); }
.shelf-note p { margin: 0; font-family: var(--home-mono); font-size: .72rem; }
.shelf-note strong { color: var(--home-ink); font-family: var(--home-sans); font-size: .78rem; }
.shelf-note__dots { display: flex; gap: 4px; }
.shelf-note__dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--home-gold); }
.shelf-note__dots i:nth-child(2) { background: var(--home-pink); transform: translateY(-4px); }
.shelf-note__dots i:nth-child(3) { background: var(--home-blue); }

/* Promise */

.promise-wrap { padding: clamp(1rem, 3vw, 3rem); background: var(--home-paper); }
.promise-band { position: relative; display: grid; grid-template-columns: .9fr 1.7fr; gap: 3rem 7vw; width: min(100%, 1440px); margin: 0 auto; padding: clamp(4rem, 7vw, 7rem); overflow: hidden; border: 1px solid rgba(255, 255, 255, .09); border-radius: var(--home-radius-xl); color: #f7f3e9; background: radial-gradient(circle at 11% 8%, rgba(230, 184, 92, .12), transparent 30%), #101211; box-shadow: 0 28px 80px rgba(17, 18, 16, .16); }
.promise-band::after { position: absolute; right: -3rem; bottom: -5rem; width: 20rem; height: 20rem; border: 1px solid rgba(230, 184, 92, .11); border-radius: 50%; content: ""; box-shadow: 0 0 0 4rem rgba(230, 184, 92, .025), 0 0 0 8rem rgba(230, 184, 92, .018); }
.promise-heading { position: relative; z-index: 1; }
.promise-heading .eyebrow { color: var(--home-gold); }
.promise-heading h2 { color: #fffaf0; }
.promise-list { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; padding: 0; margin: 0; list-style: none; }
.promise-list li { display: grid; grid-template-columns: 1.2rem 1fr; padding: 1.3rem 1rem 1.3rem 0; border-top: 1px solid rgba(255, 255, 255, .12); }
.promise-list li:nth-child(odd) { padding-right: 2rem; }
.promise-list li:nth-child(even) { padding-left: 2rem; border-left: 1px solid rgba(255, 255, 255, .12); }
.promise-list span { color: var(--home-gold); }
.promise-list strong { font-family: var(--home-serif); font-size: clamp(1.1rem, 1.45vw, 1.4rem); font-weight: 500; }
.promise-list small { grid-column: 2; margin-top: .35rem; color: rgba(255, 255, 255, .48); font-size: .73rem; line-height: 1.5; }
.promise-note { grid-column: 2; max-width: 48rem; margin: -1rem 0 0; color: rgba(255, 255, 255, .48); font-size: .75rem; }
.promise-honest { grid-column: 1 / -1; margin: 1rem 0 0; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .67); font-family: var(--home-mono); font-size: .7rem; letter-spacing: .03em; }

/* Studio */

.studio { background: var(--home-paper); }
.studio-inner { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); width: min(calc(100% - 3rem), 1320px); margin: 0 auto; padding: clamp(6rem, 12vw, 11rem) 0; }
.studio-copy h2 { max-width: 12ch; }
.studio-lede { max-width: 29rem; margin: 1.7rem 0 3rem; color: var(--home-muted); font-size: clamp(1rem, 1.4vw, 1.25rem); }
.studio-punch { display: flex; flex-direction: column; margin: 0 0 2.6rem; font-family: var(--home-serif); font-size: clamp(1.5rem, 2.4vw, 2.55rem); line-height: 1.1; letter-spacing: -.035em; }
.studio-punch span:last-child { color: #9b742b; }
.studio-landscape { position: relative; min-width: 0; }
.studio-landscape svg { display: block; width: 100%; height: auto; border-radius: var(--home-radius-xl); box-shadow: var(--home-shadow-soft); }
.landscape-label { position: absolute; bottom: 1.25rem; left: 1.4rem; color: rgba(255, 255, 255, .55); font-family: var(--home-mono); font-size: .62rem; letter-spacing: .08em; }
.landscape-dot { position: absolute; top: 12%; left: 18%; width: 8px; height: 8px; border-radius: 50%; background: var(--home-blue); box-shadow: 0 0 18px rgba(85, 168, 220, .55); animation: dot-drift 12s ease-in-out infinite alternate-reverse; }

/* Footer */

.home-footer { position: relative; overflow: hidden; color: #f7f3e9; background: radial-gradient(circle at 75% 20%, rgba(230, 184, 92, .09), transparent 25%), #090a0a; }
.footer-inner { position: relative; width: min(calc(100% - 3rem), 1440px); margin: 0 auto; padding: clamp(5rem, 9vw, 8rem) 0 3rem; }
.footer-wordmark { position: relative; display: inline-grid; color: #f7f3e9 !important; font-family: var(--home-serif); font-size: clamp(5rem, 14vw, 12rem); font-weight: 500; letter-spacing: -.075em; line-height: .75; text-decoration: none; }
.footer-wordmark span { grid-area: 1 / 1; transition: opacity 360ms var(--ease-out), transform 520ms var(--ease-spring); }
.footer-wordmark__full { opacity: 0; transform: translateY(12px); }
.footer-wordmark:hover .footer-wordmark__short,
.footer-wordmark:focus-visible .footer-wordmark__short { opacity: 0; transform: translateY(-10px); }
.footer-wordmark:hover .footer-wordmark__full,
.footer-wordmark:focus-visible .footer-wordmark__full { opacity: 1; transform: none; }
.footer-escape { position: absolute; width: .06em; height: .06em; border-radius: 50%; opacity: 0; transition: opacity var(--motion-fast), transform 650ms var(--ease-spring); }
.footer-escape--one { top: 0; left: 39%; background: var(--home-gold); }
.footer-escape--two { top: 48%; left: 64%; background: var(--home-pink); }
.footer-escape--three { top: 70%; left: 30%; background: var(--home-blue); }
.footer-wordmark:hover .footer-escape,
.footer-wordmark:focus-visible .footer-escape { opacity: 1; }
.footer-wordmark:hover .footer-escape--one { transform: translate(14px, -24px); }
.footer-wordmark:hover .footer-escape--two { transform: translate(28px, 5px); }
.footer-wordmark:hover .footer-escape--three { transform: translate(-18px, 15px); }
.footer-thanks { margin: 2.4rem 0 5rem; color: rgba(255, 255, 255, .5); font-family: var(--home-serif); font-size: clamp(1.2rem, 2vw, 1.8rem); }
.footer-meta { display: flex; align-items: end; justify-content: space-between; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .52); font-size: .75rem; }
.footer-meta p { margin: 0; line-height: 1.8; }
.footer-meta a { color: rgba(255, 255, 255, .68) !important; text-decoration-color: rgba(230, 184, 92, .4); }
.footer-meta nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-meta nav a { text-decoration: none; }
.footer-meta nav a:hover { color: #fff !important; }
.footer-aside { margin: 3rem 0 0; color: rgba(255, 255, 255, .28); font-family: var(--home-mono); font-size: .65rem; }

/* Section-level reveals only; content is visible without JavaScript. */
html.reveal-ready [data-reveal] { transition: transform var(--motion-section) var(--ease-out); }
html.reveal-ready [data-reveal]:not(.is-visible) { transform: translateY(14px); }

@media (max-width: 1180px) {
  .featured-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .featured-intro { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; column-gap: 3rem; align-items: end; margin-bottom: 2rem; }
  .featured-intro .eyebrow { grid-column: 1 / -1; }
  .featured-intro h2 { grid-row: 2 / span 2; }
  .featured-intro > p:not(.eyebrow) { margin: 0 0 1rem; }
  .featured-intro .text-link { grid-column: 2; }
  .featured-card__stage { height: clamp(25rem, 45vw, 31rem); }
  .shelf-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero-app--passport { right: 5%; }
  .hero-app--tip { right: 10%; }
  .featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-card__stage { height: min(62vw, 34rem); }
  .shelf-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .promise-band { grid-template-columns: 1fr; }
  .promise-note { grid-column: 1; margin-top: -1rem; }
  .studio-inner { grid-template-columns: 1fr; }
  .studio-copy { display: grid; grid-template-columns: 1fr 1fr; column-gap: 2rem; align-items: end; }
  .studio-copy .eyebrow { grid-column: 1 / -1; }
  .studio-copy h2 { grid-row: 2 / span 2; }
  .studio-lede { margin-top: 0; }
  .studio-punch { grid-column: 2; }
  .studio-copy .text-link { grid-column: 2; }
}

@media (max-width: 760px) {
  .home-header { height: 5rem; }

  .home-hero { height: clamp(650px, 78svh, 760px); min-height: 70svh; }
  .hero-copy { padding: 0 1rem 2.5rem; }
  .hero-wordmark { font-size: clamp(4.8rem, 25vw, 7.5rem); line-height: .78 !important; }
  .hero-tagline { margin-top: 2rem; font-size: clamp(1.45rem, 6.8vw, 2rem); }
  .hero-aside { font-size: .61rem; letter-spacing: .035em; }
  .scroll-cue { bottom: 4.4rem; }
  .hero-app img { width: 4.5rem; }
  .hero-app__name { display: none; }
  .hero-app--mile { top: 18%; left: 7%; }
  .hero-app--passport { display: none; }
  .hero-app--tip { right: 8%; bottom: 20%; }
  .escape-dot--two, .escape-dot--four { display: none; }
  .escape-dot--one { top: 17%; left: 58%; }
  .escape-dot--three { bottom: 27%; left: 15%; }
  .escape-dot--five { bottom: 15%; left: 46%; }
  .paper-world { margin-top: -30px; border-radius: 30px 30px 0 0; }
  .home-section { width: min(calc(100% - 2rem), 42rem); padding: 5.5rem 0; }
  .featured-intro { display: block; margin-bottom: 2.8rem; }
  .featured-intro > p:not(.eyebrow) { margin: 1.3rem 0 1.7rem; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card { margin-bottom: 2rem; }
  .featured-card__stage { height: min(119vw, 34rem); }
  .featured-card__shot { width: min(66%, 16rem); }
  .featured-card__copy { padding-top: 1rem; }
  .featured-card__copy h3 { font-size: 1.75rem; }
  .section-heading { display: block; margin-bottom: 3.25rem; }
  .section-heading .text-link { margin-top: 1.4rem; }
  .shelf-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.7rem .65rem; }
  .shelf-item img { width: min(100%, 5.5rem); }
  .shelf-item span { font-size: .67rem; }
  .shelf-item > i { top: .35rem; right: 8%; }
  .shelf-note { align-items: flex-start; }
  .shelf-note p { max-width: 16rem; }
  .promise-wrap { padding: .75rem; }
  .promise-band { gap: 2.5rem; padding: 3.5rem 1.5rem 2rem; border-radius: 30px; }
  .promise-list { grid-template-columns: 1fr; }
  .promise-list li:nth-child(odd), .promise-list li:nth-child(even) { padding: 1.15rem 0; border-left: 0; }
  .promise-note { margin-top: -.5rem; }
  .promise-honest { line-height: 1.6; }
  .studio-inner { display: block; width: calc(100% - 2rem); padding: 6rem 0; }
  .studio-copy { display: block; }
  .studio-lede { margin: 1.35rem 0 2.4rem; }
  .studio-copy .text-link { margin-bottom: 3.5rem; }
  .studio-landscape { margin-top: 3.5rem; }
  .studio-landscape svg { border-radius: 30px; }
  .footer-inner { width: calc(100% - 2rem); padding: 5rem 0 2rem; }
  .footer-wordmark { font-size: clamp(4.7rem, 25vw, 7rem); }
  .footer-thanks { margin: 1.8rem 0 4rem; }
  .footer-meta { display: block; }
  .footer-meta nav { margin-top: 1.5rem; gap: 1.1rem; }
}

@media (max-width: 370px) {
  .shelf-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .scroll-cue span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .home-page *, .home-page *::before, .home-page *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; transition-delay: 0ms !important; }
  html.reveal-ready [data-reveal]:not(.is-visible) { opacity: 1; transform: none; }
  .escape-dot::after { display: none; }
  .hero-app { transform: none !important; }
}
