/* ============================================================
   DESIGN TOKENS — v4 HYBRID (Gold + Sans-Serif Grid)
   ============================================================ */
:root {
  --bg:            #08090C;
  --surface:       #0F1014;
  --surface-2:     #16171D;
  --border:        rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);
  --text:          #E3E3E7;
  --text-muted:    #6B6D78;
  --text-dim:      #3E404A;
  --gold:          #C4A55A;
  --accent:        #C4A55A;
  --accent-dim:    rgba(196,165,90,0.06);
  --accent-glow:   rgba(196,165,90,0.12);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', monospace;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 11rem;

  --radius:    2px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.section {
  padding: var(--space-xl) 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem);
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(8, 9, 12, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  color: var(--text);
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.7; }

.nav-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-dot { color: var(--accent); }

/* ============================================================
   HERO — STRUCTURE
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  padding-top: 8rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

/* Subtle grid overlay behind canvas */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, var(--border) 1px, transparent 1px),
    linear-gradient(0deg, var(--border) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.22;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, black 0%, transparent 100%);
}

/* ── Canvas particle layer ────────────────────────────────── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

/* ── Corner decorations ────────────────────────────────────── */
.hero-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 2;
  pointer-events: none;
}

.hero-corner--tl {
  top: 1.5rem;
  left: clamp(1.5rem, 5vw, 5rem);
}

.hero-corner--br {
  bottom: 1.5rem;
  right: clamp(1.5rem, 5vw, 5rem);
}

.corner-line {
  position: absolute;
  background: var(--accent);
  opacity: 0.5;
}

.corner-line--h {
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
}

.corner-line--v {
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
}

.hero-corner--br .corner-line--h {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}

.hero-corner--br .corner-line--v {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}

/* ── Scan line ─────────────────────────────────────────────── */
.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196,165,90,0.0) 20%,
    rgba(196,165,90,0.35) 50%,
    rgba(196,165,90,0.0) 80%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 3;
  animation: scanMove 6s linear infinite;
}

@keyframes scanMove {
  0%   { top: -2px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ── Hero inner content ─────────────────────────────────────── */
.hero-inner {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Typewriter label ──────────────────────────────────────── */
.hero-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 1.4em;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* Typewriter cursor blink */
.tw-cursor {
  display: inline-block;
  color: var(--accent);
  font-weight: 300;
  margin-left: 1px;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Hero slogan (Option B — dominant headline) ─────────────── */
.hero-slogan {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.4rem, 8.5vw, 8.5rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
  color: var(--text);
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.slogan-line {
  display: block;
  overflow: hidden;
}

.slogan-line--accent {
  color: var(--accent);
}

/* Keep legacy name class in case needed */
.hero-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.name-line {
  display: block;
  overflow: hidden;
}

/* ── Cycling tag ────────────────────────────────────────────── */
.hero-tag {
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 0.9vw, 0.72rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0;
  min-height: 1.6em;
}

.tag-cycle {
  display: inline-block;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.tag-cycle.tag-exit {
  opacity: 0;
  transform: translateY(-6px);
}

.tag-cycle.tag-enter {
  opacity: 0;
  transform: translateY(6px);
  animation: tagIn 0.3s ease forwards;
}

@keyframes tagIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Hero intro ──────────────────────────────────────────────── */
.hero-intro {
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
  margin-top: 1.5rem;
  font-weight: 300;
}

/* ── Status indicator ───────────────────────────────────────── */
.hero-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  position: relative;
  flex-shrink: 0;
}

.status-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(74,222,128,0.25);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.6); opacity: 0; }
}

.status-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

/* ── Scroll indicator ───────────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: clamp(1.5rem, 5vw, 5rem);
  z-index: 1;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.7; transform: scaleY(1.15); }
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.section-label::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--border-strong);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.about-body {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  max-width: 600px;
}
.about-body:last-child { margin-bottom: 0; }

.about-list {
  list-style: none;
  margin: 0 0 1.4rem 0;
  padding: 0;
  max-width: 600px;
}

.about-list li {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.25rem;
}

.about-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

.about-statement {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin-top: 2rem;
  max-width: 540px;
}

.about-statement p {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.about-statement-closing {
  color: var(--text) !important;
  margin-top: 0.6rem !important;
}

/* ============================================================
   POSITIONING STATEMENT
   ============================================================ */
.positioning {
  padding: var(--space-xl) 0;
}

.pos-grid {
  max-width: 720px;
}

.pos-line {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.4;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
  transition-delay: 0s;
}

.pos-line--accent {
  color: var(--text);
}

.pos-closing {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pos-closing::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--accent);
}

.pos-line:nth-child(2) { transition-delay: 0.08s; }
.pos-line:nth-child(3) { transition-delay: 0.16s; }
.pos-closing { transition-delay: 0.28s; }

/* ============================================================
   RULE
   ============================================================ */
.rule-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}
.rule {
  border: none;
  border-top: 1px solid var(--border);
}

