/* VOLA site.css — generated from src/styles (do not edit) */
/* VOLA CAPITAL — institutional design tokens (SSOT: docs/ssot/VOLA_CAPITAL.md §21) */

:root {
  /* Surfaces */
  --vola-ink: #0D1417;
  --vola-charcoal: #151E22;
  --vola-slate-border: #2C383D;
  --vola-paper: #F5F2EC;
  --vola-white: #FCFBF8;
  --vola-stone: #E9E4DB;

  /* Text */
  --vola-text-ink: #0D1417;
  --vola-text-slate: #596267;
  --vola-text-paper: #F5F2EC;
  --vola-text-mist: #B0B7BA;

  /* Accent */
  --vola-copper-600: #9A5731;
  --vola-copper-400: #C88959;
  --vola-copper-100: #EEE0D3;

  /* Borders */
  --vola-stone-border: #D6D0C6;

  /* States */
  --vola-brick: #A23D35;
  --vola-forest: #2F7355;
  --vola-ochre: #826320;

  /* Semantic aliases */
  --bg: var(--vola-paper);
  --bg-dark: var(--vola-ink);
  --bg-dark-2: var(--vola-charcoal);
  --surface: var(--vola-white);
  --surface-dark: var(--vola-charcoal);
  --text: var(--vola-text-ink);
  --text-muted: var(--vola-text-slate);
  --text-on-dark: var(--vola-text-paper);
  --text-muted-dark: var(--vola-text-mist);
  --border: var(--vola-stone-border);
  --border-dark: var(--vola-slate-border);
  --primary: var(--vola-copper-600);
  --primary-light: var(--vola-copper-400);
  --primary-fill: var(--vola-copper-100);
  --primary-ink: var(--vola-white);
  --destructive: var(--vola-brick);
  --success: var(--vola-forest);
  --warning: var(--vola-ochre);

  /* Typography */
  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --fs-home-h1: clamp(2.625rem, 5vw, 4.5rem);
  --fs-interior-h1: clamp(2.375rem, 4vw, 3.5rem);
  --fs-h2: clamp(2rem, 3vw, 2.75rem);
  --fs-h3: clamp(1.5rem, 2vw, 1.75rem);
  --fs-h4: clamp(1.1875rem, 1.5vw, 1.25rem);
  --fs-lead: clamp(1.1875rem, 1.5vw, 1.375rem);
  --fs-body: clamp(1rem, 1vw, 1.0625rem);
  --fs-small: 0.875rem;
  --fs-nav: 0.9375rem;
  --fs-nav-mobile: 1.125rem;
  --fs-button: 0.9375rem;
  --fs-eyebrow: clamp(0.6875rem, 1vw, 0.75rem);
  --fs-meta: 0.8125rem;
  --fs-breadcrumb: 0.8125rem;

  --lh-tight: 1.05;
  --lh-h1-mobile: 1.1;
  --lh-h2: 1.18;
  --lh-h3: 1.28;
  --lh-h4: 1.4;
  --lh-lead: 1.55;
  --lh-body: 1.65;
  --lh-small: 1.55;
  --lh-nav: 1.35;

  /* Spacing scale (4px base) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-30: 7.5rem;
  --sp-36: 9rem;
  --sp-40: 10rem;

  /* Layout */
  --container-max: 80rem;
  --header-h: 5rem;
  --header-h-mobile: 4rem;
  --radius: 2px;
  --radius-none: 0;

  /* Motion */
  --dur-fast: 160ms;
  --dur-base: 200ms;
  --dur-slow: 240ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Z-index */
  --z-nav: 100;
  --z-mega: 110;
  --z-drawer: 120;
  --z-cookie: 130;
  --z-skip: 200;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/Inter-VariableFont_opsz_wght.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/Inter-Italic-VariableFont_opsz_wght.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("fonts/PlusJakartaSans-VariableFont_wght.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
  src: url("fonts/PlusJakartaSans-Italic-VariableFont_wght.woff2") format("woff2");
}

*,
*::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;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

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

.skip-link {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  z-index: var(--z-skip);
  padding: var(--sp-3) var(--sp-4);
  background: var(--primary);
  color: var(--primary-ink);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-200%);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 5rem);
}

