/* ═══════════════════════════════════════════
   GET GOEN — style.css
   ═══════════════════════════════════════════

   Table of contents
   -----------------
   1. Tokens (CSS custom properties)
   2. Reset
   3. Utilities
   4. Navigation
   5. Hero
   6. Work grid
   7. Statement
   8. About
   9. Services
   10. Contact
   11. Footer
   12. Media queries (responsive)

═══════════════════════════════════════════ */

/* ── 1. TOKENS ──────────────────────────── */
:root {
  /* Colour */
  --ink: #0a0908;
  --ash: #141210;
  --dust: #222019;
  --fog: #7a7268;
  --mist: #b8b0a4;
  --paper: #e6e0d6;
  --red: #8f1c1c;
  --red-mid: #a82020;
  --red-hi: #c42424;

  /* Typography */
  --font-serif: "Big Shoulders Display", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --tracking-display: 0.06em;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 48px;
  --space-xl: 100px;

  /* Layout */
  --max-width: 1440px;
  --page-pad: 48px;
}

.hero-title,
.statement-text,
.service-title,
.work-title {
  letter-spacing: var(--tracking-display);
}

/* ── 2. RESET ───────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Prevent font size inflation on mobile */
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.4;
  /* overflow-x: hidden; */
  /* Improve text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── SCANLINES OVERLAY ──────────────────────────────────── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 60%,
    rgba(0, 0, 0, 0.03) 60%,
    rgba(18, 16, 16, 0.03) 100%
  );
  background-size: 100% 4px;
}

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

a {
  color: inherit;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* ── 3. UTILITIES ───────────────────────── */

/* Screen-reader only — visually hidden but
   accessible to assistive technology */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.red-rule {
  width: 100%;
  height: 0.5px;
  background: linear-gradient(to right, var(--red) 0%, transparent 100%);
}

/* ── 4. NAVIGATION ──────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

nav {
  padding: 20px var(--page-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(10, 9, 8, 0.7) 0%,
    transparent 100%
  );
  transition:
    background 0.8s,
    backdrop-filter 0.8s;
}

/* .nav--scrolled is toggled by main.js */
nav.nav--scrolled {
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  mix-blend-mode: lighten;
  opacity: 1;
}

.nav-wordmark-img {
  display: block;
  height: 32px; /* try 28–40px until it balances the 44px icon */
  width: auto;
  max-width: min(200px, 45vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--red-hi);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease-out;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--paper);
}

.nav-cta a {
  color: var(--red-hi);
  /* border-bottom: 0.5px solid var(--red); */
  padding-bottom: 2px;
}

.nav-cta a:hover,
.nav-cta a:focus-visible {
  color: var(--paper);
  border-color: var(--paper);
}

.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px 6px;
  border: 0.5px solid rgba(184, 176, 164, 0.28);
  border-radius: 999px;
  background: rgba(20, 18, 16, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-lang span {
  font-size: 9px;
  color: rgba(184, 176, 164, 0.45);
  transform: translateY(-1px);
}

.nav-lang a {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--fog);
}

.nav-lang a::after {
  display: none;
}

.nav-lang a.is-active,
.nav-lang a[aria-current="page"] {
  color: var(--paper);
}

.nav-lang a:hover,
.nav-lang a:focus-visible {
  color: var(--red-hi);
}

/* ── 5. HERO ────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: clamp(320px, 100vw, 100vh);
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: var(--ash);
}

.hero-media iframe,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  min-width: 0;
  min-height: 0;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at center,
      transparent 40%,
      rgba(10, 9, 8, 0.7) 100%
    ),
    linear-gradient(to top, rgba(10, 9, 8, 0.92) 0%, transparent 45%),
    linear-gradient(to bottom, rgba(10, 9, 8, 0.5) 0%, transparent 25%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--page-pad) 72px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-md);
}

.hero-eyebrow {
  display: block;
  font-size: clamp(8px, 2vw, 11px);
  font-weight: 900;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--red-hi);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(40px, 8vw, 120px);
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--paper);
}

.hero-title em {
  font-style: normal;
  color: #c42424;
  opacity: 0.9;
}

.hero-sub {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--mist);
  max-width: 360px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}

.hero-scroll {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fog);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-scroll::before {
  content: "";
  width: 0.5px;
  height: 48px;
  background: var(--fog);
  display: block;
}

.hero-location {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--fog);
  text-align: right;
}

.hero-location span {
  display: block;
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--mist);
  margin-top: 4px;
}

/* ── 6. WORK GRID ───────────────────────── */
.section {
  padding: var(--space-xl) var(--page-pad);
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 28px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(20px, 4vw, 28px);
  letter-spacing: 0em;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--mist);
  filter: blur(0.9px);
}

