/* =============================================================
   DESIGN TOKENS
   ============================================================= */
:root {
  --bg:             #011356;
  --accent:         #F59E0C;
  --accent-hover:   #FBBF24;
  --text-primary:   #FFFFFF;
  --text-secondary: #CBD5E1;
  --border:         rgba(255, 255, 255, 0.08);
  --font-sans:      'Roboto', sans-serif;
  --font-nav:       'Open Sans', sans-serif;
  --max-width:      1200px;
  --nav-height:     80px;
  --radius:         6px;
}

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

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

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

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

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

ul { list-style: none; }

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

h1 { font-size: clamp(3.5rem, 9vw, 8rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.25rem; font-weight: 700; }

p { color: var(--text-secondary); font-size: 1.125rem; line-height: 1.8; }

.eyebrow {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =============================================================
   LAYOUT
   ============================================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
}

.section {
  padding: 120px 0;
}

main {
  padding-top: var(--nav-height);
}

/* =============================================================
   NAVIGATION
   ============================================================= */

/* Logo two-line treatment */
.site-nav__logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.site-nav__logo:hover { opacity: 0.8; color: inherit; }

.site-nav__logo-name {
  font-family: var(--font-nav);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1;
}

.site-nav__logo-tag {
  font-family: var(--font-nav);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 200;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.site-nav--scrolled {
  background: rgba(1, 19, 86, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}


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

.site-nav__links a {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.site-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav__links a:hover,
.site-nav__links a.active {
  color: var(--text-primary);
}

.site-nav__links a:hover::after,
.site-nav__links a.active::after {
  transform: scaleX(1);
}

/* Mobile toggle */
.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 300;
}

.site-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Open state */
.site-nav--open .site-nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav--open .site-nav__toggle span:nth-child(2) {
  opacity: 0;
}
.site-nav--open .site-nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .site-nav__toggle { display: flex; }

  .site-nav__links {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 250;
  }

  .site-nav--open .site-nav__links {
    opacity: 1;
    pointer-events: all;
  }

  .site-nav__links a {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-block;
  font-family: var(--font-nav);
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

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

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 19, 86, 0.65);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__eyebrow {
  margin-bottom: 28px;
}

.hero__headline {
  margin-bottom: 36px;
}

.hero__headline {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
}

.hero__headline em {
  font-style: normal;
  color: var(--accent);
}

.hero__body {
  font-size: 1.25rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 52px;
}

/* =============================================================
   SECTION HEADER
   ============================================================= */
.section-header {
  margin-bottom: 72px;
}

.section-header .eyebrow {
  margin-bottom: 20px;
}

.section-header h2 {
  margin-bottom: 24px;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
}

.accent-bar {
  width: 56px;
  height: 4px;
  background: var(--accent);
  margin-top: 32px;
}

/* =============================================================
   CARDS
   ============================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  padding: 44px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
}

.card__num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.card__body {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* =============================================================
   WORK TEASER
   ============================================================= */
.work-teaser {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* =============================================================
   CTA BAND
   ============================================================= */
.cta-band {
  padding: 120px 0;
}

.cta-band h2 { margin-bottom: 16px; }

.cta-band p {
  font-size: 1.125rem;
  max-width: 520px;
  margin-bottom: 48px;
}

/* =============================================================
   PAGE HERO (inner pages)
   ============================================================= */
.page-hero {
  padding: 100px 0 80px;
}

.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  margin-bottom: 28px;
}
.page-hero p {
  font-size: 1.25rem;
  max-width: 640px;
}

.page-hero__tagline {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 20px;
  max-width: none;
}

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

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer__logo {
  font-family: var(--font-nav);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.site-footer__links a {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.site-footer__links a:hover { color: var(--accent); }

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer__social-link {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.site-footer__social-link:hover { color: var(--accent); }

.site-footer__copy {
  font-size: 0.8125rem;
  color: rgba(203, 213, 225, 0.5);
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
}

/* =============================================================
   ANIMATIONS
   ============================================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.animate-fade-up:nth-child(1) { animation-delay: 0.05s; }
.animate-fade-up:nth-child(2) { animation-delay: 0.15s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.25s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.35s; }
.animate-fade-up:nth-child(5) { animation-delay: 0.45s; }

/* =============================================================
   HERO SUBLINE
   ============================================================= */
.hero__subline {
  font-family: var(--font-sans);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 24px;
  max-width: 620px;
}

/* =============================================================
   LINK ARROW — inline CTA
   ============================================================= */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-nav);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.link-arrow::after {
  content: '→';
  font-weight: 400;
  display: inline-block;
  transition: transform 0.25s ease;
}
.link-arrow:hover::after { transform: translateX(6px); }

.cta-question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

/* =============================================================
   ORIGIN PROOF SECTION
   ============================================================= */
.origin-body {
  max-width: 760px;
}
.origin-body p {
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.origin-body p:last-of-type { margin-bottom: 40px; }

/* =============================================================
   WHAT CHANGES GRID
   ============================================================= */
.changes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  max-width: 960px;
}

.change-item {
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}

.change-item__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.change-item__body {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

@media (max-width: 640px) {
  .changes-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* =============================================================
   PROOF POINTS (home page mini case stories)
   ============================================================= */
.proof-points-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proof-point {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.proof-point:first-child { border-top: 1px solid var(--border); }

.proof-point--flip { direction: rtl; }
.proof-point--flip > * { direction: ltr; }

.proof-point__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.proof-point__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.proof-point__content .eyebrow { margin-bottom: 16px; }

.proof-point__headline {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.proof-point__body {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}


@media (max-width: 768px) {
  .proof-point,
  .proof-point--flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 36px;
    padding: 56px 0;
  }
  .proof-point--flip > * { direction: ltr; }
}

/* =============================================================
   DELIBERATE PRODUCTION TEASER
   ============================================================= */
.dp-teaser {
  padding: 0;
}

.dp-teaser .eyebrow { margin-bottom: 20px; }
.dp-teaser h2 { margin-bottom: 28px; max-width: 640px; }

.dp-teaser__body {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 44px;
}

.dp-teaser__em {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  font-style: normal;
}


/* =============================================================
   CLOSING / FINAL CTA
   ============================================================= */
.closing-cta {
  background: #ffffff;
  text-align: center;
  padding: 120px 0;
}

.closing-cta .eyebrow {
  color: var(--accent);
}

.closing-cta h2 {
  color: var(--bg);
  margin-bottom: 24px;
}

.closing-cta p {
  font-size: 1.125rem;
  color: rgba(1, 19, 86, 0.6);
  max-width: 520px;
  margin: 0 auto 48px;
}

.closing-cta .btn--outline {
  color: var(--bg);
  border-color: rgba(1, 19, 86, 0.25);
}

.closing-cta .btn--outline:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.closing-cta .btn-group {
  justify-content: center;
}

@media (max-width: 768px) {
  .closing-cta { padding: 80px 0; }
}

/* =============================================================
   UTILITIES
   ============================================================= */
.text-accent   { color: var(--accent); }
.text-muted    { color: var(--text-secondary); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .hero { padding: 60px 0 48px; }
  .hero__body { font-size: 1.0625rem; }
  .cta-band { padding: 80px 0; }
  .page-hero { padding: 64px 0 56px; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .btn { padding: 14px 28px; }
  .card { padding: 32px 28px; }
}

/* =============================================================
   CASE STUDIES (work page)
   ============================================================= */
.case-studies-list {
  display: flex;
  flex-direction: column;
}

.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}

.case-study:first-child {
  border-top: 1px solid var(--border);
}

.case-study__eyebrow {
  margin-bottom: 16px;
}

.case-study__headline {
  font-size: clamp(1.625rem, 2.75vw, 2.375rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.case-study__body p {
  margin-bottom: 20px;
}
.case-study__body p:last-child {
  margin-bottom: 0;
}

.case-study__cta {
  margin-top: 32px;
}

.case-study__img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

.case-study__img + .case-study__img {
  margin-top: 16px;
}

.case-study__images-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.case-study__images-pair .case-study__img {
  margin-top: 0;
}

@media (max-width: 600px) {
  .case-study__images-pair { grid-template-columns: 1fr; }
}

.case-study__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .case-study {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 60px 0;
  }
  .case-study .case-study__media  { order: 1; }
  .case-study .case-study__content { order: 2; }
}

/* =============================================================
   STORY SPLIT (narrative text + inline image)
   ============================================================= */
.story-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
}

.story-split__body p {
  margin-bottom: 24px;
}
.story-split__body p:last-child {
  margin-bottom: 0;
}

.story-split__figure {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.story-split__figure img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

.about-team-photo {
  margin-top: 56px;
}

.about-team-photo img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

.story-split__caption {
  margin-top: 14px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  font-style: italic;
  opacity: 0.7;
}

/* =============================================================
   SECTION ALT (subtle background variant)
   ============================================================= */
.section--alt {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.testimonial {
  padding-left: 36px;
  border-left: 3px solid var(--accent);
}

.testimonial__mark {
  display: block;
  font-size: 5rem;
  line-height: 0.65;
  color: var(--accent);
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 28px;
  user-select: none;
  aria-hidden: true;
}

.testimonial__quote {
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial__attribution {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-style: normal;
}

/* =============================================================
   WHO I AM (text + photo placeholder side by side)
   ============================================================= */
.about-who {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: start;
}

.about-who__body p {
  margin-bottom: 24px;
}
.about-who__body p:last-child {
  margin-bottom: 0;
}

.photo-placeholder {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* =============================================================
   ABOUT RESPONSIVE
   ============================================================= */
@media (max-width: 900px) {
  .story-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-split__figure { position: static; }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-who {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .photo-placeholder {
    position: static;
    width: 280px;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    margin: 0 auto;
  }
}

/* =============================================================
   DELIBERATE PRODUCTION™ PAGE
   ============================================================= */
.section--spacious {
  padding: 140px 0;
}

.dp-prose {
  max-width: 740px;
}

.dp-prose p {
  margin-bottom: 28px;
}
.dp-prose p:last-child { margin-bottom: 0; }

.dp-origin p {
  line-height: 2.1;
  margin-bottom: 36px;
}
.dp-origin p:last-child { margin-bottom: 0; }

.dp-statement {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.45;
  border-left: 4px solid var(--accent);
  padding: 8px 0 8px 32px;
  margin: 48px 0;
}

.dp-what-not {
  border-left: 4px solid var(--accent);
  padding-left: 40px;
  max-width: 740px;
}

.dp-what-not p {
  margin-bottom: 24px;
  line-height: 1.9;
}
.dp-what-not p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .section--spacious { padding: 90px 0; }
  .dp-what-not { padding-left: 24px; }
}

/* =============================================================
   CONTACT PAGE
   ============================================================= */
.contact-page {
  padding: 80px 0 100px;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left column — header */
.contact-header .eyebrow { margin-bottom: 24px; }

.contact-header h1 {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  margin-bottom: 32px;
}

/* Right column — form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-field label {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-field input,
.form-field textarea {
  background: #0c1d6b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 12, 0.15);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

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

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

.form-error {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  min-height: 1em;
}

/* Button row — right-aligned */
.form-actions {
  display: flex;
  justify-content: flex-end;
}

/* Success state — shown in place of form */
.contact-success {
  padding: 40px 0;
}

.contact-success .eyebrow { margin-bottom: 16px; }
.contact-success h2 { margin-bottom: 16px; }

@media (max-width: 768px) {
  .contact-page { padding: 60px 0 80px; }
  .contact-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
