/* ============================================================
   THURSDAY GROUP — thursdaygroup.au
   Editorial monochrome system · Montserrat + Fraunces
   ============================================================ */

/* ---------- brand fonts (self-hosted Montserrat) ---------- */
/* Variable files carry every weight 100–900; static files below
   serve browsers without variable-font support. */
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-Italic-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Static";
  src: url("../assets/fonts/Montserrat-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Static";
  src: url("../assets/fonts/Montserrat-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Static";
  src: url("../assets/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Static";
  src: url("../assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Static";
  src: url("../assets/fonts/Montserrat-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #0a0a0a;
  --ink-2: #141414;
  --ink-3: #1e1e1e;
  --paper: #f4f2ee;
  --paper-dim: #b9b6b0;
  --grey: #7d7a75;
  --line: rgba(244, 242, 238, 0.14);
  --line-soft: rgba(244, 242, 238, 0.08);
  --accent: #4d7cfe;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Montserrat", "Montserrat Static", "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 88px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--paper); color: var(--ink); }

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ---------- grain overlay ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 28px;
  transition: transform 1s var(--ease-expo), visibility 1s;
}
.preloader.done { transform: translateY(-100%); visibility: hidden; }
.preloader__mark { width: 84px; height: 84px; opacity: 0; animation: mark-in 1s var(--ease-out) 0.15s forwards; }
.preloader__mark img { width: 100%; }
@keyframes mark-in {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
.preloader__bar {
  width: 160px; height: 1px;
  background: var(--line);
  position: relative; overflow: hidden;
}
.preloader__bar::after {
  content: ""; position: absolute; inset: 0;
  background: var(--paper);
  transform: translateX(-100%);
  animation: bar-fill 1.4s var(--ease-expo) 0.3s forwards;
}
@keyframes bar-fill { to { transform: translateX(0); } }

/* ---------- scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 100%;
  z-index: 1200;
  pointer-events: none;
}
.progress__fill {
  height: 100%; width: 100%;
  background: var(--paper);
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* ---------- cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--paper);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3000;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s;
  mix-blend-mode: difference;
  opacity: 0;
}
.cursor.on { opacity: 1; }
.cursor.grow { width: 56px; height: 56px; }
@media (hover: none), (max-width: 900px) { .cursor { display: none; } }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 min(5vw, 64px);
  justify-content: space-between;
  transition: background 0.5s, backdrop-filter 0.5s, height 0.5s var(--ease-out), border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 68px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line-soft);
}
.nav__logo img {
  height: 30px;
  filter: invert(1);
  transition: transform 0.4s var(--ease-out);
}
.nav__logo:hover img { transform: scale(1.04); }
.nav__links { display: flex; gap: 44px; align-items: center; list-style: none; }
.nav__links a {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--paper-dim);
  position: relative;
  transition: color 0.3s;
  padding: 6px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--paper);
  transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform 0.45s var(--ease-expo);
}
.nav__links a:hover, .nav__links a.active { color: var(--paper); }
.nav__links a:hover::after, .nav__links a.active::after {
  transform: scaleX(1); transform-origin: 0 50%;
}
.nav__cta {
  border: 1px solid var(--line) !important;
  padding: 12px 26px !important;
  border-radius: 100px;
  color: var(--paper) !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--paper); color: var(--ink) !important; border-color: var(--paper) !important; }

/* burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  z-index: 1300;
}
.burger span {
  display: block; width: 26px; height: 1.5px;
  background: var(--paper);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 1250;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 8vw;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease-expo);
}
.mobile-menu.open { clip-path: inset(0 0 0 0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(40px, 9vw, 64px);
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--paper);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.22s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.29s; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .burger { display: flex; }
}

/* ---------- typography helpers ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--grey); font-weight: 600;
  margin-bottom: 28px;
}
.kicker::before {
  content: ""; width: 36px; height: 1px; background: var(--grey);
}
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.display em { font-style: italic; font-weight: 300; }
.h-xl { font-size: clamp(52px, 8.5vw, 128px); }
.h-lg { font-size: clamp(40px, 5.6vw, 84px); }
.h-md { font-size: clamp(30px, 3.6vw, 54px); }
.lede {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 300;
  color: var(--paper-dim);
  line-height: 1.85;
}

/* word-mask reveal (hero) */
.mask-line { display: block; overflow: hidden; }
.mask-line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-expo);
}
.is-loaded .mask-line > span { transform: translateY(0); }
.is-loaded .mask-line:nth-child(2) > span { transition-delay: 0.12s; }
.is-loaded .mask-line:nth-child(3) > span { transition-delay: 0.24s; }

/* ---------- scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-56px); }
[data-reveal="right"] { transform: translateX(56px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-reveal-img] { overflow: hidden; position: relative; }
[data-reveal-img]::after {
  content: ""; position: absolute; inset: 0;
  background: var(--ink);
  transform: scaleY(1); transform-origin: 50% 0;
  transition: transform 1.2s var(--ease-expo);
}
[data-reveal-img].in::after { transform: scaleY(0); }
[data-reveal-img] img { transform: scale(1.15); transition: transform 1.6s var(--ease-expo); }
[data-reveal-img].in img { transform: scale(1); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 40px;
  border-radius: 100px;
  border: 1px solid var(--paper);
  background: var(--paper); color: var(--ink);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: color 0.4s var(--ease-out), border-color 0.4s, transform 0.3s var(--ease-out);
  isolation: isolate;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-expo);
  z-index: -1;
  border-radius: 100px;
}
.btn:hover { color: var(--paper); }
.btn:hover::before { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--paper); border-color: var(--line); }
.btn--ghost::before { background: var(--paper); }
.btn--ghost:hover { color: var(--ink); border-color: var(--paper); }
.btn svg { transition: transform 0.4s var(--ease-out); }
.btn:hover svg { transform: translateX(6px); }

/* ---------- layout ---------- */
.container { width: min(1280px, 90vw); margin: 0 auto; }
section { position: relative; }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 0 100px;
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
}
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.15) 45%, rgba(10,10,10,0.92) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero__title { margin: 26px 0 36px; max-width: 14ch; }
.hero__sub { max-width: 52ch; margin-bottom: 48px; }
.hero__actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--grey);
}
.hero__scroll-line {
  width: 1px; height: 56px;
  background: var(--line);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; left: 0; top: 0;
  width: 100%; height: 40%;
  background: var(--paper);
  animation: scroll-drop 2s var(--ease-out) infinite;
}
@keyframes scroll-drop {
  0% { transform: translateY(-100%); }
  60% { transform: translateY(260%); }
  100% { transform: translateY(260%); }
}
@media (max-width: 700px) { .hero__scroll { display: none; } }

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 26px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--ink);
  position: relative; z-index: 2;
}
.marquee__track {
  display: inline-flex; gap: 64px;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  color: var(--paper-dim);
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee__track span i {
  font-style: normal; color: var(--grey); font-size: 0.6em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- statement ---------- */
.statement { padding: clamp(120px, 16vw, 220px) 0; overflow: hidden; }
.statement__mark {
  position: absolute; right: -6vw; top: 50%;
  width: clamp(300px, 38vw, 560px);
  transform: translateY(-50%);
  opacity: 0.05;
  pointer-events: none;
}
.statement .display { max-width: 22ch; }
.statement .lede { max-width: 58ch; margin-top: 40px; }

/* ---------- services ---------- */
.services { padding: 40px 0 clamp(100px, 12vw, 180px); }
.services__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: clamp(56px, 7vw, 96px); flex-wrap: wrap;
}
.services__grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-soft); }
.service {
  padding: clamp(40px, 4.5vw, 64px) clamp(28px, 3.5vw, 56px);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
  transition: background 0.5s;
}
.service:nth-child(odd) { border-right: 1px solid var(--line-soft); }
.service::before {
  content: ""; position: absolute; inset: 0;
  background: var(--ink-2);
  transform: scaleY(0); transform-origin: 50% 100%;
  transition: transform 0.55s var(--ease-expo);
}
.service:hover::before { transform: scaleY(1); }
.service > * { position: relative; }
.service__num {
  font-family: var(--font-display);
  font-size: 14px; font-style: italic;
  color: var(--grey);
  display: block; margin-bottom: 26px;
}
.service h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  margin-bottom: 18px;
}
.service p { color: var(--paper-dim); font-size: 15px; font-weight: 300; max-width: 44ch; }
.service__arrow {
  position: absolute; top: clamp(40px, 4.5vw, 64px); right: clamp(28px, 3.5vw, 56px);
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s, transform 0.4s var(--ease-out), border-color 0.4s;
}
.service:hover .service__arrow {
  background: var(--paper); border-color: var(--paper);
  transform: rotate(45deg);
}
.service:hover .service__arrow svg { stroke: var(--ink); }
.service__arrow svg { stroke: var(--paper); transition: stroke 0.4s; }
@media (max-width: 760px) {
  .services__grid { grid-template-columns: 1fr; }
  .service:nth-child(odd) { border-right: 0; }
}

