/* ============================================================
   VEYLO STUDIO — pure black / bone white / gold ×3
   display: Archivo Black · ui & body: Jost · accent: Jost light italic
   ============================================================ */

:root {
  --black: #070707;
  --black-soft: #0d0d0c;
  --bone: #ece7dc;
  --bone-dim: rgba(236, 231, 220, 0.6);
  --bone-faint: rgba(236, 231, 220, 0.18);
  --bone-ghost: rgba(236, 231, 220, 0.07);
  --gold: #c9a227;
  --display: "Archivo Black", sans-serif;
  --sans: "Jost", sans-serif;
  --accent: "Jost", sans-serif;
  --ease-slam: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: auto; }

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--bone); color: var(--black); }

summary, .contact__submit { cursor: pointer; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 4vw;
  mix-blend-mode: difference;
}
.nav__logo {
  font-family: var(--display);
  font-size: 1.1rem; letter-spacing: 0.08em;
  color: var(--bone); text-decoration: none;
}
.nav__logo span { font-family: var(--sans); font-size: 0.6em; vertical-align: super; }
.nav__links { display: flex; gap: 2.6rem; }
.nav__links a {
  color: var(--bone); text-decoration: none;
  font-family: var(--sans); font-weight: 400;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  opacity: 0.8; transition: opacity 0.25s, letter-spacing 0.4s var(--ease-slam);
}
.nav__links a:hover { opacity: 1; letter-spacing: 0.3em; }
@media (max-width: 640px) { .nav__links { display: none; } }

/* ============================================================
   HERO — full-bleed render, 100vh
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 560px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.02);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,7,0.6) 0%, rgba(7,7,7,0.15) 35%, rgba(7,7,7,0.15) 60%, rgba(7,7,7,0.88) 100%),
    radial-gradient(ellipse 65% 55% at 50% 52%, rgba(7,7,7,0.45), transparent 72%);
}

.hero__content {
  position: relative; z-index: 2; text-align: center; width: 100%;
  padding: 0 4vw;
  /* keep clear of the fixed nav above and the scroll hint below on short screens */
  padding-top: 14vh; padding-bottom: 10vh;
}
.hero__eyebrow {
  font-family: var(--sans); font-weight: 400;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bone);
  opacity: 0.85;
  margin-bottom: 3vh;
  animation: fadeUp 1.2s var(--ease-slam) both 0.9s;
}
.hero__title {
  font-family: var(--display);
  /* width-driven, but capped by height so it never collides with the manifesto or scroll hint */
  font-size: clamp(3.2rem, min(16vw, 22vh), 18rem);
  line-height: 0.86;
  letter-spacing: -0.015em;
  color: var(--bone);
  display: flex; flex-direction: column; align-items: center;
}
.hero__line { display: block; animation: heroRise 1.4s var(--ease-slam) both 0.15s; }
.hero__line--2 { animation-delay: 0.32s; }
@keyframes heroRise {
  from { transform: translateY(0.55em); opacity: 0; clip-path: inset(0 0 100% 0); }
  to   { transform: translateY(0);      opacity: 1; clip-path: inset(-50% 0 -50% 0); }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.hero__manifesto {
  margin: 3vh auto 0;
  max-width: 30em;
  font-family: var(--accent); font-style: italic; font-weight: 300;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  line-height: 1.3; letter-spacing: 0.01em;
  color: var(--bone);
  min-height: 1.4em;
}
.caret {
  display: inline-block; width: 1px; height: 1em;
  background: var(--bone); margin-left: 3px;
  vertical-align: -0.12em;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero__scrollhint {
  position: absolute; bottom: 3vh; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-family: var(--sans); font-weight: 400;
  font-size: 0.62rem; letter-spacing: 0.5em;
  color: var(--bone-dim);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scrollbar { width: 1px; height: 44px; background: var(--bone-faint); overflow: hidden; display: block; }
.hero__scrollbar i { display: block; width: 100%; height: 40%; background: var(--bone); animation: drip 1.8s ease-in-out infinite; }
@keyframes drip { from { transform: translateY(-110%); } to { transform: translateY(280%); } }
/* short viewports: drop the hint entirely rather than let it collide */
@media (max-height: 640px) { .hero__scrollhint { display: none; } .hero__content { padding-bottom: 6vh; } }

/* ============================================================
   SECTION HEADS
   ============================================================ */
.section-head {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2.2vh;
  padding: 14vh 4vw 7vh;
}
.section-head__title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  line-height: 0.92; text-align: left;
  text-transform: uppercase;
}
.section-head__note {
  font-family: var(--sans); font-weight: 400;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bone-dim); text-align: left;
}

/* ============================================================
   WORK GRID — hover video reveals
   ============================================================ */
.work { background: var(--black); padding-bottom: 12vh; }
.work__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5vw; padding: 0 4vw;
}
@media (max-width: 860px) { .work__grid { grid-template-columns: 1fr; } }