.section {
  padding-block: clamp(4.5rem, 8vw, 9rem);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section--dark .muted {
  color: var(--text-muted-dark);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 var(--sp-5);
}

.section--dark .eyebrow {
  color: var(--text-muted-dark);
}

.h1 {
  font-family: var(--font-head);
  font-size: var(--fs-home-h1);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  margin: 0;
}

.h1--interior {
  font-size: var(--fs-interior-h1);
  line-height: 1.1;
}

.h2 {
  font-family: var(--font-head);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: var(--lh-h2);
  letter-spacing: -0.015em;
  margin: 0;
}

.h3 {
  font-family: var(--font-head);
  font-size: var(--fs-h3);
  font-weight: 650;
  line-height: var(--lh-h3);
  margin: 0;
}

.h4 {
  font-family: var(--font-head);
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: var(--lh-h4);
  margin: 0;
}

.lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  margin: 0;
  max-width: 42.5rem;
}

.body-text {
  margin: 0;
  max-width: 42.5rem;
}

.muted {
  color: var(--text-muted);
}

.small {
  font-size: var(--fs-small);
  line-height: var(--lh-small);
}

.meta {
  font-size: var(--fs-meta);
  font-weight: 500;
  line-height: 1.45;
}

.prose {
  max-width: 45rem;
}

.prose > * + * {
  margin-top: var(--sp-4);
}

.grid-12 {
  display: grid;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .grid-12 {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@import "tokens.css";

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 3rem;
  padding: 0 1.375rem;
  font-family: var(--font-body);
  font-size: var(--fs-button);
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
}

@media (min-width: 768px) {
  .btn {
    min-height: 3.25rem;
  }
}

.btn:active {
  transform: translateY(1px);
}

.btn[disabled],
.btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--vola-copper-400);
  border-color: var(--vola-copper-400);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

.section--dark .btn-outline,
.hero--dark .btn-outline {
  color: var(--text-on-dark);
  border-color: var(--border-dark);
}

.section--dark .btn-outline:hover,
.section--dark .btn-outline:focus-visible,
.hero--dark .btn-outline:hover,
.hero--dark .btn-outline:focus-visible {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
  min-height: 2.75rem;
  padding-inline: var(--sp-3);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--primary);
  text-decoration: none;
}

.btn-block {
  width: 100%;
}

.btn-arrow::after {
  content: "→";
  transition: transform var(--dur-fast) var(--ease-out);
}

.btn-arrow:hover::after,
.btn-arrow:focus-visible::after {
  transform: translateX(4px);
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out);
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--vola-stone);
  position: relative;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.card:hover .card__media img,
.card:focus-within .card__media img {
  transform: scale(1.025);
}

.card:hover,
.card:focus-within {
  border-color: var(--primary);
}

.card__body {
  padding: var(--sp-6);
}

.card__title {
  font-family: var(--font-head);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin: 0 0 var(--sp-2);
}

.card__meta {
  font-size: var(--fs-meta);
  color: var(--text-muted);
  margin: 0 0 var(--sp-3);
}

.card__excerpt {
  margin: 0;
  font-size: var(--fs-body);
  color: var(--text-muted);
}

.section--dark .card,
.section--dark .card-link {
  color: var(--text);
}

.section--dark .card__title {
  color: var(--text);
}

.section--dark .card__meta,
.section--dark .card__excerpt {
  color: var(--text-muted);
}

.card--portfolio .card__media {
  aspect-ratio: 4 / 3;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-link:hover,
.card-link:focus-visible {
  text-decoration: none;
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  height: 1.75rem;
  padding: 0 var(--sp-3);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: var(--radius);
  border: 1px solid transparent;
}

.badge--pipeline {
  background: var(--primary);
  color: var(--primary-ink);
}

.badge--benchmark {
  background: var(--vola-ink);
  color: var(--text-on-dark);
}

.badge--verified {
  background: var(--success);
  color: var(--primary-ink);
}

.badge--illustrative {
  background: var(--warning);
  color: var(--primary-ink);
}

.badge--overlay {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  z-index: 2;
}

/* ---------- Relationship disclosure ---------- */
.disclosure {
  padding: var(--sp-5);
  border: 1px solid var(--border);
  border-left: 2px solid var(--primary);
  background: var(--surface);
  border-radius: var(--radius);
}

.disclosure__title {
  font-family: var(--font-head);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin: 0 0 var(--sp-3);
}

.disclosure p {
  margin: 0;
  font-size: var(--fs-body);
}

/* ---------- Facts rail ---------- */
.facts-rail {
  display: grid;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .facts-rail {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .facts-rail--sidebar {
    grid-template-columns: 1fr;
  }
}

.facts-rail__item {
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}

.facts-rail__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.facts-rail__label {
  display: block;
  font-size: var(--fs-meta);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--sp-1);
}

.facts-rail__value {
  font-family: var(--font-head);
  font-size: var(--fs-h4);
  font-weight: 600;
}

/* ---------- Proof / stats rail ---------- */
.proof-rail {
  display: grid;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .proof-rail {
    grid-template-columns: repeat(4, 1fr);
  }
}

.proof-rail__item {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-muted);
}