/* ============================================================
   WHAT I ACTUALLY DO
   ============================================================ */
.what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.what-card {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
}

.what-card:nth-child(2n) { border-right: none; }
.what-card:nth-child(3), .what-card:nth-child(4) { border-bottom: none; }

.what-card:hover {
  background: var(--accent-dim);
}

.what-number {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.what-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.what-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--accent);
}

.what-body {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ============================================================
   FOCUS AREAS
   ============================================================ */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
}

.focus-card {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid var(--border);
  position: relative;
}

.focus-card:last-child { border-right: none; }

.focus-card:nth-child(2) { padding-left: 2rem; }
.focus-card:nth-child(3) { padding-left: 2rem; }

.focus-number {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.focus-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.focus-body {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ============================================================
   TRACK RECORD
   ============================================================ */
.track-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.track-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.track-item:first-child { border-top: 1px solid var(--border); }

.track-stat {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.track-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--space-2xl) 0;
}

.contact-inner {
  max-width: 740px;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-label::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--border-strong);
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-link:hover {
  color: var(--text);
}

.contact-link:hover::after {
  width: 100%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: -0.01em;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAV BACK LINK
   ============================================================ */
.nav-back {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  transition: color var(--transition);
}
.nav-back:hover { color: var(--text); }

/* ============================================================
   CONTACT FORM PAGE
   ============================================================ */
.form-page {
  min-height: 100vh;
  padding-top: 9rem;
  padding-bottom: 6rem;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

/* Left column */
.form-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.form-lead {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 300;
}

.form-body {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.form-meta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.form-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.form-meta-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}

.form-meta-value {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.form-meta-link {
  transition: color var(--transition);
}
.form-meta-link:hover { color: var(--text); }

/* Right column — form */
.form-container {
  border: 1px solid var(--border);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--surface);
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.form-input,
.form-textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 1rem 1.4rem;
  transition: opacity var(--transition), transform var(--transition);
  width: 100%;
  margin-top: 0.4rem;
}

.form-submit:hover:not(:disabled) {
  opacity: 0.85;
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 1.2rem;
}

.success-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}

.success-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 320px;
}

/* ── Book a call button on homepage ─────────────────────────── */
.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.85rem 1.4rem;
  font-weight: 400;
  transition: opacity var(--transition);
  margin-top: 2rem;
}
.contact-cta:hover { opacity: 0.82; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .focus-grid {
    grid-template-columns: 1fr 1fr;
  }
  .focus-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 460px;
    border-right: none;
    padding-left: 0;
  }
  .what-grid {
    grid-template-columns: 1fr;
  }
  .what-card { border-right: none; }
  .what-card:nth-child(3) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 680px) {
  .about-grid,
  .track-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }
  .focus-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-left: 0 !important;
  }
  .focus-card:last-child { border-bottom: none; }

  .what-grid {
    grid-template-columns: 1fr;
  }
  .what-card { border-right: none; }
  .what-card:nth-child(3) { border-bottom: 1px solid var(--border); }

  .track-item {
    grid-template-columns: 90px 1fr;
    gap: 1.5rem;
  }

  .contact-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .section { padding: 4rem 0; }
  .contact { padding: 6rem 0; }

  .about-left,
  .track-left {
    margin-bottom: -1rem;
  }

  .hero-corner--tl,
  .hero-corner--br {
    display: none;
  }
}
