/* ═══════════════════════════════════════════════════════
   THKT STUDIOS · style.css v3
   Space Black #0A0A0A · Charcoal #2E2E2E · Stone #888880
   Cream #F2EFE7 · Burnt Orange #C94B0C
   Display: Bebas Neue · Accent: DM Serif Display Italic
   Body: DM Sans 300/400
   ═══════════════════════════════════════════════════════ */

:root {
  --black:   #0A0A0A;
  --coal:    #2E2E2E;
  --stone:   #888880;
  --cream:   #F2EFE7;
  --orange:  #C94B0C;

  --cream-40: rgba(242,239,231,0.40);
  --cream-12: rgba(242,239,231,0.12);
  --cream-06: rgba(242,239,231,0.06);

  --display: 'Bebas Neue', Impact, sans-serif;
  --serif:   'DM Serif Display', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;

  --nav-h:  72px;
  --mw:     1320px;
  --px:     clamp(24px, 5.5vw, 88px);
  --expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --io:     cubic-bezier(0.76, 0, 0.24, 1);
}

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
body.no-scroll  { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ── LOADER ───────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--io), visibility .7s var(--io);
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }

.ld-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}

.ld-arc { width: 68px; height: 68px; }

/* Arc draws itself in */
.ld-path {
  stroke-dasharray: 118;
  stroke-dashoffset: 118;
  animation: arcIn 1s var(--expo) .15s forwards;
}
@keyframes arcIn { to { stroke-dashoffset: 0; } }

.ld-word {
  display: flex; align-items: baseline; gap: 9px;
  opacity: 0; transform: translateY(6px);
  animation: fadeUp .5s var(--expo) 1s forwards;
}
.ld-t {
  font-family: var(--display);
  font-size: 30px; letter-spacing: .05em;
  color: var(--cream);
}
.ld-s {
  font-family: var(--sans); font-size: 9.5px; font-weight: 400;
  letter-spacing: .55em; text-transform: uppercase;
  color: var(--stone);
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ── GRAIN ────────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ── CURSOR ───────────────────────────────────────────── */
#c-dot, #c-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9997;
  border-radius: 50%; transform: translate(-50%,-50%);
  opacity: 0; transition: opacity .3s ease;
}
#c-dot  { width: 5px; height: 5px; background: var(--cream); }
#c-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--cream-40);
  transition: width .35s var(--expo), height .35s var(--expo),
              border-color .3s ease, opacity .3s ease;
}
body.cr-ready #c-dot,
body.cr-ready #c-ring { opacity: 1; }
body.cr-hover #c-ring { width: 54px; height: 54px; border-color: var(--orange); }
@media (hover:none) { #c-dot, #c-ring { display: none; } }

/* ── NAV ──────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 900;
  transition: background .4s ease, backdrop-filter .4s ease;
}
#nav.scrolled {
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 var(--cream-06);
}

.nav-wrap {
  max-width: var(--mw); margin: 0 auto;
  padding: 0 var(--px); height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  transition: opacity .3s ease;
}
.nav-logo:hover { opacity: .7; }

.nl-thkt {
  font-family: var(--display); font-size: 21px;
  letter-spacing: .06em; color: var(--cream); line-height: 1;
}
.nl-studios {
  font-family: var(--sans); font-size: 7.5px; font-weight: 400;
  letter-spacing: .5em; text-transform: uppercase;
  color: var(--stone); display: block; margin-top: 1px;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nl {
  font-family: var(--sans); font-size: 12.5px; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--stone); transition: color .25s ease;
}
.nl:hover, .nl.active { color: var(--cream); }

.nl-cta {
  font-family: var(--sans); font-size: 12.5px; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream);
  padding: 9px 22px;
  border: 1px solid rgba(242,239,231,.2);
  border-radius: 1px;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.nl-cta:hover { background: var(--orange); border-color: var(--orange); }

.burger {
  display: none; flex-direction: column; gap: 7px; padding: 6px;
}
.burger span {
  display: block; width: 26px; height: 1px; background: var(--cream);
  transition: transform .35s var(--io), opacity .25s ease;
  transform-origin: center;
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child  { transform: translateY(-4px) rotate(-45deg); }

/* ── MOBILE MENU ──────────────────────────────────────── */
#mob-menu {
  position: fixed; inset: 0; background: var(--black); z-index: 800;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 56px;
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--io), visibility .45s var(--io);
}
#mob-menu.open { opacity: 1; visibility: visible; }