.work-card { position: relative; }
.work-card:nth-child(2) { transform: translateY(9vh); }
@media (max-width: 860px) { .work-card:nth-child(2) { transform: none; } }
/* an odd last card runs full width; 16:9 matches the masterplan renders so they show uncropped */
@media (min-width: 861px) {
  .work-card:last-child:nth-child(odd) { grid-column: 1 / -1; margin-top: 9vh; }
  .work-card:last-child:nth-child(odd) .work-card__media { aspect-ratio: 16 / 9; }
}

.work-card__media {
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 2;          /* matches the 3:2 renders, so covers show uncropped */
  background: var(--black-soft);
  border: 1px solid var(--bone-faint);
}
.work-card__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: none;
  transform: scale(1.35);
  transition: transform 0.9s var(--ease-slam), opacity 0.6s;
  opacity: 0;
}
.work-card[data-crop="0"] .work-card__video { object-position: 0% 50%; }
.work-card[data-crop="1"] .work-card__video { object-position: 35% 50%; }
.work-card[data-crop="2"] .work-card__video { object-position: 65% 50%; }
.work-card[data-crop="3"] .work-card__video { object-position: 100% 50%; }
.work--has-video .work-card__video { display: block; }
.work--has-video .work-card:hover .work-card__video { opacity: 1; transform: scale(1.12); }
.work--has-video .work-card:hover .work-card__fallback { opacity: 0; }

/* photo cards: the render shown plainly; with several photos, hovering slides through them */
.work-card__slides {
  position: absolute; inset: 0;
  display: flex;
  transition: transform 0.9s var(--ease-slam);
}
.work-card__slides img {
  flex: 0 0 100%; width: 100%; height: 100%;
  object-fit: cover;
}
.work-card__dots {
  position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2;
  display: flex; gap: 5px;
  opacity: 0; transition: opacity 0.4s;
}
.work-card--photo:hover .work-card__dots { opacity: 1; }
.work-card__dots i {
  flex: 1; height: 2px; max-width: 46px;
  background: rgba(236, 231, 220, 0.35);
  transition: background 0.4s;
}
.work-card__dots i.is-on { background: var(--bone); }

/* fallback: typographic showreel that wakes on hover */
.work-card__fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 6%;
  transition: opacity 0.5s;
}
.work-card__marquee {
  white-space: nowrap; overflow: hidden;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.2vw, 4.6rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 231, 220, 0.34);
  line-height: 1;
}
.work-card__marquee--rev {
  font-size: clamp(0.7rem, 1.1vw, 0.9rem);
  -webkit-text-stroke: 0;
  color: rgba(236, 231, 220, 0.3);
  font-family: var(--sans); font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
}
.work-card__marquee span {
  display: inline-block; padding-right: 0.5em;
  animation: slide 14s linear infinite;
  animation-play-state: paused;
}
.work-card__marquee--rev span { animation: slideRev 18s linear infinite; animation-play-state: paused; }
.work-card:hover .work-card__marquee span { animation-play-state: running; }
@keyframes slide    { to { transform: translateX(-50%); } }
@keyframes slideRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.work-card:hover .work-card__marquee { -webkit-text-stroke-color: rgba(236, 231, 220, 0.85); }
.work-card:hover .work-card__marquee--rev { color: rgba(236, 231, 220, 0.7); }
.work-card__marquee, .work-card__marquee--rev { transition: color 0.5s, -webkit-text-stroke-color 0.5s; }