.section--dark .proof-rail {
  border-top-color: var(--border-dark);
}

.section--dark .proof-rail__item {
  color: var(--text-muted-dark);
}

.hero--dark .eyebrow {
  color: var(--text-muted-dark);
}

.hero--dark .proof-rail {
  border-top-color: var(--border-dark);
}

.hero--dark .proof-rail__item {
  color: var(--text-muted-dark);
}

/* ---------- Filters ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}

.filter-chip {
  min-height: 2.75rem;
  padding: 0 var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}

.filter-chip:hover,
.filter-chip:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-chip.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-ink);
}

/* ---------- Forms ---------- */
.field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.field label {
  font-size: var(--fs-body);
  font-weight: 500;
}

.field .req {
  color: var(--text-muted);
  font-weight: 600;
}

.input,
.textarea,
.select {
  width: 100%;
  min-height: 3.5rem;
  padding: 0 var(--sp-4);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--dur-fast);
}

.textarea {
  min-height: 10rem;
  padding-block: var(--sp-4);
  resize: vertical;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-fill);
}

.field .err {
  font-size: var(--fs-small);
  color: var(--destructive);
}

.form-grid {
  display: grid;
  gap: var(--sp-5);
}

@media (min-width: 768px) {
  .form-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: var(--fs-breadcrumb);
  line-height: 1.38;
  margin-bottom: var(--sp-6);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--primary);
  text-decoration: underline;
}

.breadcrumbs [aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: var(--sp-2);
  color: var(--text-muted);
}

/* ---------- Team cards ---------- */
.team-grid {
  display: grid;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.team-card__media {
  aspect-ratio: 4 / 5;
  background: var(--vola-stone);
  position: relative;
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__body {
  padding: var(--sp-5) var(--sp-6);
}

.team-card__name {
  font-family: var(--font-head);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin: 0 0 var(--sp-1);
}

.team-card__role {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin: 0 0 var(--sp-3);
}

.team-card__bio {
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  margin: 0;
}

.notice {
  padding: var(--sp-5) var(--sp-6);
  border: 1px solid var(--border);
  border-left: 2px solid var(--warning);
  background: var(--surface);
  border-radius: var(--radius);
  margin-bottom: var(--sp-8);
}

.notice--compact {
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-5);
}

.notice--compact .notice__title {
  margin-bottom: var(--sp-1);
  font-size: var(--fs-small);
}

.notice--compact p {
  font-size: var(--fs-small);
  line-height: 1.45;
}

.notice__title {
  font-family: var(--font-head);
  font-weight: 600;
  margin: 0 0 var(--sp-2);
}

.notice p {
  margin: 0;
  font-size: var(--fs-body);
}

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  height: var(--header-h-mobile);
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
}

@media (min-width: 1120px) {
  .site-header {
    height: var(--header-h);
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-4);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: var(--text-on-dark);
}

.brand:hover,
.brand:focus-visible {
  text-decoration: none;
  color: var(--text-on-dark);
}