.mob-links {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.mob-link {
  font-family: var(--display);
  font-size: clamp(52px, 11vw, 88px);
  letter-spacing: .03em; color: var(--cream);
  opacity: 0; transform: translateY(22px);
  transition: color .3s ease, opacity .5s var(--expo), transform .5s var(--expo);
}
.mob-link:nth-child(1) { transition-delay: .04s; }
.mob-link:nth-child(2) { transition-delay: .08s; }
.mob-link:nth-child(3) { transition-delay: .12s; }
.mob-link:nth-child(4) { transition-delay: .16s; }
#mob-menu.open .mob-link { opacity: 1; transform: translateY(0); }
.mob-link:hover { color: var(--orange); }

.mob-foot {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--stone);
}

/* ── HERO ─────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 64px) var(--px) 56px;
  position: relative; overflow: hidden;
}

/* Ghost arc in background */
.hero-arc-bg {
  position: absolute;
  right: -6%; top: 50%; transform: translateY(-50%);
  width: clamp(320px, 52vw, 720px);
  height: clamp(320px, 52vw, 720px);
  pointer-events: none; z-index: 0;
  opacity: 1;
}
.hero-arc-bg svg { width: 100%; height: 100%; }

.hero-body {
  max-width: var(--mw); margin: 0 auto; width: 100%;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: .35em; text-transform: uppercase; color: var(--stone);
  margin-bottom: 28px;
  overflow: hidden;
}
.eyebrow-reveal {
  display: inline-block;
  opacity: 0; transform: translateY(100%);
  transition: opacity .6s ease, transform .6s var(--expo);
  transition-delay: var(--ed, 0ms);
}
body:not(.is-loading) .eyebrow-reveal { opacity: 1; transform: translateY(0); }
.eyebrow-dot { color: var(--orange); }

/* Hero headline — massive Bebas */
.hero-title {
  font-family: var(--display);
  font-size: clamp(68px, 11.5vw, 180px);
  line-height: .95; letter-spacing: .01em;
  color: var(--cream);
  margin-bottom: clamp(24px, 3.5vw, 44px);
}

.ht-line {
  display: block; overflow: hidden;
}
.ht-line > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1s var(--expo);
  transition-delay: var(--d, 0ms);
}
body:not(.is-loading) .ht-line > span { transform: translateY(0); }

/* "EXPERIENCES" in orange */
.ht-orange > span { color: var(--orange); }

/* Hero serif italic sub */
.hero-serif {
  margin-bottom: clamp(32px, 4vw, 48px);
  overflow: hidden;
}
.hs-reveal {
  display: block; overflow: hidden;
  opacity: 0; transform: translateY(12px);
  transition: opacity .7s ease, transform .7s var(--expo);
  transition-delay: var(--hsd, 0ms);
}
body:not(.is-loading) .hs-reveal { opacity: 1; transform: translateY(0); }

.hero-serif em {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 32px);
  color: var(--cream-40);
  letter-spacing: 0;
  display: block;
}

/* Hero CTA */
.hero-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 12.5px; font-weight: 400;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--cream);
  padding: 13px 28px;
  border: 1px solid rgba(242,239,231,.22);
  border-radius: 1px;
  opacity: 0;
  transition: background .3s ease, border-color .3s ease,
              transform .4s var(--expo), opacity .6s ease;
  transition-delay: 900ms, 900ms, 0ms, 900ms;
}
body:not(.is-loading) .hero-btn { opacity: 1; }
.hero-btn:hover { background: var(--orange); border-color: var(--orange); }
.hero-btn svg { transition: transform .35s var(--expo); }
.hero-btn:hover svg { transform: translate(3px, 3px); }