.section-title em {
  font-style: normal;
  color: #c42424;
  opacity: 0.8;
}

.section-count {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-auto-rows: clamp(180px, 18vw, 320px);
  gap: 3px;
  align-items: start;
}

.work-item {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--ash);
  height: 100%;
  align-self: stretch;
}

/* Featured item spans full height of both rows, first column */
.work-item--featured {
  grid-row: span 2;
  grid-column: 1;
}

.work-item-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  height: 100%;
  cursor: pointer;
}

.work-item-link:focus-visible {
  outline: 1px solid var(--red-hi);
  outline-offset: 2px;
}

.work-item-media {
  position: relative;
  flex: 1;
  min-height: 0;
  height: 100%;
  width: 100%;
  /* aspect-ratio: 16 / 9; */
  overflow: hidden;
}

/* Thumbnail image */
.work-item-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    opacity 0.5s;
}

.work-item:hover .work-item-thumb {
  transform: scale(1.03);
  opacity: 0.4;
}

/* Hover-to-preview video */
.work-item-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s;
}

.work-item:hover .work-item-media video {
  opacity: 1;
}

/* Placeholder backgrounds (remove when real images added) */
.ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-a {
  background: linear-gradient(145deg, #1c1510 0%, #0d0c10 100%);
}
.ph-b {
  background: linear-gradient(200deg, #140f0e 0%, #0e1014 100%);
}
.ph-c {
  background: linear-gradient(170deg, #101410 0%, #0c0e10 100%);
}
.ph-d {
  background: linear-gradient(155deg, #0e1210 0%, #140e0e 100%);
}
.ph-e {
  background: linear-gradient(130deg, #12100e 0%, #0e0e14 100%);
}

.ph-kanji {
  font-family: var(--font-serif);
  font-size: 72px;
  font-style: italic;
  color: rgba(143, 28, 28, 0.1);
  user-select: none;
}

/* Red underline reveal on hover */
.work-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red-hi);
  transition: width 0.4s ease;
}

.work-item:hover::after {
  width: 100%;
}

.work-item-info {
  padding: 14px 14px;
  min-height: 48px;
  max-height: 64px;
  overflow: hidden;
  border-top: 0.5px solid var(--dust);
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  align-items: baseline;
}

.work-title {
  font-family: var(--font-serif);
  /* text-transform: uppercase; */
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--paper);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.work-meta {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog);
}

/* ── Work item button reset ────────────────────────────────────── */
button.work-item-link {
  all: unset;
  display: block;
  width: 100%;
  cursor: pointer;
}

/* ── Play icon ─────────────────────────────────────────────────── */
.work-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0);
  transition: color 0.3s ease;
  pointer-events: none;
}

.work-item:hover .work-play-icon {
  color: rgba(255, 255, 255, 0.85);
}

/* ── In production badge ───────────────────────────────────────── */
.work-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent, #990f00);
  border: 2px solid var(--clr-accent, #990f00);
  padding: 0.25em 0.6em;
  pointer-events: none;
}

/* ── Coming soon card state ────────────────────────────────────── */
.work-item--coming-soon .work-item-media {
  opacity: 0.4;
}

/* ── Case study hover label ────────────────────────────────────── */
.work-case-study-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0);
  transition: color 0.3s ease;
  pointer-events: none;
}

.work-item--case-study:hover .work-case-study-label {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Lightbox overlay ──────────────────────────────────────────── */
.gg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.gg-lightbox[hidden] {
  display: none;
}

.gg-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.gg-lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Close button ──────────────────────────────────────────────── */
.gg-lightbox-close {
  all: unset;
  position: absolute;
  top: -2.75rem;
  right: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.gg-lightbox-close:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ── YouTube player ────────────────────────────────────────────── */
.gg-lightbox-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.gg-lightbox-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Coming soon poster ────────────────────────────────────────── */
.gg-lightbox-coming-soon {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.gg-cs-poster {
  position: relative;
  width: 100%;
  height: 100%;
}

.gg-cs-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.45);
}

.gg-cs-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 2rem;
}

.gg-cs-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent, #c0392b);
  border: 1px solid var(--clr-accent, #c0392b);
  padding: 0.3em 0.8em;
  margin: 0;
}

