/* ===========================================================================
   PLATINUM TUNING — Site styles
   Layered on top of foundations.css (tokens, fonts, .bars motif).
   =========================================================================== */
@import url('./foundations.css');

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg-0); color: var(--fg-1);
  font-family: var(--font-body);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; }

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

/* Reduced-motion -------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Container -------------------------------------------------------------- */
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; width: 100%; }
@media (max-width: 760px) { .container { padding: 0 20px; } }

.section { padding: 120px 0; position: relative; }
@media (max-width: 760px) { .section { padding: 72px 0; } }

.hr-gold { border: 0; height: 2px; background: var(--gold); width: 56px; margin: 0; }
.hr-line-gold { border: 0; height: 1px; background: var(--gold); width: 100%; opacity: 0.5; }

/* Eyebrow + section heads ----------------------------------------------- */
.eyebrow-row { display: inline-flex; align-items: center; gap: 14px; }
.eyebrow-row .bars { width: 24px; }
.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; }

.section-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 64px; max-width: 60ch; }
.section-head h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5vw, 72px); line-height: 0.96; letter-spacing: 0.01em; text-transform: uppercase; color: var(--fg-1); margin: 0; }
.section-head p { font-family: var(--font-body); font-size: 17px; line-height: 1.6; color: var(--fg-2); margin: 0; max-width: 60ch; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 22px; border-radius: 2px; border: 1px solid transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
  transition: background 200ms cubic-bezier(0.65,0,0.35,1),
              color 200ms cubic-bezier(0.65,0,0.35,1),
              border-color 200ms cubic-bezier(0.65,0,0.35,1);
  text-decoration: none;
}
.btn--sm { font-size: 11px; padding: 10px 14px; }
.btn--primary { background: var(--gold); color: var(--gold-ink); }
.btn--primary:hover { background: var(--gold-bright); }
.btn--primary:active { background: var(--gold-deep); }
.btn--secondary { background: transparent; color: var(--fg-1); border-color: var(--line-strong); }
.btn--secondary:hover { color: var(--gold); border-color: var(--gold); }
.btn--ghost { background: transparent; color: var(--fg-1); padding: 14px 0; border: 0; }
.btn--ghost .btn__rule { display: inline-block; width: 32px; height: 2px; background: var(--gold); transition: width 200ms cubic-bezier(0.16,1,0.3,1); }
.btn--ghost:hover { color: var(--gold); }
.btn--ghost:hover .btn__rule { width: 56px; }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 32px;
  padding: 18px 40px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 240ms cubic-bezier(0.65,0,0.35,1),
              border-color 240ms cubic-bezier(0.65,0,0.35,1),
              backdrop-filter 240ms cubic-bezier(0.65,0,0.35,1),
              padding 240ms cubic-bezier(0.65,0,0.35,1);
}
.nav.is-scrolled {
  background: rgba(10,10,10,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 12px 40px;
}
@media (max-width: 760px) { .nav, .nav.is-scrolled { padding: 14px 20px; } }
.nav__brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav__brand .bars { width: 36px; }
.nav__brand .bars > i { height: 4px; }
.nav__logo {
  height: 44px; width: auto; display: block;
  transition: height 240ms cubic-bezier(0.65,0,0.35,1);
}
.nav.is-scrolled .nav__logo { height: 36px; }
@media (max-width: 760px) { .nav__logo, .nav.is-scrolled .nav__logo { height: 34px; } }
.nav__wordmark {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; letter-spacing: 0.08em; line-height: 1;
  color: var(--fg-1); text-transform: uppercase;
}
.nav__wordmark em { font-style: normal; color: var(--gold); }
.nav__links { display: flex; gap: 32px; margin-left: auto; align-items: center; }
.nav__link {
  font-family: var(--font-display); font-weight: 600;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-2); text-decoration: none; position: relative; padding-bottom: 4px;
  cursor: pointer; background: transparent; border: 0;
  transition: color 200ms cubic-bezier(0.65,0,0.35,1);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  height: 2px; background: var(--gold); width: 0;
  transition: width 200ms cubic-bezier(0.16,1,0.3,1);
}
.nav__link:hover { color: var(--fg-1); }
.nav__link:hover::after { width: 100%; }
.nav__cta { margin-left: 8px; }