.brand__mark {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand__name {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.site-nav {
  display: none;
  align-items: center;
  gap: var(--sp-6);
}

@media (min-width: 1120px) {
  .site-nav {
    display: flex;
  }
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-trigger,
.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  min-height: 2.75rem;
  padding: 0 var(--sp-3);
  font-size: var(--fs-nav);
  font-weight: 500;
  color: var(--text-muted-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: var(--lh-nav);
}

.nav-trigger:hover,
.nav-trigger:focus-visible,
.site-nav__link:hover,
.site-nav__link:focus-visible,
.nav-trigger[aria-expanded="true"] {
  color: var(--text-on-dark);
  text-decoration: none;
}

.nav-trigger__chevron {
  width: 0.75rem;
  height: 0.75rem;
  transition: transform var(--dur-fast);
}

.nav-trigger[aria-expanded="true"] .nav-trigger__chevron {
  transform: rotate(180deg);
}

.header-actions {
  display: none;
  align-items: center;
  gap: var(--sp-4);
}

@media (min-width: 1120px) {
  .header-actions {
    display: flex;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: none;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  color: var(--text-on-dark);
  cursor: pointer;
}

@media (min-width: 1120px) {
  .menu-toggle {
    display: none;
  }
}

/* ---------- Mega menu ---------- */
.mega-panel {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h);
  width: 100vw;
  max-width: 100vw;
  height: clamp(24.75rem, 28vw, 27.5rem);
  background: var(--surface);
  border-top: 2px solid var(--primary);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(13, 20, 23, 0.12);
  z-index: var(--z-mega);
  overflow: auto;
}

.mega-panel.is-open {
  display: block;
}

.mega-panel__inner {
  width: min(80rem, 100%);
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--sp-8) clamp(1rem, 4vw, 5rem);
  min-height: 100%;
  box-sizing: border-box;
}

.mega-grid {
  display: grid;
  gap: var(--sp-8);
}

.mega-grid--full {
  gap: var(--sp-8);
}

@media (min-width: 1120px) {
  .mega-grid--full {
    grid-template-columns: minmax(12rem, 1.1fr) minmax(22rem, 2.2fr) minmax(14rem, 1fr);
    align-items: start;
  }
}

.mega-proposition__text {
  margin: var(--sp-3) 0 0;
  font-family: var(--font-head);
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.mega-capabilities .eyebrow {
  margin-bottom: var(--sp-4);
}

.mega-links {
  display: grid;
  gap: var(--sp-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .mega-links {
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--sp-6);
  }
}

.mega-links a {
  display: block;
  padding: var(--sp-3) 0;
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

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

.mega-highlight {
  padding: var(--sp-6);
  background: var(--primary-fill);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.mega-highlight__title {
  font-family: var(--font-head);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin: 0 0 var(--sp-2);
}

.mega-highlight p {
  margin: 0 0 var(--sp-5);
  color: var(--muted);
  font-size: var(--fs-small);
}

body.mega-open::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h);
  bottom: 0;
  background: color-mix(in srgb, var(--bg-dark) 40%, transparent);
  z-index: calc(var(--z-mega) - 1);
  pointer-events: none;
}

/* ---------- Mobile drawer ---------- */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 20, 23, 0.5);
  z-index: calc(var(--z-drawer) - 1);
}

.drawer-overlay.is-open {
  display: block;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 26.25rem;
  height: 100dvh;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  z-index: var(--z-drawer);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  overflow-y: auto;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h-mobile);
  padding-inline: var(--sp-5);
  border-bottom: 1px solid var(--border-dark);
}

.drawer__close {
  width: 2.75rem;
  height: 2.75rem;
  background: none;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  color: var(--text-on-dark);
  cursor: pointer;
}

.drawer-nav {
  padding: var(--sp-4) var(--sp-5);
}

.drawer-nav__item {
  border-bottom: 1px solid var(--border-dark);
}

.drawer-nav__trigger,
.drawer-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 3.5rem;
  padding: var(--sp-3) 0;
  font-size: var(--fs-nav-mobile);
  font-weight: 500;
  color: var(--text-on-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: left;
}

.drawer-nav__sub {
  display: none;
  padding-bottom: var(--sp-3);
}

.drawer-nav__sub.is-open {
  display: block;
}

.drawer-nav__sub a {
  display: block;
  min-height: 3rem;
  padding: var(--sp-2) var(--sp-4);
  font-size: 0.9375rem;
  color: var(--text-muted-dark);
  text-decoration: none;
  border-left: 2px solid transparent;
}

.drawer-nav__sub a:hover,
.drawer-nav__sub a:focus-visible,
.drawer-nav__sub a.is-active {
  color: var(--primary-light);
  border-left-color: var(--primary-light);
}

.drawer__footer {
  padding: var(--sp-6) var(--sp-5) var(--sp-8);
  border-top: 1px solid var(--border-dark);
}

.drawer__contact {
  display: grid;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  font-size: var(--fs-small);
}

.drawer__contact a {
  color: var(--text-muted-dark);
  text-decoration: none;
}

.drawer__contact a:hover,
.drawer__contact a:focus-visible {
  color: var(--primary-light);
  text-decoration: underline;
}

body.drawer-open {
  overflow: hidden;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding-block: var(--sp-24) var(--sp-8);
}

