/* =========================================================================
   V3 STUDIOS — Creative Production Studio
   A VDigi Media House Production
   ========================================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Color */
  --void:        #08080a;   /* base background */
  --charcoal:    #131116;   /* alt section background */
  --charcoal-2:  #1b171d;   /* card / panel background */
  --charcoal-3:  #221d24;   /* elevated panel */
  --line:        rgba(243, 239, 233, 0.09);
  --line-strong: rgba(243, 239, 233, 0.16);

  --ember:       #d6402b;   /* primary warm red accent */
  --ember-dim:   #8c2a1e;
  --amber:       #ff8b3e;   /* secondary orange glow */
  --steel:       #b8b7bd;   /* metallic highlight */
  --steel-dim:   #6f6d74;

  --paper:       #f3efe9;   /* soft warm white — primary text */
  --paper-70:    rgba(243, 239, 233, 0.72);
  --paper-45:    rgba(243, 239, 233, 0.45);
  --paper-20:    rgba(243, 239, 233, 0.14);

  /* Type */
  --font-display: 'Zodiak', 'Iowan Old Style', 'Georgia', serif;
  --font-body: 'General Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Mono', 'SFMono-Regular', monospace;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(24px, 5vw, 96px);
  --section-pad: clamp(80px, 12vw, 168px);

  /* Motion */
  --ease-cinema: cubic-bezier(0.16, 0.84, 0.24, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@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;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, h4, p, figure, ul, ol {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

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

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

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--ember);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-45);
}

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  position: relative;
  padding-block: var(--section-pad);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease-soft);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  transition: transform 0.6s var(--ease-cinema), background 0.5s ease, padding 0.4s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding-block: 16px;
  border-color: var(--line);
}

.nav.is-hidden { transform: translateY(-100%); }

.nav__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__mark {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
}

.nav__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-45);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links a {
  font-size: 14px;
  color: var(--paper-70);
  position: relative;
  padding-bottom: 4px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--ember);
  transition: right 0.35s var(--ease-soft);
}

.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after { right: 0; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--paper);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.3s ease;
}

.nav__cta:hover {
  border-color: var(--ember);
  box-shadow: 0 0 24px rgba(214, 64, 43, 0.35);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.nav__toggle span {
  height: 1px;
  background: var(--paper);
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 18%, rgba(214, 64, 43, 0.16), transparent 70%),
    radial-gradient(45% 40% at 80% 78%, rgba(255, 139, 62, 0.10), transparent 70%),
    linear-gradient(180deg, #0b0a0d 0%, #08080a 55%, #0a0910 100%);
}

.hero__beams {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.hero__beam {
  position: absolute;
  top: -10%;
  width: 2px;
  height: 120%;
  background: linear-gradient(180deg, transparent, rgba(214, 64, 43, 0.35), transparent);
  filter: blur(1px);
  animation: beamDrift 14s ease-in-out infinite;
  transform-origin: top center;
}
.hero__beam:nth-child(1) { left: 22%; animation-delay: 0s; }
.hero__beam:nth-child(2) { left: 48%; animation-delay: -4s; background: linear-gradient(180deg, transparent, rgba(255,139,62,0.28), transparent); }
.hero__beam:nth-child(3) { left: 74%; animation-delay: -9s; }

@keyframes beamDrift {
  0%, 100% { transform: rotate(-2.5deg) translateX(0); opacity: 0.4; }
  50% { transform: rotate(2.5deg) translateX(30px); opacity: 0.75; }
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--steel);
  opacity: 0.5;
  animation: floaty 10s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
  50% { transform: translateY(-40px) translateX(12px); opacity: 0.7; }
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding-top: 40px;
}

.hero__eyebrow {
  justify-content: center;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(46px, 8vw, 108px);
  line-height: 0.98;
  max-width: 15ch;
  margin: 0 auto;
}

.hero__tagline {
  max-width: 46ch;
  margin: 28px auto 0;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--paper-70);
  font-style: italic;
  font-family: var(--font-display);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: transform 0.35s var(--ease-soft), box-shadow 0.35s ease, background 0.35s ease, border-color .35s ease;
  will-change: transform;
}