/* Mobile burger */
.nav__burger {
  display: none; background: transparent; border: 1px solid var(--line-strong);
  padding: 10px; cursor: pointer; border-radius: 2px; margin-left: auto;
}
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--gold); margin: 4px 0; transition: transform 200ms; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--bg-0); padding: 32px 24px;
  display: flex; flex-direction: column; gap: 8px; z-index: 99;
  border-top: 1px solid var(--line);
}
.nav__mobile a, .nav__mobile button {
  font-family: var(--font-display); font-weight: 700; font-size: 28px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg-1);
  text-decoration: none; padding: 16px 0; border-bottom: 1px solid var(--line);
  background: transparent; border-top: 0; border-left: 0; border-right: 0;
  text-align: left; cursor: pointer;
}
.nav__mobile a:hover, .nav__mobile button:hover { color: var(--gold); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
}
@media (min-width: 901px) { .nav__mobile { display: none !important; } }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; min-height: 100vh;
  padding: 140px 40px 80px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) { .hero { padding: 120px 20px 80px; min-height: 92vh; } }

.hero__bars {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
  padding: 0 0 0 0;
  z-index: 0;
  opacity: 0.85;
}
.hero__bar {
  height: 14px; background: var(--gold); transform-origin: left center;
  border-radius: 1px;
}
.hero__bar:nth-child(1) { width: 62%; opacity: 0.12; }
.hero__bar:nth-child(2) { width: 38%; opacity: 0.18; }
.hero__bar:nth-child(3) { width: 78%; opacity: 0.08; height: 6px; }
.hero__bar:nth-child(4) { width: 24%; opacity: 0.22; height: 6px; }
.hero__bar:nth-child(5) { width: 48%; opacity: 0.10; }
.hero__bar:nth-child(6) { width: 30%; opacity: 0.16; height: 4px; }
.hero__bar:nth-child(7) { width: 64%; opacity: 0.08; }

.hero__inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 480px; gap: 64px; align-items: center;
}
@media (max-width: 1100px) { .hero__inner { grid-template-columns: 1fr; gap: 48px; } }

.hero__content { display: flex; flex-direction: column; gap: 32px; }

.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 9vw, 128px); line-height: 0.9;
  letter-spacing: -0.005em; text-transform: uppercase;
  color: var(--fg-1); margin: 0;
}
.hero__title .gold { color: var(--gold); display: block; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: inline-block; }

.hero__lede {
  font-family: var(--font-body); font-size: 19px; line-height: 1.55;
  color: var(--fg-2); max-width: 52ch; margin: 0;
}
@media (max-width: 760px) { .hero__lede { font-size: 16px; } }

.hero__pillars { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
.hero__pillar {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em;
  color: var(--fg-2); text-transform: uppercase;
}
.hero__pillar .dot { display: inline-block; width: 6px; height: 6px; background: var(--gold); margin: 0 18px 0 0; vertical-align: middle; transform: rotate(45deg); }

.hero__cta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

.hero__media {
  position: relative; aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #1a1814 0%, #0a0907 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 18px;
}
.hero__media::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(212,192,74,0.04) 24px, rgba(212,192,74,0.04) 25px),
    repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(212,192,74,0.04) 24px, rgba(212,192,74,0.04) 25px);
  pointer-events: none;
}
.hero__media::after {
  content: ""; position: absolute; top: 16px; left: 16px;
  width: 32px; height: 32px;
  border-top: 1px solid var(--gold); border-left: 1px solid var(--gold);
  opacity: 0.7;
}
.hero__media__corner-br {
  position: absolute; bottom: 16px; right: 16px;
  width: 32px; height: 32px;
  border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold);
  opacity: 0.7;
  z-index: 2;
}
.hero__media__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 1;
}
.hero__media--has-image::before { display: none; }
.hero__media--has-image::after { z-index: 2; }
.hero__media__label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em;
  color: var(--fg-3); text-transform: uppercase; z-index: 1;
}
.hero__media__big {
  font-family: var(--font-display); font-weight: 700; font-size: 88px;
  color: var(--gold); opacity: 0.18; line-height: 1; letter-spacing: -0.02em; z-index: 1;
}
.hero__media .bars { width: 80px; z-index: 1; }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em;
  color: var(--fg-3); text-transform: uppercase; z-index: 2;
}
.hero__scroll__line {
  width: 1px; height: 40px; background: var(--gold);
  transform-origin: top;
  animation: scrollLine 2.4s cubic-bezier(0.65,0,0.35,1) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  40% { transform: scaleY(1); transform-origin: top; }
  60% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =====================================================================
   STATS STRIP
   ===================================================================== */
.stats {
  padding: 64px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  background: var(--bg-0);
}
.stats__grid {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px;
}
@media (max-width: 900px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; padding: 0 20px; } }
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(52px, 6vw, 88px); line-height: 1;
  color: var(--gold); letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--fg-3); text-transform: uppercase; line-height: 1.5;
}