/* Hero footer bar */
.hero-foot {
  max-width: var(--mw); margin: 0 auto; width: 100%;
  display: flex; align-items: center; gap: 18px;
  position: relative; z-index: 1;
  opacity: 0; transition: opacity .6s ease 1.1s;
}
body:not(.is-loading) .hero-foot { opacity: 1; }

.hero-scroll-label {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: .4em; text-transform: uppercase; color: var(--stone);
}
.hero-scroll-line {
  flex: 1; max-width: 120px; height: 1px;
  background: var(--cream-12); overflow: hidden; position: relative;
}
.hsl-inner {
  position: absolute; inset: 0; background: var(--orange);
  transform: translateX(-100%);
  animation: scanLine 2.4s ease-in-out 1.4s infinite;
}
@keyframes scanLine {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
.hero-est {
  margin-left: auto;
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: .45em; text-transform: uppercase;
  color: rgba(242,239,231,.18);
}

/* ── MARQUEE STRIP ────────────────────────────────────── */
/* The ONE full-background orange moment — used with intent */
.marquee-strip {
  background: var(--orange);
  overflow: hidden; padding: 15px 0;
}
.marquee-track { display: flex; white-space: nowrap; }
.marquee-row {
  display: inline-flex; align-items: center; gap: 32px;
  padding-right: 32px;
  animation: marqueeScroll 28s linear infinite;
  font-family: var(--display); font-size: 17px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--black);
}
.md { opacity: .45; font-size: 20px; line-height: 1; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SHARED SECTION ELEMENTS ─────────────────────────── */
.sec-tag {
  display: block; font-family: var(--sans);
  font-size: 11px; font-weight: 400; letter-spacing: .45em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 20px;
}
.sec-title {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 108px);
  line-height: .93; letter-spacing: .01em;
  color: var(--cream);
}

/* Reveal: line clip */
.rv-lines .rl {
  display: block; overflow: hidden;
}
.rv-lines .rl > span {
  display: block; transform: translateY(105%);
  transition: transform .85s var(--expo);
}
.rv-lines.vis .rl > span { transform: translateY(0); }
.rv-lines .rl:nth-child(2) > span { transition-delay: .07s; }
.rv-lines .rl:nth-child(3) > span { transition-delay: .14s; }

/* Reveal: fade + lift */
.rv-fade {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--expo), transform .7s var(--expo);
  transition-delay: var(--rv-d, 0ms);
}
.rv-fade.vis { opacity: 1; transform: translateY(0); }

/* Reveal: service row */
.rv-svc {
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s var(--expo), transform .6s var(--expo);
}
.rv-svc.vis { opacity: 1; transform: translateY(0); }
.rv-svc:nth-child(1) { transition-delay: 0ms; }
.rv-svc:nth-child(2) { transition-delay: 60ms; }
.rv-svc:nth-child(3) { transition-delay: 120ms; }
.rv-svc:nth-child(4) { transition-delay: 180ms; }
.rv-svc:nth-child(5) { transition-delay: 240ms; }

/* ── ABOUT ────────────────────────────────────────────── */
#about {
  padding: clamp(88px, 12vw, 176px) var(--px);
  background: var(--cream);
}

.about-grid {
  max-width: var(--mw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 9vw, 130px); align-items: start;
}

/* About section on cream bg — flip colors */
#about .sec-tag    { color: var(--orange); }
#about .rv-fade    { color: inherit; }

.about-title {
  font-family: var(--display);
  font-size: clamp(52px, 6.5vw, 96px);
  line-height: .93; letter-spacing: .01em;
  color: var(--black); margin-top: 8px;
}

/* About title lines on cream bg */
#about .rv-lines .rl > span { color: var(--black); }

/* "the moment." in italic serif */
.about-serif > span { color: inherit; }
.about-serif em {
  font-family: var(--serif); font-style: italic;
  font-size: .88em; color: var(--orange); letter-spacing: 0;
}

.about-p {
  font-size: clamp(14px, 1.4vw, 17px); font-weight: 300;
  line-height: 1.78; color: rgba(10,10,10,0.6);
  margin-bottom: 20px;
}