.btn--primary {
  background: linear-gradient(135deg, var(--ember), #b8331f);
  color: var(--paper);
  box-shadow: 0 8px 30px rgba(214, 64, 43, 0.28);
}
.btn--primary:hover {
  box-shadow: 0 10px 40px rgba(214, 64, 43, 0.5), 0 0 0 1px rgba(255,139,62,0.4);
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--paper);
}
.btn--ghost:hover {
  border-color: var(--steel);
  box-shadow: 0 0 24px rgba(184, 183, 189, 0.15);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  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.18em;
  text-transform: uppercase;
  color: var(--paper-45);
  z-index: 3;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--paper-45), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 100%;
  background: var(--ember);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* =========================================================================
   CAMERA SCROLL STAGE
   ========================================================================= */
.camera-stage {
  position: relative;
  height: 380vh;
  background: var(--void);
}

.camera-stage__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.camera-stage__glow {
  position: absolute;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,64,43,0.20), rgba(255,139,62,0.08) 45%, transparent 72%);
  filter: blur(10px);
}

.camera-stage__frame {
  position: relative;
  z-index: 2;
  width: min(46vw, 480px);
}

.camera-stage__img {
  width: 100%;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.65)) drop-shadow(0 0 40px rgba(214,64,43,0.12));
  transform-style: preserve-3d;
}

.camera-stage__shadow {
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.55), transparent 70%);
  filter: blur(4px);
}

.camera-stage__caption {
  position: absolute;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-45);
  opacity: 0;
}
.camera-stage__caption--tl { top: 14%; left: 8%; }
.camera-stage__caption--br { bottom: 16%; right: 8%; text-align: right; }

.camera-stage__caption span {
  display: block;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 22px;
  margin-top: 6px;
}

/* =========================================================================
   ABOUT — editorial
   ========================================================================= */
.about {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about__head {
  max-width: 62ch;
  margin-bottom: 64px;
}

.about__head h2 {
  font-size: clamp(32px, 4vw, 54px);
  margin-top: 20px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.about__grid--reverse .about__panel { order: 2; }
.about__grid--reverse .about__copy { order: 1; }

.about__copy p {
  color: var(--paper-70);
  font-size: 17px;
  max-width: 52ch;
}

.about__copy p + p { margin-top: 18px; }

.about__list {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.about__list li {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.about__panel {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
}

.about__panel-surface {
  position: absolute;
  inset: 0;
  transition: transform 1.1s var(--ease-cinema);
}
.about__panel:hover .about__panel-surface { transform: scale(1.06); }

.about__panel-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-70);
  z-index: 2;
}

.about__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55));
  z-index: 1;
}

.panel-a { background: linear-gradient(135deg, #2a1613, #120c10 55%, #3a1c14); }
.panel-b { background: linear-gradient(160deg, #1c1013, #221a1c 50%, #4a271b); }
.panel-c { background: linear-gradient(140deg, #171317, #2a1a16 60%, #d6402b22); }

.about + .about {
  border-top: none;
}

/* =========================================================================
   SERVICES
   ========================================================================= */
.services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.services__head h2 { font-size: clamp(32px, 4vw, 54px); margin-top: 20px; }
.services__head p { max-width: 40ch; color: var(--paper-70); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.service-card {
  position: relative;
  background: var(--charcoal-2);
  padding: 34px 28px;
  transition: background 0.4s ease, transform 0.5s var(--ease-soft);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(214,64,43,0.16), transparent 70%);
  transition: opacity 0.4s ease;
}

.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--charcoal-3); transform: translateY(-4px); }

.service-card__icon {
  width: 34px;
  height: 34px;
  color: var(--ember);
  margin-bottom: 22px;
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--paper-45);
  line-height: 1.55;
}

/* =========================================================================
   FEATURED WORK — masonry
   ========================================================================= */
.work {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 90px;
  gap: 18px;
  margin-top: 56px;
}

.work-tile {
  position: relative;
  grid-column: span 3;
  grid-row: span 4;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.work-tile--wide { grid-column: span 4; grid-row: span 4; }
.work-tile--tall { grid-column: span 2; grid-row: span 6; }
.work-tile--small { grid-column: span 2; grid-row: span 3; }

.work-tile__surface {
  position: absolute;
  inset: 0;
  transition: transform 1s var(--ease-cinema);
}
.work-tile:hover .work-tile__surface { transform: scale(1.08); }

.work-tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, transparent 30%, rgba(6,5,6,0.86));
}

.work-tile__play {
  position: absolute;
  top: 50%; left: 50%;
  width: 54px; height: 54px;
  transform: translate(-50%, -50%) scale(0.7);
  border-radius: 50%;
  border: 1px solid rgba(243,239,233,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s var(--ease-soft);
  backdrop-filter: blur(6px);
}
.work-tile:hover .work-tile__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.work-tile__play svg { width: 16px; height: 16px; margin-left: 2px; fill: var(--paper); }

.work-tile__cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}
.work-tile__title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 22px);
  margin-top: 4px;
}
.work-tile__year {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--paper-45);
  margin-top: 4px;
}