/* =====================================================================
   SERVICES
   ===================================================================== */
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
@media (max-width: 900px) { .services__grid { grid-template-columns: 1fr; } }

.svc-col {
  padding: 40px 36px 40px 0;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 24px;
}
.svc-col:last-child { border-right: 0; padding-right: 0; }
.svc-col:not(:first-child) { padding-left: 36px; }
@media (max-width: 900px) {
  .svc-col { border-right: 0; border-bottom: 1px solid var(--line); padding: 32px 0 !important; }
  .svc-col:last-child { border-bottom: 0; }
}

.svc-col__head { display: flex; flex-direction: column; gap: 14px; }
.svc-col__head .bars { width: 56px; }
.svc-col__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; color: var(--gold); }
.svc-col__title {
  font-family: var(--font-display); font-weight: 700; font-size: 32px;
  line-height: 1; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--fg-1); margin: 0;
}
.svc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.svc-item {
  display: grid; grid-template-columns: 14px 1fr; gap: 14px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-family: var(--font-body); font-size: 15px; color: var(--fg-2);
  cursor: default; position: relative;
  transition: color 200ms cubic-bezier(0.65,0,0.35,1), padding-left 200ms cubic-bezier(0.16,1,0.3,1);
}
.svc-item:last-child { border-bottom: 0; }
.svc-item__bullet {
  width: 14px; height: 2px; background: var(--gold);
  transition: width 200ms cubic-bezier(0.16,1,0.3,1);
}
.svc-item__text { position: relative; }
.svc-item__text::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 200ms cubic-bezier(0.16,1,0.3,1);
}
.svc-item:hover { color: var(--fg-1); }
.svc-item:hover .svc-item__bullet { width: 24px; }
.svc-item:hover .svc-item__text::after { transform: scaleX(1); }

/* =====================================================================
   CAPABILITY
   ===================================================================== */
.capability__grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 1000px) { .capability__grid { grid-template-columns: 1fr; gap: 56px; } }

.capability__copy { display: flex; flex-direction: column; gap: 20px; }
.capability__copy h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5.5vw, 80px); line-height: 0.96; letter-spacing: 0.01em;
  text-transform: uppercase; color: var(--fg-1); margin: 0;
}
.capability__copy h2 .gold { color: var(--gold); }
.capability__copy p { color: var(--fg-2); font-size: 17px; line-height: 1.65; max-width: 56ch; }
.capability__qual {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 12px; padding-top: 24px; border-top: 1px solid var(--line);
}
.capability__qual > div { display: flex; flex-direction: column; gap: 6px; }
.capability__qual dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--fg-3); text-transform: uppercase; }
.capability__qual dd { font-family: var(--font-display); font-weight: 700; font-size: 32px; color: var(--gold); margin: 0; line-height: 1; }

.flow {
  position: relative;
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 2px;
  padding: 36px 28px;
  aspect-ratio: 4 / 5; min-height: 520px;
}
.flow svg { width: 100%; height: 100%; display: block; }

/* =====================================================================
   BUILDS
   ===================================================================== */
.builds__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
@media (max-width: 900px) {
  .builds__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .build { grid-column: span 1 !important; grid-row: span 1 !important; }
  .build.b-1 { grid-column: span 2 !important; }
}
.build {
  position: relative; overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 2px;
  cursor: pointer;
  transition: border-color 200ms cubic-bezier(0.65,0,0.35,1);
}
.build:hover { border-color: var(--line-gold); }
.build.b-1 { grid-column: span 3; grid-row: span 2; }
.build.b-2 { grid-column: span 3; grid-row: span 1; }
.build.b-3 { grid-column: span 2; grid-row: span 1; }
.build.b-4 { grid-column: span 2; grid-row: span 2; }
.build.b-5 { grid-column: span 2; grid-row: span 1; }
.build.b-6 { grid-column: span 4; grid-row: span 1; }