.about-traits {
  display: flex; gap: 0;
  border-top: 1px solid rgba(10,10,10,0.1); padding-top: 28px;
  margin-top: 8px;
}
.about-traits span {
  font-family: var(--sans); font-size: 11.5px; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase; color: var(--black);
  padding: 8px 18px 8px 0; margin-right: 18px;
  border-right: 1px solid rgba(10,10,10,0.1);
  white-space: nowrap;
}
.about-traits span:last-child { border-right: none; }

.about-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 36px;
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase; color: var(--black);
  border-bottom: 1px solid rgba(10,10,10,0.25);
  padding-bottom: 3px;
  transition: gap 0.3s var(--expo), border-color 0.3s ease;
}
.about-cta:hover { gap: 16px; border-color: var(--orange); }
.about-cta-arrow {
  display: inline-block; color: var(--orange);
  transition: transform 0.3s var(--expo);
}
.about-cta:hover .about-cta-arrow { transform: translateX(4px); }

/* ── WORK ─────────────────────────────────────────────── */
#work {
  padding: clamp(88px, 12vw, 176px) var(--px);
  background: var(--coal);
}

.work-head {
  max-width: var(--mw); margin: 0 auto 64px;
}

.work-grid {
  max-width: var(--mw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.wc-featured { grid-column: 1 / -1; }

/* Card */
.wc {
  position: relative; overflow: hidden;
  background: var(--black); cursor: pointer;
  transition: transform .3s ease;
}
.wc:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }

.wc-media {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
}
.wc-featured .wc-media { aspect-ratio: 21/9; }

/* Image placeholders (replace with real photography) */
.wc-bg {
  width: 100%; height: 100%;
  transition: transform .9s var(--expo);
}
.wc:hover .wc-bg { transform: scale(1.05); }

.wc-golden {
  background:
    radial-gradient(ellipse 80% 60% at 25% 75%, rgba(201,75,12,.7) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(180,120,50,.5) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 60% 50%, rgba(120,60,20,.4) 0%, transparent 60%),
    #1A0C06;
}
.wc-kiehls {
  background:
    radial-gradient(ellipse 70% 55% at 75% 65%, rgba(40,65,110,.8) 0%, transparent 55%),
    radial-gradient(ellipse 55% 60% at 20% 25%, rgba(20,35,70,.6) 0%, transparent 50%),
    #060A10;
}
.wc-dark {
  background:
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(46,46,46,.6) 0%, transparent 60%),
    #0A0A0A;
}

.wc-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,10,10,.96) 0%,
    rgba(10,10,10,.35) 45%,
    transparent 100%);
}

.wc-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(20px, 3vw, 38px);
}

.wc-meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 10px;
}
.wc-tag {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--orange);
}
.wc-loc {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: var(--stone);
}

.wc-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 56px);
  line-height: 1; letter-spacing: .02em; color: var(--cream);
  margin-bottom: 10px;
  transition: color .3s ease;
}
.wc:hover .wc-title { color: var(--cream); }

.wc-desc {
  font-size: 14px; font-weight: 300; line-height: 1.65;
  color: rgba(242,239,231,.55); margin-bottom: 18px;
  max-width: 520px;
  opacity: 0; transform: translateY(7px);
  transition: opacity .4s ease, transform .4s ease;
}
.wc:hover .wc-desc,
.wc:focus .wc-desc { opacity: 1; transform: translateY(0); }

.wc-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; color: var(--cream);
  padding-bottom: 2px; border-bottom: 1px solid rgba(242,239,231,.2);
  transition: color .3s ease, border-color .3s ease;
}
.wc-link:hover { color: var(--orange); border-color: var(--orange); }
.wc-link span { display: inline-block; transition: transform .3s var(--expo); }
.wc-link:hover span { transform: translateX(5px); }

/* ── SERVICES ─────────────────────────────────────────── */
#services {
  padding: clamp(88px, 12vw, 176px) var(--px);
  background: var(--black);
}

.svc-inner { max-width: var(--mw); margin: 0 auto; }

.svc-head {
  max-width: 680px;
  margin-bottom: clamp(56px, 8vw, 100px);
}

.svc-list { display: flex; flex-direction: column; }