.footer-grid {
  display: grid;
  gap: var(--sp-8);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
  }
}

.footer-col__title {
  font-family: var(--font-head);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  margin: 0 0 var(--sp-4);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: var(--sp-2);
}

.footer-links a {
  font-size: var(--fs-small);
  color: var(--text-muted-dark);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary-light);
  text-decoration: underline;
}

.footer-legal {
  margin-top: var(--sp-10);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-dark);
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted-dark);
}

.footer-legal p {
  margin: 0 0 var(--sp-3);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-cookie);
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--sp-4) var(--sp-4) calc(var(--sp-4) + env(safe-area-inset-bottom, 0px));
  max-height: 45vh;
  overflow: auto;
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease-out);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: grid;
  gap: var(--sp-3);
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.cookie-banner__actions .btn {
  width: 100%;
  justify-content: center;
}

.cookie-banner__manage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: var(--fs-small);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.cookie-banner__manage:hover,
.cookie-banner__manage:focus-visible {
  color: var(--primary);
}

@media (min-width: 768px) {
  .cookie-banner {
    left: 1.5rem;
    right: auto;
    bottom: 1.5rem;
    width: min(27.5rem, calc(100vw - 3rem));
    max-height: none;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(13, 20, 23, 0.14);
  }

  .cookie-banner__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cookie-banner__actions .btn {
    width: auto;
    flex: 1 1 calc(50% - 0.25rem);
  }

  .cookie-banner__manage {
    justify-content: flex-start;
  }
}

/* ---------- Cookie preferences ---------- */
.cookie-prefs {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-cookie) + 1);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  background: color-mix(in srgb, var(--bg-dark) 70%, transparent);
}

.cookie-prefs.is-open {
  display: flex;
}

.cookie-prefs__panel {
  width: min(560px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-6);
}