.build__placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(212,192,74,0.025) 18px, rgba(212,192,74,0.025) 19px),
    linear-gradient(135deg, #1a1814 0%, #0a0907 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px;
  transition: transform 600ms cubic-bezier(0.16,1,0.3,1);
}
.build:hover .build__placeholder { transform: scale(1.04); }
.build__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 600ms cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
}
.build:hover .build__img { transform: scale(1.04); }
.build__corner { z-index: 2; }
.build__caption { z-index: 2; }
.build__placeholder__index { font-family: var(--font-display); font-weight: 700; font-size: 56px; color: var(--gold); opacity: 0.32; line-height: 1; }
.build__placeholder__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; color: var(--fg-4); text-transform: uppercase; }
.build__corner {
  position: absolute; top: 14px; left: 14px;
  width: 20px; height: 20px;
  border-top: 1px solid var(--gold); border-left: 1px solid var(--gold);
  opacity: 0.6;
}

.build__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.92) 60%);
  padding: 56px 20px 18px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(100%);
  transition: transform 320ms cubic-bezier(0.16,1,0.3,1);
}
.build:hover .build__caption { transform: translateY(0); }
.build__car { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg-1); margin: 0; }
.build__work { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--gold); text-transform: uppercase; }

/* =====================================================================
   DYNO GRAPH
   ===================================================================== */
.dyno__grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center;
}
@media (max-width: 1000px) { .dyno__grid { grid-template-columns: 1fr; gap: 48px; } }

.dyno__copy h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 6vw, 88px); line-height: 0.94; letter-spacing: 0.01em;
  text-transform: uppercase; color: var(--fg-1); margin: 0 0 24px;
}
.dyno__copy h2 .gold { color: var(--gold); }
.dyno__copy p { color: var(--fg-2); font-size: 17px; line-height: 1.65; max-width: 50ch; }
.dyno__results {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line);
}
.dyno__result dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--fg-3); text-transform: uppercase; }
.dyno__result dd { font-family: var(--font-display); font-weight: 700; font-size: 44px; color: var(--gold); margin: 4px 0 0; line-height: 1; font-variant-numeric: tabular-nums; }

.dyno__chart {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 2px;
  padding: 32px 28px; position: relative;
}
.dyno__chart__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.dyno__chart__title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; color: var(--fg-3); text-transform: uppercase; }
.dyno__legend { display: flex; gap: 20px; }
.dyno__legend__item { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--fg-2); text-transform: uppercase; }
.dyno__legend__swatch { width: 14px; height: 2px; }
.dyno__chart svg { width: 100%; height: auto; display: block; }

.dyno__build {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.dyno__build__grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 40px;
}
.dyno__build__grid > div { display: flex; flex-direction: column; gap: 8px; }
.dyno__build__grid dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--fg-3);
  text-transform: uppercase;
  margin: 0;
}
.dyno__build__grid dd {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-1);
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
@media (max-width: 760px) {
  .dyno__build__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
}

/* =====================================================================
   ABOUT
   ===================================================================== */
.about__intro {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 900px) { .about__intro { grid-template-columns: 1fr; gap: 32px; } }
.about__intro h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5vw, 72px); line-height: 0.96; letter-spacing: 0.01em; text-transform: uppercase; color: var(--fg-1); margin: 0; }
.about__intro h2 .gold { color: var(--gold); }
.about__intro p { font-family: var(--font-body); font-size: 17px; line-height: 1.65; color: var(--fg-2); margin: 0; max-width: 56ch; }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
@media (max-width: 900px) { .team { grid-template-columns: 1fr; } }
.team__card { background: var(--bg-3); border: 1px solid var(--line); border-radius: 2px; padding: 0 0 24px; position: relative; transition: background 200ms; }
.team__card:hover { background: var(--bg-4); }
.team__photo {
  aspect-ratio: 1 / 1;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(212,192,74,0.03) 24px, rgba(212,192,74,0.03) 25px),
    linear-gradient(135deg, #1a1814 0%, #0a0907 100%);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line); margin-bottom: 20px;
  position: relative;
}
.team__photo::before {
  content: attr(data-label);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em;
  color: var(--fg-4); text-transform: uppercase;
}
.team__name { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg-1); margin: 0 24px 4px; }
.team__role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; margin: 0 24px; }