.wt-1 { background: linear-gradient(150deg, #2a1210, #3a1a12 50%, #100d10); }
.wt-2 { background: linear-gradient(150deg, #151217, #241c1e 55%, #d6402b1c); }
.wt-3 { background: linear-gradient(150deg, #201417, #14100f 60%, #ff8b3e1c); }
.wt-4 { background: linear-gradient(150deg, #17151a, #2a1a14 55%, #3a1c14); }
.wt-5 { background: linear-gradient(150deg, #1a1216, #221618 50%, #d6402b18); }
.wt-6 { background: linear-gradient(150deg, #121014, #201c22 55%, #6f6d7422); }

@media (max-width: 860px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .work-tile, .work-tile--wide, .work-tile--tall, .work-tile--small {
    grid-column: span 2;
    grid-row: span 4;
  }
}

/* =========================================================================
   WORKFLOW — horizontal timeline
   ========================================================================= */
.workflow__head { margin-bottom: 72px; max-width: 60ch; }
.workflow__head h2 { font-size: clamp(32px, 4vw, 54px); margin-top: 20px; }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 21px;
  left: 0; right: 0;
  height: 1px;
  background: var(--line-strong);
}

.timeline__fill {
  position: absolute;
  top: 21px;
  left: 0;
  height: 1px;
  width: 0%;
  background: linear-gradient(90deg, var(--ember), var(--amber));
  transition: width 1.4s var(--ease-cinema);
}

.timeline-step {
  position: relative;
  padding-top: 56px;
}

.timeline-step__num {
  position: absolute;
  top: 0; left: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--paper-45);
  transition: border-color 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
}
.timeline-step.is-active .timeline-step__num {
  border-color: var(--ember);
  color: var(--paper);
  box-shadow: 0 0 20px rgba(214,64,43,0.4);
}

.timeline-step h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}
.timeline-step p {
  font-size: 14px;
  color: var(--paper-45);
  max-width: 26ch;
}

@media (max-width: 780px) {
  .timeline { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before { top: 0; left: 21px; right: auto; bottom: 0; width: 1px; height: 100%; }
  .timeline__fill { top: 0; left: 21px; width: 1px; height: 0%; }
  .timeline-step { padding-top: 0; padding-left: 64px; }
  .timeline-step__num { top: 0; }
}

/* =========================================================================
   STUDIO SHOWCASE
   ========================================================================= */
.showcase {
  position: relative;
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.showcase__ambient {
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 20% 20%, rgba(214,64,43,0.10), transparent 70%),
              radial-gradient(40% 50% at 85% 80%, rgba(255,139,62,0.08), transparent 70%);
  animation: ambientShift 18s ease-in-out infinite;
}
@keyframes ambientShift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(2%, -2%) scale(1.05); }
}

.showcase__head { position: relative; max-width: 60ch; margin-bottom: 56px; }
.showcase__head h2 { font-size: clamp(32px, 4vw, 54px); margin-top: 20px; }

.showcase__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.showcase-tile {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
}
.showcase-tile__surface { position: absolute; inset: 0; transition: transform 1s var(--ease-cinema); }
.showcase-tile:hover .showcase-tile__surface { transform: scale(1.07); }
.showcase-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6,5,6,0.85));
}
.showcase-tile__label {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--paper-70);
}
.showcase-tile__label span {
  display: block; color: var(--paper); font-family: var(--font-display); font-size: 18px; margin-top: 4px;
}

.st-1 { background: linear-gradient(155deg, #1a1418, #2c1712 55%, #d6402b18); }
.st-2 { background: linear-gradient(155deg, #131217, #221c22 55%, #6f6d7420); }
.st-3 { background: linear-gradient(155deg, #17141a, #201216 55%, #ff8b3e18); }

@media (max-width: 780px) {
  .showcase__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   WHY CHOOSE
   ========================================================================= */
.why__head { max-width: 60ch; margin-bottom: 8px; }
.why__head h2 { font-size: clamp(32px, 4vw, 54px); margin-top: 20px; }

.why-list { margin-top: 48px; }

.why-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  transition: background 0.4s ease;
}
.why-item:last-child { border-bottom: 1px solid var(--line); }
.why-item:hover { background: rgba(243,239,233,0.02); }

.why-item__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--paper-45);
}

.why-item__title {
  font-size: clamp(24px, 3.2vw, 40px);
  transition: transform 0.5s var(--ease-soft), color 0.4s ease;
}
.why-item:hover .why-item__title { transform: translateX(10px); color: var(--ember); }

.why-item__desc {
  max-width: 34ch;
  color: var(--paper-45);
  font-size: 14px;
  text-align: right;
}

@media (max-width: 720px) {
  .why-item { grid-template-columns: 50px 1fr; }
  .why-item__desc { grid-column: 2 / 3; text-align: left; margin-top: 8px; }
}

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testimonials {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonials__head { max-width: 56ch; margin-bottom: 56px; }
.testimonials__head h2 { font-size: clamp(32px, 4vw, 54px); margin-top: 20px; }

.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008));
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 34px 30px;
  backdrop-filter: blur(6px);
}

.testi-card__quote {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.5;
  color: var(--paper);
  font-style: italic;
}

.testi-card__meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
}
.testi-card__meta strong { color: var(--paper); display: block; font-family: var(--font-body); font-size: 14px; margin-bottom: 3px; }
.testi-card__meta span { color: var(--paper-45); }

@media (max-width: 900px) {
  .testi-track { grid-template-columns: 1fr; }
}

/* =========================================================================
   LOCATION
   ========================================================================= */
.location__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.location__head h2 { font-size: clamp(30px, 3.6vw, 46px); margin-top: 20px; }
.location__address {
  margin-top: 24px;
  font-size: 16px;
  color: var(--paper-70);
  line-height: 1.7;
}
.location__address strong { display: block; color: var(--paper); font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }

.map-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  aspect-ratio: 16/10;
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(0.4) invert(0.92) contrast(0.9);
}

@media (max-width: 860px) {
  .location__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
}

.contact__head h2 { font-size: clamp(32px, 4vw, 52px); margin-top: 20px; }
.contact__head p { margin-top: 18px; color: var(--paper-70); max-width: 34ch; }

.contact__direct { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.contact__direct a { font-family: var(--font-mono); font-size: 14px; color: var(--steel); }
.contact__direct a:hover { color: var(--ember); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-45);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 2px;
  font-size: 16px;
  color: var(--paper);
  transition: border-color 0.35s ease;
}
.form-field select { appearance: none; -webkit-appearance: none; }
.form-field select option { background: var(--charcoal-2); color: var(--paper); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ember);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 90px; }

.form-submit {
  margin-top: 12px;
  grid-column: 1 / -1;
  justify-self: flex-start;
}

.form-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--paper-45);
  grid-column: 1 / -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.form-note.is-visible { opacity: 1; }

@media (max-width: 860px) {
  .contact__grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  padding: 70px var(--gutter) 34px;
  border-top: 1px solid var(--line);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 48px;
}

.footer__brand { max-width: 30ch; }
.footer__brand .nav__mark { font-size: 22px; }
.footer__brand p { margin-top: 14px; color: var(--paper-45); font-size: 14px; }

.footer__cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-45);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--paper-70);
  padding: 5px 0;
}
.footer__col a:hover { color: var(--ember); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--paper-45);
  flex-wrap: wrap;
  gap: 14px;
}
.footer__bottom a { color: var(--paper-45); }
.footer__bottom a:hover { color: var(--paper); }

@media (max-width: 780px) {
  .footer__top { flex-direction: column; }
}

/* =========================================================================
   RESPONSIVE — nav / general
   ========================================================================= */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__grid--reverse .about__panel,
  .about__grid--reverse .about__copy { order: initial; }
  .services__head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .camera-stage__frame { width: 68vw; }
  .camera-stage__caption { display: none; }
}