/* ---------- parallax band ---------- */
.band {
  height: clamp(420px, 70vh, 720px);
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.band__img {
  position: absolute; inset: -18% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.band::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.55);
}
.band__quote {
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 6vw;
}
.band__quote .display { max-width: 20ch; margin: 0 auto; }
.band__quote .kicker { justify-content: center; }
.band__quote .kicker::before { display: none; }

/* ---------- process ---------- */
.process { padding: clamp(110px, 14vw, 200px) 0; }
.process__rows { margin-top: clamp(56px, 7vw, 90px); border-top: 1px solid var(--line-soft); counter-reset: step; }
.process__row {
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr;
  gap: clamp(20px, 4vw, 72px);
  padding: clamp(36px, 4.5vw, 60px) 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.process__row strong {
  font-family: var(--font-display);
  font-weight: 300; font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--grey);
}
.process__row h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 38px);
}
.process__row p { color: var(--paper-dim); font-weight: 300; font-size: 15.5px; }
@media (max-width: 760px) {
  .process__row { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------- stats ---------- */
.stats {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--ink-2);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(48px, 5.5vw, 84px) 20px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1;
  display: block; margin-bottom: 14px;
}
.stat__num sup { font-size: 0.45em; color: var(--grey); }
.stat__label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--grey); font-weight: 600;
}
@media (max-width: 860px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
}