.svc-row {
  display: grid;
  grid-template-columns: 68px 1fr 28px;
  gap: 32px; align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--cream-06);
  cursor: default;
  transition: background .3s ease;
}
.svc-row:last-child { border-bottom: 1px solid var(--cream-06); }
.svc-row:hover { background: rgba(242,239,231,.02); }

.svc-n {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: .2em; color: var(--orange); padding-top: 5px;
}

.svc-name {
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.05; letter-spacing: .02em; color: var(--cream);
  margin-bottom: 5px;
  transition: color .3s ease;
}

.svc-sub {
  font-family: var(--sans); font-size: 10.5px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: var(--stone);
  margin-bottom: 10px;
}

.svc-desc {
  font-size: clamp(13px, 1.2vw, 15px); font-weight: 300;
  line-height: 1.72; color: rgba(242,239,231,.45);
  max-width: 560px;
}

.svc-arrow {
  font-size: 18px; color: var(--cream-12); margin-top: 5px;
  transition: color .3s ease, transform .3s var(--expo);
}
.svc-row:hover .svc-arrow { color: var(--orange); transform: translateX(5px); }

/* ── SELECTS ──────────────────────────────────────────── */
#selects {
  padding: clamp(100px, 14vw, 200px) var(--px);
  background: var(--coal);
  position: relative; overflow: hidden; text-align: center;
}
.sel-arc-bg {
  position: absolute; right: -6%; top: 50%; transform: translateY(-50%);
  width: 60%; max-width: 640px; pointer-events: none; z-index: 0;
}
.sel-arc-bg svg { width: 100%; height: 100%; }

.sel-inner {
  max-width: var(--mw); margin: 0 auto;
  position: relative; z-index: 1;
}

.sel-title {
  font-family: var(--display);
  font-size: clamp(88px, 18vw, 260px);
  line-height: .88; letter-spacing: .01em;
  color: var(--cream); margin-bottom: 40px;
}
.sel-orange .rl > span { color: var(--orange); }

.sel-body {
  font-size: clamp(14px, 1.4vw, 17px); font-weight: 300;
  line-height: 1.78; color: var(--stone);
  max-width: 520px; margin: 0 auto 48px;
}

/* Buttons */
.btn-out {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream); padding: 14px 34px;
  border: 1px solid rgba(242,239,231,.2); border-radius: 1px;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.btn-out:hover { background: var(--orange); border-color: var(--orange); }

.magnetic {
  transition: transform .4s var(--expo),
              background .3s ease, border-color .3s ease, color .3s ease;
}

/* ── FAQ ──────────────────────────────────────────────── */
#faq {
  background: var(--cream);
  padding: clamp(88px, 12vw, 160px) var(--px);
}
.faq-inner { max-width: var(--mw); margin: 0 auto; }
.faq-head  { margin-bottom: 64px; }
.faq-head .sec-tag { color: var(--orange); }
.faq-head h2 {
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 96px);
  line-height: .92; color: var(--black); margin-top: 16px;
}
.faq-list { border-top: 1px solid rgba(10,10,10,0.1); }
.faq-item {
  border-bottom: 1px solid rgba(10,10,10,0.1);
  padding: 32px 0;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.faq-q {
  font-family: var(--display); font-size: clamp(18px, 2vw, 26px);
  line-height: 1.1; color: var(--black); letter-spacing: .01em;
}
.faq-a {
  font-family: var(--sans); font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300; line-height: 1.75; color: rgba(10,10,10,0.6);
}
@media (max-width: 768px) {
  .faq-item { grid-template-columns: 1fr; gap: 14px; }
}

/* ── CONTACT ──────────────────────────────────────────── */
#contact {
  padding: clamp(88px, 12vw, 176px) var(--px);
  background: var(--black);
}

.cnt-inner {
  max-width: var(--mw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 9vw, 130px); align-items: start;
}

.cnt-left { position: sticky; top: 96px; }

.cnt-title {
  font-family: var(--display);
  font-size: clamp(60px, 8vw, 120px);
  line-height: .91; letter-spacing: .01em;
  color: var(--cream); margin-bottom: 28px;
}