.workshop {
  aspect-ratio: 24 / 9;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 32px, rgba(212,192,74,0.03) 32px, rgba(212,192,74,0.03) 33px),
    linear-gradient(180deg, #1a1814 0%, #0a0907 100%);
  border: 1px solid var(--line); border-radius: 2px;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
  position: relative;
  overflow: hidden;
}
.workshop--has-image { background: var(--bg-1); }
.workshop__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.workshop__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; color: var(--fg-4); text-transform: uppercase; }
.workshop .bars { width: 80px; }

/* =====================================================================
   REVIEWS
   ===================================================================== */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
@media (max-width: 900px) { .reviews__grid { grid-template-columns: 1fr; } }
.review {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 2px;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 20px;
  position: relative; transition: background 200ms;
}
.review:hover { background: var(--bg-4); }
.review::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 2px; background: var(--gold); opacity: 0; transition: opacity 200ms;
}
.review:hover::before { opacity: 1; }
.review__stars { display: flex; gap: 4px; }
.review__stars svg { width: 16px; height: 16px; fill: var(--gold); }
.review__quote { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--fg-1); margin: 0; }
.review__attr { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); margin-top: auto; }
.review__attr .bars { width: 18px; }
.review__attr .bars > i { height: 2px; }
.review__name { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; color: var(--fg-2); text-transform: uppercase; }
.reviews__link { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 12px; }
.reviews__link::after { content: ""; display: inline-block; width: 24px; height: 2px; background: var(--gold); transition: width 200ms; }
.reviews__link:hover::after { width: 48px; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start; }
@media (max-width: 1000px) { .contact__grid { grid-template-columns: 1fr; gap: 48px; } }

.contact__info { display: flex; flex-direction: column; gap: 0; }
.contact__row {
  display: grid; grid-template-columns: 110px 1fr; gap: 16px; align-items: baseline;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.contact__row:first-of-type { border-top: 1px solid var(--line); }
.contact__k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--fg-3); text-transform: uppercase; }
.contact__v { font-family: var(--font-body); font-size: 15px; color: var(--fg-1); line-height: 1.6; text-decoration: none; }
a.contact__v:hover { color: var(--gold); }
.contact__hours { display: flex; flex-direction: column; gap: 4px; font-family: var(--font-mono); font-size: 13px; color: var(--fg-1); letter-spacing: 0.04em; }
.contact__hours span { display: flex; justify-content: space-between; gap: 16px; }
.contact__hours .muted { color: var(--fg-3); }

.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--fg-3); text-transform: uppercase; }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--line-strong); color: var(--fg-1);
  font-family: var(--font-body); font-size: 15px; padding: 14px 16px; border-radius: 2px;
  transition: border-color 200ms, box-shadow 200ms;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212,192,74,0.18);
}
.field textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.form__submit { display: flex; gap: 24px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.form__note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--fg-3); text-transform: uppercase; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { padding: 56px 0 28px; background: var(--bg-0); border-top: 2px solid var(--gold); }
.footer__top {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand .bars { width: 32px; }
.footer__logo { height: 56px; width: auto; display: block; }
@media (max-width: 760px) { .footer__logo { height: 44px; } }
.footer__wordmark { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.08em; color: var(--fg-1); text-transform: uppercase; }
.footer__wordmark em { font-style: normal; color: var(--gold); }
.footer__socials { display: flex; gap: 14px; align-items: center; }
.footer__social {
  width: 40px; height: 40px; border: 1px solid var(--line-strong); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: background 200ms, border-color 200ms;
}
.footer__social:hover { background: var(--gold); color: var(--gold-ink); border-color: var(--gold); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  max-width: 1400px; margin: 32px auto 0; padding: 24px 40px 0;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; color: var(--fg-3); text-transform: uppercase; }
.footer__copy { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--fg-4); text-transform: uppercase; }
@media (max-width: 760px) { .footer__top, .footer__bottom { padding-left: 20px; padding-right: 20px; } }