/* ---------- cta ---------- */
.cta {
  padding: clamp(130px, 18vw, 260px) 0;
  text-align: center;
  overflow: hidden;
}
.cta__mark {
  width: clamp(200px, 26vw, 380px);
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05; pointer-events: none;
}
.cta .display { max-width: 16ch; margin: 0 auto 48px; position: relative; }
.cta .btn { position: relative; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: clamp(70px, 8vw, 110px) 0 44px;
  overflow: hidden;
}
.footer__top {
  display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.footer__brand img { height: 34px; filter: invert(1); margin-bottom: 22px; }
.footer__brand p { color: var(--grey); font-size: 13.5px; font-weight: 300; max-width: 34ch; }
.footer__col h4 {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 22px; font-weight: 600;
}
.footer__col ul { list-style: none; display: grid; gap: 12px; }
.footer__col a {
  color: var(--paper-dim); font-size: 14px; font-weight: 300;
  transition: color 0.3s, padding-left 0.3s var(--ease-out);
}
.footer__col a:hover { color: var(--paper); padding-left: 6px; }
.footer__wordmark {
  width: 100%;
  opacity: 0.1;
  filter: invert(1);
  margin-bottom: 44px;
}
.footer__bottom {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--line-soft);
  padding-top: 30px;
  font-size: 12px; color: var(--grey); font-weight: 300;
  letter-spacing: 0.06em;
}

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--nav-h) + clamp(80px, 12vw, 160px)) 0 clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: -15% 0;
  background-size: cover; background-position: center;
  opacity: 0.28;
  will-change: transform;
}
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.5), var(--ink) 92%);
}
.page-hero .container { position: relative; }
.page-hero .lede { max-width: 56ch; margin-top: 36px; }