.work-card__meta {
  display: flex; align-items: baseline; gap: 1.2rem;
  padding: 1.3rem 0.2rem;
  border-bottom: 1px solid var(--bone-faint);
}
.work-card__meta h3 {
  font-family: var(--display); font-size: 1.05rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.work-card__meta p {
  font-family: var(--sans); font-weight: 300;
  color: var(--bone-dim); font-size: 0.95rem; flex: 1;
}
.work-card__year {
  font-family: var(--sans); font-weight: 400;
  color: var(--bone-dim); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
}
@media (max-width: 640px) { .work-card__meta { flex-wrap: wrap; gap: 0.4rem 1rem; } }

/* ============================================================
   SERVICES — pinned editorial pairs (A/B → C/D → E/F)
   ============================================================ */
.services { background: var(--black); padding-bottom: 12vh; }
.pairs { height: 900vh; position: relative; }
.pairs__sticky {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden;
}
.pair {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  /* three rows: each photo spans two, text tucks into the free corner */
  grid-template-rows: minmax(0, 0.8fr) minmax(0, 1fr) minmax(0, 0.8fr);
  grid-template-areas: "figA textA" "figA figB" "textB figB";
  column-gap: 3vw; row-gap: 3vh;
  padding: 11vh 4vw 8vh;
  opacity: 0; transform: translateY(40px);
  transition: opacity 1.2s var(--ease-slam), transform 1.5s var(--ease-slam);
  pointer-events: none;
}
/* a stage with one service: the photo takes the full height on a wider left column */
.pair--solo { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); grid-template-areas: "figA textA" "figA textA" "figA textA"; }
@media (min-width: 901px) { .pair.pair--solo .pair__text .pair__entry { align-self: center; } }
.pair.is-active { opacity: 1; transform: none; pointer-events: auto; }
.pair.is-past   { transform: translateY(-40px); }

/* media/text wrappers dissolve so the four pieces sit on the 2×2 grid */
.pair__media, .pair__text { display: contents; }
.pair__media .pair__fig:nth-child(1) { grid-area: figA; }
.pair__media .pair__fig:nth-child(2) { grid-area: figB; }
.pair__text .pair__entry:nth-child(1) { grid-area: textA; align-self: start; padding-top: 0.6vh; }
.pair__text .pair__entry:nth-child(2) { grid-area: textB; align-self: start; padding-top: 1vh; }
.pair__fig {
  position: relative; margin: 0; overflow: hidden; min-height: 0;
  border: 1px solid var(--bone-faint);
  background-image:
    linear-gradient(var(--bone-ghost) 1px, transparent 1px),
    linear-gradient(90deg, var(--bone-ghost) 1px, transparent 1px);
  background-size: 32px 32px; background-position: center;
  display: flex; align-items: center; justify-content: center;
  padding: 6% 12%;
}
.pair__fig svg {
  width: auto; height: 100%; max-width: 100%;
  fill: none; stroke: var(--bone); stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round; opacity: 0.7;
}
.pair__fig--photo { padding: 0; background-image: none; border: 0; }
.pair__fig--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* slow drift: the picture breathes inside its frame; photo is scaled so no edge shows */
.pair__fig svg, .pair__fig--photo img { animation: drift 15s ease-in-out infinite; }
.pair__fig--photo img { transform-origin: center; animation-name: driftPhoto; }
.pair__fig:nth-child(2) svg, .pair__fig:nth-child(2) img { animation-delay: -7.5s; }
/* renders on a black ground (3D floor plan): show the whole image, never crop it */
.pair__fig--fit { background: #060606; }
.pair__fig--fit img { object-fit: contain; animation-name: drift; }
@keyframes drift      { 0%, 100% { transform: translateY(14px); }  50% { transform: translateY(-14px); } }
@keyframes driftPhoto { 0%, 100% { transform: scale(1.12) translateY(3.2%); } 50% { transform: scale(1.12) translateY(-3.2%); } }

/* right: annotated text — note column · body */
.pair__entry {
  display: grid; grid-template-columns: minmax(0, 8.5rem) minmax(0, 1fr);
  gap: 1.6rem; align-items: start;
}
.pair__note {
  font-family: var(--sans); font-weight: 300;
  font-size: 0.78rem; line-height: 1.55;
  color: var(--bone-dim);
  padding-top: 0.35rem;
}
.pair__body h3 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  line-height: 1.05; text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}
.pair__hook {
  font-family: var(--accent); font-style: italic; font-weight: 300;
  font-size: clamp(1rem, 1.25vw, 1.15rem); line-height: 1.4;
  color: var(--bone); margin-bottom: 0.7rem;
}
.pair__desc {
  font-family: var(--sans); font-weight: 300;
  font-size: 0.95rem; line-height: 1.65;
  color: var(--bone-dim); max-width: 34em;
}

/* progress */
.pairs__count {
  position: absolute; right: 4vw; bottom: 3.2vh;
  font-family: var(--sans); font-weight: 400;
  font-size: 0.66rem; letter-spacing: 0.3em; color: var(--bone-dim);
}
.pairs__bar {
  position: absolute; left: 4vw; right: 4vw; bottom: 3vh;
  height: 1px; background: var(--bone-faint);
  margin-right: 6rem;
}
.pairs__bar i { display: block; height: 100%; width: 0; background: var(--bone); transition: width 0.4s var(--ease-slam); }