.gg-cs-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
  font-family: var(--font-body, serif);
}

/* ── Meta strip ────────────────────────────────────────────────── */
.gg-lightbox-meta {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.gg-lb-title {
  font-family: var(--font-display, serif);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
}

.gg-lb-meta {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Open state animation ──────────────────────────────────────── */
.gg-lightbox {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gg-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.gg-lightbox-inner {
  transform: translateY(12px);
  transition: transform 0.35s ease;
}

.gg-lightbox.is-open .gg-lightbox-inner {
  transform: translateY(0);
}

/* ── 7. STATEMENT ───────────────────────── */
.statement {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 120px;
  padding: 120px var(--page-pad);
  max-width: 1200px;
  margin: 0 auto;
}

.statement-mark {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.statement-mark img {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  transition: opacity 6s ease;
}

.mark-logo {
  opacity: 0;
}

.mark-kanji {
  opacity: 1;
}

.statement.logo-revealed .mark-logo {
  opacity: 1;
}

.statement.logo-revealed .mark-kanji {
  opacity: 0;
}

.statement-text {
  font-family: var(--font-serif);
  font-weight: 400;
  /* text-transform: uppercase; */
  font-size: clamp(28px, 1vw, 52px);
  line-height: 1.25;
  color: var(--paper);
}

.statement-text em {
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(28px, 3.5vw, 52px);
  filter: blur(2px);
  transition:
    color 1s ease,
    filter 1s ease;
}

.statement-text em:hover {
  filter: blur(0.5px);
  color: var(--red);
}

/* ── 8. ABOUT ───────────────────────────── */
.about {
  padding: var(--space-xl) var(--page-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-left h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 38px;
  color: var(--paper);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.about-left h2 em {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red-hi);
}

.about-left p {
  font-size: 14px;
  /* line-height: 1.4; */
  color: var(--mist);
  margin-bottom: 18px;
}

.about-left a {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-hi);
  text-decoration: none;
  border-bottom: 0.5px solid var(--red);
  padding-bottom: 3px;
  transition:
    color 0.3s,
    border-color 0.3s;
}

.about-left a:hover,
.about-left a:focus-visible {
  color: var(--paper);
  border-color: var(--paper);
}

.about-right {
  align-self: center;
  padding-left: 24px;
  border-left: 1.5px solid var(--red);
}

.client-proposition {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--paper);
  font-style: italic;
  margin: 0;
  padding: 0;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  display: block;
  -webkit-mask-image:
    linear-gradient(to right, transparent, black 10%, black 90%, transparent),
    linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);

  -webkit-mask-composite: intersect;

  mask-image:
    linear-gradient(to right, transparent, black 10%, black 90%, transparent),
    linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);

  mask-composite: intersect;
}

/* ── 9. CLIENTS ─────────────────────────── */
.clients {
  padding: 0 var(--page-pad) var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.clients-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fog);
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px 64px;
}

.client-logo {
  height: auto;
  width: auto;
  max-height: 40px;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity 0.3s;
}

.client-logo:nth-child(1) {
  max-height: 30px;
} /* too big */
.client-logo:nth-child(3) {
  max-height: 80px;
} /* too small */
.client-logo:nth-child(4) {
  max-height: 44px;
} /* slightly small */
.client-logo:nth-child(7) {
  max-height: 80px;
} /* too small */

.client-logo:hover {
  opacity: 0.75;
}

/* ── 9. SERVICES ────────────────────────── */
.services {
  padding: 0 calc(var(--page-pad) * 1.3) var(--space-xl);
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(4px, 2.5vw, 64px);
}

.service {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4.5;
  min-height: 320px;
  width: 100%;
  /* border: solid 1px var(--red); */
  border-radius: 12px;
}

.service::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  z-index: 3;

  background:
    /* top */
    linear-gradient(var(--red), var(--red)) top center / calc(100% - 24px) 1px
      no-repeat,
    /* bottom */ linear-gradient(var(--red), var(--red)) bottom center /
      calc(100% - 24px) 1px no-repeat,
    /* left */ linear-gradient(var(--red), var(--red)) left center / 1px
      calc(100% - 24px) no-repeat,
    /* right */ linear-gradient(var(--red), var(--red)) right center / 1px
      calc(100% - 24px) no-repeat;
}

.service-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(20%) brightness(0.75);
  z-index: 0;
  transition: filter 0.6s ease;
}

.service:hover .service-bg-img {
  filter: grayscale(20%) brightness(0.9);
}