.cookie-prefs__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.cookie-prefs__close {
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.cookie-prefs__list {
  list-style: none;
  margin: var(--sp-6) 0;
  padding: 0;
  display: grid;
  gap: var(--sp-4);
}

.cookie-prefs__item {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  align-items: flex-start;
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
}

.cookie-prefs__name {
  margin: 0 0 var(--sp-1);
  font-weight: 600;
}

.cookie-prefs__switch {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  white-space: nowrap;
}

.cookie-prefs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

body.cookie-prefs-open {
  overflow: hidden;
}

/* ---------- Home helpers ---------- */
.stage-list {
  list-style: none;
  margin: var(--sp-8) 0 0;
  padding: 0;
  display: grid;
  gap: var(--sp-4);
}

@media (min-width: 768px) {
  .stage-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stage-list li {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stage-list__num {
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.chip-list {
  list-style: none;
  margin: var(--sp-6) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem;
}

.form-error-summary,
.contact-status.is-error {
  margin-bottom: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--destructive, #c44);
  border-radius: var(--radius);
  color: var(--text);
  background: color-mix(in srgb, var(--destructive, #c44) 12%, transparent);
}

.form-success {
  padding: var(--sp-8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.form-success .h3 {
  margin-top: 0;
}

.contact-form.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.field.is-error .input,
.field.is-error .select,
.field.is-error .textarea,
.input.is-error,
.select.is-error,
.textarea.is-error {
  border-color: var(--destructive, #c44);
}

.blocker-list {
  font-family: ui-monospace, monospace;
  font-size: 0.875rem;
}

.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(4rem, 10vw, 8rem);
}

.hero--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.hero--dark .lead {
  color: var(--text-muted-dark);
}

.hero--visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  min-height: min(72vh, 40rem);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media picture,
.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: right center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(13, 20, 23, 0.94) 0%,
      rgba(13, 20, 23, 0.82) 34%,
      rgba(13, 20, 23, 0.42) 68%,
      rgba(13, 20, 23, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(13, 20, 23, 0.35) 0%,
      rgba(13, 20, 23, 0.12) 45%,
      rgba(13, 20, 23, 0.55) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(4.5rem, 10vw, 6.5rem) var(--sp-8);
}

.hero__copy {
  max-width: 42rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-10);
}

.hero__lead {
  margin-top: var(--sp-8);
}

.hero__credit {
  margin-top: var(--sp-6);
  color: var(--text-muted-dark);
  opacity: 0.85;
}

@media (max-width: 767px) {
  .hero--visual {
    min-height: 36rem;
  }

  .hero__media img {
    object-position: center center;
  }

  .hero__scrim {
    background:
      linear-gradient(
        180deg,
        rgba(13, 20, 23, 0.55) 0%,
        rgba(13, 20, 23, 0.78) 45%,
        rgba(13, 20, 23, 0.92) 100%
      );
  }

  .hero__copy {
    max-width: none;
  }
}

@media (min-width: 1120px) {
  .hero--visual {
    min-height: 47.5rem;
    height: clamp(47.5rem, 54vw, 51.25rem);
  }
}

/* ---------- Portfolio grid ---------- */
.portfolio-grid {
  display: grid;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Detail layout ---------- */
.section--detail {
  padding-top: var(--sp-6);
}

.detail-stage {
  display: grid;
  gap: var(--sp-6);
  margin-top: var(--sp-5);
}

.detail-stage__summary {
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-5);
  max-width: 40rem;
}

.detail-stage .disclosure {
  margin-bottom: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
}

.detail-stage .h1--interior {
  margin-top: var(--sp-3);
}

@media (min-width: 1024px) {
  .detail-stage {
    grid-template-columns: minmax(0, 8fr) minmax(16rem, 4fr);
    align-items: start;
    gap: var(--sp-8);
  }

  .detail-stage__rail {
    position: sticky;
    top: calc(var(--header-h) + var(--sp-4));
  }
}

.detail-layout {
  display: grid;
  gap: var(--sp-8);
}

.detail-hero {
  aspect-ratio: 16 / 10;
  width: 100%;
  min-height: 20rem;
  height: clamp(20rem, 28vw, 23.75rem);
  background: var(--vola-stone);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .detail-hero {
    min-width: min(100%, 32.5rem);
  }
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-credit {
  position: absolute;
  bottom: var(--sp-3);
  right: var(--sp-3);
  padding: var(--sp-1) var(--sp-2);
  font-size: 0.6875rem;
  background: rgba(13, 20, 23, 0.75);
  color: var(--text-on-dark);
  border-radius: var(--radius);
}

/* ---------- Contact layout ---------- */
.contact-layout {
  display: grid;
  gap: var(--sp-8);
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: minmax(0, 5fr) minmax(1.5rem, 1fr) minmax(0, 6fr);
    align-items: start;
  }

  .contact-layout__spacer {
    min-height: 1px;
  }
}

.contact-details {
  margin: 0;
  display: grid;
  gap: var(--sp-5);
}

.contact-details dt {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-1);
}

.contact-details dd {
  margin: 0;
  font-size: var(--fs-body);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-6);
}

.contact-card .form-success {
  margin: 0;
}

/* ---------- Capability row ---------- */
.capability-list {
  display: grid;
  gap: var(--sp-4);
  list-style: none;
  margin: var(--sp-10) 0 0;
  padding: 0;
}

@media (min-width: 768px) {
  .capability-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.capability-item {
  padding: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
}

.capability-item__num {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: var(--sp-2);
}

.capability-item__title {
  font-family: var(--font-head);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin: 0 0 var(--sp-2);
  color: var(--text);
}

.capability-item p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.section--dark .capability-item {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

/* ---------- Corporate info block ---------- */
.corporate-info {
  padding: var(--sp-6);
  background: var(--vola-stone);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: var(--sp-10);
}

.corporate-info h3 {
  margin-bottom: var(--sp-4);
}

.corporate-info dl {
  display: grid;
  gap: var(--sp-3);
  margin: 0;
}

.corporate-info dt {
  font-size: var(--fs-meta);
  font-weight: 500;
  color: var(--text-muted);
}

.corporate-info dd {
  margin: 0;
  font-weight: 500;
}

/* ---------- Spacing utilities (no inline styles) ---------- */
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }
.mb-8 { margin-bottom: var(--sp-8); }
.border-top-none { border-top: none; }
.pt-0 { padding-top: 0; }
.footer-brand-note { margin-top: var(--sp-4); color: var(--text-muted-dark); }

/* ---------- Preview / draft watermark ---------- */
.preview-watermark {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-skip) + 1);
  pointer-events: none;
  overflow: hidden;
}

.preview-watermark__stripe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  transform: translate(-50%, -50%) rotate(-24deg);
  text-align: center;
  padding: var(--sp-3) 0;
  background: rgba(13, 20, 23, 0.06);
  border-block: 1px solid var(--border);
}

.preview-watermark__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

body.has-preview-watermark {
  position: relative;
}