/* ---------- about specifics ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
  padding: clamp(100px, 13vw, 190px) 0;
}
.split__media { position: relative; }
.split__media img { width: 100%; height: auto; }
.split__media--frame::before {
  content: ""; position: absolute; inset: -22px 22px 22px -22px;
  border: 1px solid var(--line-soft);
  z-index: -1;
}
.split .lede { margin-top: 28px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.brand-moment {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(100px, 13vw, 180px) 0;
  text-align: center;
}
.brand-moment .kicker { color: #8b8880; justify-content: center; }
.brand-moment .kicker::before { background: #8b8880; }
.brand-moment video {
  width: min(420px, 70vw);
  margin: 40px auto 0;
  mix-blend-mode: multiply;
}
.brand-moment .display { max-width: 22ch; margin: 0 auto; }

.values { padding: clamp(100px, 13vw, 190px) 0; }
.values__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line-soft);
  border: 1px solid var(--line-soft);
  margin-top: clamp(56px, 7vw, 90px);
}
.value {
  background: var(--ink);
  padding: clamp(40px, 4.5vw, 64px);
  transition: background 0.5s;
}
.value:hover { background: var(--ink-2); }
.value h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  margin: 22px 0 14px;
}
.value p { color: var(--paper-dim); font-weight: 300; font-size: 15px; }
.value__index {
  font-family: var(--font-display); font-style: italic;
  color: var(--grey); font-size: 14px;
}
@media (max-width: 720px) { .values__grid { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.25fr;
  gap: clamp(56px, 8vw, 140px);
  padding-bottom: clamp(110px, 14vw, 200px);
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-info__item {
  padding: 30px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-info__item:first-child { border-top: 1px solid var(--line-soft); }
.contact-info__item h4 {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 10px; font-weight: 600;
}
.contact-info__item p, .contact-info__item a {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 400; color: var(--paper);
}
.contact-info__item a { border-bottom: 1px solid var(--line); transition: border-color 0.3s; }
.contact-info__item a:hover { border-color: var(--paper); }

.form { display: grid; gap: 8px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }
.field { position: relative; padding: 26px 0 10px; }
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px; font-weight: 300;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.4s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { cursor: pointer; }
.field select option { background: var(--ink-2); color: var(--paper); }
.field label {
  position: absolute; left: 0; top: 38px;
  font-size: 15px; color: var(--grey); font-weight: 300;
  pointer-events: none;
  transition: transform 0.35s var(--ease-out), font-size 0.35s, color 0.35s;
  transform-origin: 0 0;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--paper); }
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label,
.field select:focus ~ label,
.field.filled label {
  transform: translateY(-30px);
  font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--paper-dim);
}
.field__bar {
  position: absolute; bottom: 10px; left: 0;
  width: 100%; height: 1px;
  background: var(--paper);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 0.6s var(--ease-expo);
}
.field input:focus ~ .field__bar,
.field textarea:focus ~ .field__bar,
.field select:focus ~ .field__bar { transform: scaleX(1); }

.form__submit { margin-top: 34px; justify-self: start; }
.form__note { font-size: 12.5px; color: var(--grey); font-weight: 300; margin-top: 18px; }
.form__status {
  margin-top: 24px;
  font-size: 14px;
  display: none;
}
.form__status.ok { display: block; color: var(--paper); }
.form__status.err { display: block; color: #e07b6d; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-success {
  display: none;
  padding: 60px 0;
}
.form-success.show { display: block; }
.form-success .display { margin-bottom: 18px; }

/* ---------- legal page ---------- */
.legal { padding-bottom: clamp(100px, 13vw, 180px); }
.legal__layout {
  display: grid; grid-template-columns: 260px 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 900px) { .legal__layout { grid-template-columns: 1fr; } }
.legal__toc {
  position: sticky; top: 110px;
  border-left: 1px solid var(--line-soft);
  padding-left: 28px;
  display: grid; gap: 14px;
}
@media (max-width: 900px) { .legal__toc { position: static; } }
.legal__toc a {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grey); font-weight: 500;
  transition: color 0.3s, padding-left 0.3s var(--ease-out);
}
.legal__toc a:hover { color: var(--paper); padding-left: 6px; }
.legal__body { max-width: 72ch; }
.legal__body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 40px);
  margin: clamp(56px, 7vw, 90px) 0 24px;
  scroll-margin-top: 110px;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  margin: 40px 0 14px;
}
.legal__body p, .legal__body li {
  color: var(--paper-dim);
  font-weight: 300;
  font-size: 15.5px;
  margin-bottom: 16px;
}
.legal__body ul { padding-left: 22px; margin-bottom: 20px; }
.legal__body li { margin-bottom: 10px; }
.legal__body a { color: var(--paper); border-bottom: 1px solid var(--line); transition: border-color 0.3s; }
.legal__body a:hover { border-color: var(--paper); }
.legal__meta {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 40px; display: block;
}
.legal__divider {
  border: 0; border-top: 1px solid var(--line-soft);
  margin: clamp(64px, 8vw, 110px) 0;
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], .mask-line > span { opacity: 1 !important; transform: none !important; }
  .cursor, .grain { display: none; }
}