.pair__price {
  margin-top: 0.9rem;
  font-family: var(--sans); font-weight: 400;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--bone);
}
.svc__note {
  margin: 7vh auto 0;
  max-width: 40em; text-align: center;
  font-family: var(--accent); font-style: italic; font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  color: var(--bone-dim);
  padding: 0 4vw;
}

/* below 900px: no pinning — the pairs simply stack */
@media (max-width: 900px) {
  .pairs { height: auto; }
  .pairs__sticky { position: static; height: auto; overflow: visible; }
  .pair {
    position: static; opacity: 1; transform: none; pointer-events: auto;
    grid-template-columns: 1fr; grid-template-rows: none; grid-template-areas: none;
    row-gap: 3vh;
    padding: 0 4vw 9vh;
  }
  .pair__media .pair__fig, .pair__text .pair__entry { grid-area: auto; padding: 0; }
  .pair__media .pair__fig:nth-child(1) { order: 1; }
  .pair__text .pair__entry:nth-child(1) { order: 2; margin-bottom: 4vh; }
  .pair__text .pair__entry:nth-child(2) { order: 3; }
  .pair__media .pair__fig:nth-child(2) { order: 4; }
  .pair__fig { aspect-ratio: 4 / 3; }
  .pair__entry { grid-template-columns: 1fr; gap: 0.9rem; }
  .pair__note { order: 3; padding-top: 0; }
  .pairs__count, .pairs__bar { display: none; }
}
@media (max-width: 560px) { .pair__media { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS — how we work
   ============================================================ */
.process { background: var(--black); padding-bottom: 14vh; }
.timeline {
  list-style: none;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; padding: 0 4vw;
  position: relative;
}
.tl {
  position: relative;
  padding: 0 2rem 0 0;
  display: flex; flex-direction: column; gap: 0.9rem;
}
/* the rail: one hairline running under every dot */
.tl::before {
  content: ""; position: absolute; left: 0; right: 0; top: calc(2.3rem + 4px);
  height: 1px; background: var(--bone-faint);
}
.tl:last-child::before { right: auto; width: 100%; }
.tl__day {
  font-family: var(--sans); font-weight: 400;
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bone-dim);
  height: 1.4rem;
}
.tl__dot {
  position: relative; z-index: 1;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--black); border: 1px solid var(--gold);
  margin: 0 0 1.35rem;
  transition: background 0.8s, box-shadow 0.8s;
}
.tl:hover .tl__dot, .tl.is-reached .tl__dot { background: var(--gold); }
.tl.is-current .tl__dot { box-shadow: 0 0 0 5px rgba(201, 162, 39, 0.18); }
.tl h3, .tl .tl__day { transition: color 0.8s; }
.tl.is-current .tl__day { color: var(--gold); }
/* the runner: a gold dot that travels the rail from step to step, drawing a gold line behind it */
.timeline__runner, .timeline__fill { position: absolute; left: 0; top: 0; z-index: 2; pointer-events: none; opacity: 0; list-style: none; }
.timeline.is-running .timeline__runner, .timeline.is-running .timeline__fill { opacity: 1; }
.timeline__runner {
  width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 14px 2px rgba(201, 162, 39, 0.55);
  transition: transform 2.8s cubic-bezier(0.45, 0, 0.2, 1), opacity 0.6s;
}
.timeline__fill {
  z-index: 0; width: 0; height: 1px; background: var(--gold); transform-origin: 0 0;
  transition: width 2.8s cubic-bezier(0.45, 0, 0.2, 1), height 2.8s cubic-bezier(0.45, 0, 0.2, 1), opacity 0.6s;
}
.timeline.is-resetting .timeline__runner, .timeline.is-resetting .timeline__fill { transition: opacity 0.6s; opacity: 0; }
.tl h3 {
  font-family: var(--display);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.1; text-transform: uppercase; letter-spacing: 0.02em;
  min-height: 2.2em;
}
.tl p {
  font-family: var(--sans); font-weight: 300;
  font-size: 0.93rem; line-height: 1.65;
  color: var(--bone-dim);
}
.tl:nth-child(2) { transition-delay: 0.08s; }
.tl:nth-child(3) { transition-delay: 0.16s; }
.tl:nth-child(4) { transition-delay: 0.24s; }
.tl:nth-child(5) { transition-delay: 0.32s; }
@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; }
  .tl { padding: 0 0 3.2rem 2.2rem; }
  .tl::before { left: 4px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .tl:last-child::before { bottom: auto; height: 100%; width: 1px; }
  .tl__dot { position: absolute; left: 0; top: 2.2rem; margin: 0; }
  .tl h3 { min-height: 0; }
  .tl:nth-child(n) { transition-delay: 0s; }
}

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--black); padding-bottom: 10vh; }
.faq__list { margin: 0 4vw; border-top: 1px solid var(--bone-faint); }
.faq__item { border-bottom: 1px solid var(--bone-faint); }
.faq__item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  padding: 1.15rem 0;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.02em;
  font-size: clamp(0.8rem, 1.05vw, 1rem); line-height: 1.2;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; flex: none;
  font-family: var(--sans); font-weight: 300; font-size: 1.25rem; line-height: 1;
  color: var(--bone-dim); transition: transform 0.5s var(--ease-slam);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 3rem 1.5rem 0; max-width: 46em;
  font-family: var(--sans); font-weight: 300; font-size: 0.93rem; line-height: 1.65;
  color: var(--bone-dim);
}