.service-bg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 9, 8, 0.85) 0%,
      rgba(10, 9, 8, 0.3) 60%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(10, 9, 8, 0.95) 0%,
      rgba(10, 9, 8, 0.4) 40%,
      transparent 70%
    );
  z-index: 1;
}

.service-content {
  position: absolute;
  top: var(--content-top, 50%);
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 var(--space-md) 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-num {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--red-hi);
  margin-bottom: 2px;
}

.service-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.service-title {
  font-family: var(--font-serif);
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 48px);
  font-weight: 700;
  color: var(--paper);
  line-height: 1.05;
  letter-spacing: var(--tracking-display);
}

.service-body-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-hi);
  margin-bottom: 4px;
}

.service-body {
  font-size: clamp(11px, 1.5vw, 13px);
  color: var(--mist);
  line-height: 1.3;
  max-width: 36ch;
}

.service-body + .service-body {
  margin-top: 6px;
}

/* ── 10. CONTACT ────────────────────────── */
.contact {
  padding: 50px var(--page-pad);
  background: var(--ash);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  border-top: 0.5px solid var(--dust);
}

.contact h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 46px;
  color: var(--paper);
  line-height: 1.1;
}

.contact h2 em {
  font-style: normal;
  color: var(--red-hi);
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.contact-sub {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--mist);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--paper);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--fog);
  color: var(--mist);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border-radius: 0;
}

.form-field textarea {
  border: 0.5px solid var(--dust);
  padding: 4px;
  margin-top: 6px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--fog);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: var(--red-hi);
}

.form-field select option {
  background: var(--ash);
  color: var(--paper);
}

.form-submit {
  align-self: flex-start;
  margin-top: var(--space-xs);
  background: transparent;
  border: 0.5px solid var(--red);
  color: var(--red-hi);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 14px var(--space-md);
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
}

.contact-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 42px;
  padding-top: 6px;
  color: var(--fog);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-ig:hover {
  color: var(--red-hi);
}

.contact-ig-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ── 11. FOOTER ─────────────────────────── */
footer {
  padding: 8px var(--page-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--dust);
  text-transform: uppercase;
}

footer small {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fog);
}

.footer-goen {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--fog);
}

.footer-goen span {
  color: var(--red-mid);
}

/* ── 12. MEDIA QUERIES ──────────────────── */

@media (max-width: 1200px) {
  .service-body {
    font-size: 12px;
    line-height: 1.2;
    max-width: 36ch;
  }
}

/* Tablet */
@media (max-width: 900px) {
  :root {
    --page-pad: 32px;
  }

  .hero-right {
    display: none;
  }

  .hero-eyebrow {
    letter-spacing: 0.2em;
  }

  .section-title {
    filter: blur(0.4px);
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(220px, 32vw, 420px);
  }

  .work-item--featured {
    grid-row: auto;
    grid-column: auto;
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px var(--page-pad);
  }

  .statement-text em {
    filter: blur(0.7px);
    color: var(--red-hi);
  }

  .about {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .service-content {
    top: 68%;
  }

  .service-body {
    font-size: 13px;
    line-height: 1.3;
    max-width: 36ch;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  :root {
    --page-pad: 20px;
  }

  nav {
    padding: 20px var(--page-pad);
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 160;
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--paper);
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
    transform-origin: center;
  }

  /* X state */
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 9, 8, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 150;
  }

  .nav-links.is-open {
    display: flex;
    padding-top: 80px;
  }

  .nav-links.is-open a {
    font-size: 13px;
    letter-spacing: 0.25em;
  }

  .nav-lang {
    gap: 14px;
    padding: 10px 16px 9px;
  }

  .nav-lang a {
    font-size: 11px;
  }

  .hero {
    height: clamp(
      320px,
      100vw,
      100vh
    ); /* svh accounts for mobile browser chrome */
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 56px);
  }

  .hero-sub {
    display: none;
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(240px, 55vw, 520px);
    gap: 20px;
  }

  .work-item--featured {
    grid-row: auto;
    grid-column: auto;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .service-content {
    max-width: 100%;
    top: 55%;
  }

  .service--right .service-content {
    margin-left: 0;
    text-align: left;
  }

  .service-bg-img::after,
  .service--right .service-bg-img::after {
    background: linear-gradient(
      to top,
      rgba(10, 9, 8, 0.95) 0%,
      transparent 100%
    );
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-right {
    grid-template-columns: 1fr 1fr;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