/* "room?" in serif italic */
.cnt-serif em {
  font-family: var(--serif); font-style: italic;
  font-size: .85em; color: var(--orange); letter-spacing: 0;
}

.cnt-sub {
  font-size: clamp(14px, 1.4vw, 17px); font-weight: 300;
  line-height: 1.75; color: var(--stone); margin-bottom: 20px;
}
.cnt-note {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(242,239,231,.22);
}

/* Form */
.cnt-form { display: flex; flex-direction: column; gap: 18px; }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.f-group { display: flex; flex-direction: column; gap: 8px; }

.f-label {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: .32em; text-transform: uppercase; color: var(--stone);
}

.f-input {
  background: rgba(242,239,231,.035);
  border: 1px solid rgba(242,239,231,.07);
  border-radius: 1px; padding: 13px 16px;
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--cream); outline: none; width: 100%;
  -webkit-appearance: none;
  transition: border-color .3s ease, background .3s ease;
}
.f-input::placeholder { color: rgba(242,239,231,.18); }
.f-input:focus {
  border-color: rgba(201,75,12,.45);
  background: rgba(242,239,231,.05);
}

.f-ta { resize: vertical; min-height: 130px; }

.f-foot { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.f-btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--black); background: var(--cream);
  padding: 15px 32px; border-radius: 1px; cursor: pointer;
  transition: background .3s ease, color .3s ease, transform .4s var(--expo);
}
.f-btn:hover { background: var(--orange); color: var(--cream); }
.f-btn-arrow { transition: transform .3s var(--expo); }
.f-btn:hover .f-btn-arrow { transform: translateX(5px); }

.f-ok, .f-err {
  padding: 13px 16px; font-size: 13px; letter-spacing: .05em;
  border-radius: 1px;
}
.f-ok  { background: rgba(201,75,12,.08); border: 1px solid rgba(201,75,12,.22); color: var(--orange); }
.f-err { background: rgba(242,239,231,.04); border: 1px solid var(--cream-12); color: var(--stone); }

/* ── FOOTER ───────────────────────────────────────────── */
#footer {
  padding: clamp(48px, 6vw, 80px) var(--px) clamp(28px, 3.5vw, 44px);
  background: var(--coal);
  border-top: 1px solid var(--cream-06);
}
.ft-inner { max-width: var(--mw); margin: 0 auto; }

.ft-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; margin-bottom: 40px; flex-wrap: wrap;
}

.ft-brand { display: flex; align-items: center; gap: 10px; }
.ft-thkt {
  display: block; font-family: var(--display); font-size: 19px;
  letter-spacing: .06em; color: var(--cream); line-height: 1;
}
.ft-studios {
  display: block; font-family: var(--sans); font-size: 7.5px; font-weight: 400;
  letter-spacing: .5em; text-transform: uppercase; color: var(--stone);
}

.ft-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.ft-nav a {
  font-family: var(--sans); font-size: 11.5px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase; color: var(--stone);
  transition: color .3s ease;
}
.ft-nav a:hover { color: var(--cream); }

.ft-soc { display: flex; gap: 18px; }
.ft-soc a {
  font-family: var(--sans); font-size: 11.5px; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase; color: var(--stone);
  padding: 4px; transition: color .3s ease;
}
.ft-soc a:hover { color: var(--orange); }

.ft-bot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 24px;
  border-top: 1px solid var(--cream-06); flex-wrap: wrap;
}
.ft-bot span {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: .1em; color: rgba(242,239,231,.2);
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .cnt-inner { grid-template-columns: 1fr; }
  .cnt-left  { position: static; }
  .work-grid { grid-template-columns: 1fr; }
  .wc-featured { grid-column: auto; }
  .wc-featured .wc-media { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger    { display: flex; }

  .svc-row {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }
  .svc-arrow { display: none; }
  .f-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --px: 20px; }
  .hero-title { font-size: clamp(64px, 15.5vw, 100px); }
  .ft-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .about-traits { flex-wrap: wrap; }
}

/* ── SCROLLBAR ────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(242,239,231,.1); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201,75,12,.35); }

/* ── FOCUS ────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