.footer {
  background: var(--black);
  padding: 20vh 4vw 5vh;
  text-align: center;
  position: relative;
}
.footer__kicker {
  font-family: var(--sans); font-weight: 400;
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 4vh;
}
.footer__cta {
  font-family: var(--display);
  font-size: clamp(2.6rem, 9.5vw, 10rem);
  line-height: 0.95; text-transform: uppercase;
  letter-spacing: -0.01em;
}
.footer__fight {
  font-family: var(--accent); font-style: italic; font-weight: 300;
  text-transform: none; letter-spacing: 0;
  color: var(--gold);
}
.footer__line {
  margin: 5vh auto 0;
  max-width: 34em;
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--bone-dim);
}
.footer__line strong { font-weight: 500; color: var(--bone); }
/* contact form */
.contact {
  margin: 7vh auto 0; max-width: 34rem; text-align: left;
  display: grid; gap: 1.6rem;
}
.contact__honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact__field { display: grid; gap: 0.5rem; }
.contact__field span {
  font-family: var(--sans); font-weight: 400;
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--bone-dim);
}
.contact__field input, .contact__field textarea {
  width: 100%; background: transparent; color: var(--bone);
  border: 0; border-bottom: 1px solid var(--bone-faint); border-radius: 0;
  padding: 0.6rem 0; outline: none; resize: vertical;
  font-family: var(--sans); font-weight: 300; font-size: 1.1rem; line-height: 1.5;
  transition: border-color 0.3s;
}
.contact__field input:focus, .contact__field textarea:focus { border-bottom-color: var(--bone); }
.contact__field input:-webkit-autofill { -webkit-text-fill-color: var(--bone); box-shadow: 0 0 0 100px var(--black) inset; }
.contact__submit {
  margin-top: 0.6rem; padding: 1.15rem 1.5rem;
  background: var(--bone); color: var(--black); border: 1px solid var(--bone);
  font-family: var(--sans); font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  transition: background 0.3s, color 0.3s, opacity 0.3s;
}
.contact__submit:hover { background: transparent; color: var(--bone); }
.contact__submit[disabled] { opacity: 0.5; }
.contact__status { min-height: 1.5em; font-family: var(--sans); font-weight: 300; font-size: 0.98rem; color: var(--bone-dim); }
.contact__status.is-ok { color: var(--bone); }
.contact__privacy { font-family: var(--sans); font-weight: 300; font-size: 0.78rem; line-height: 1.5; color: var(--bone-dim); }
.footer__mail {
  display: inline-block;
  margin-top: 5vh;
  font-family: var(--accent); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  color: var(--gold);                    /* gold accent */
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.15em;
  transition: opacity 0.3s;
}
.footer__mail:hover { opacity: 0.7; }
.footer__bottom {
  margin-top: 16vh;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 2rem; flex-wrap: wrap;
  border-top: 1px solid var(--bone-faint);
  padding-top: 3vh;
}
.footer__socials { display: flex; gap: 2.4rem; }
.footer__socials a {
  color: var(--bone-dim); text-decoration: none;
  font-family: var(--sans); font-weight: 400;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  transition: color 0.25s;
}
.footer__socials a:hover { color: var(--bone); }
.footer__legal {
  color: var(--bone-faint);
  font-family: var(--sans); font-weight: 400;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.9s var(--ease-slam), transform 0.9s var(--ease-slam); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__line, .hero__eyebrow, .hero__scrollbar i, .caret { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .work-card__marquee span { animation: none !important; }
  .pair__fig svg, .pair__fig--photo img { animation: none !important; }
}
