/* ==================== TOKENS ==================== */
:root {
  --navy: #002035;
  --navy-deep: #001525;
  --navy-soft: rgba(0, 32, 53, 0.78);
  --coral: #FC4C4C;
  --coral-soft: rgba(252, 76, 76, 0.12);
  --bg-warm: #F5F3EF;
  --bg-cream: #FAF8F4;
  --bg-deep: #ECE7DA;
  --parchment: #EDE6D3;
  --line: rgba(0, 32, 53, 0.10);
  --line-strong: rgba(0, 32, 53, 0.22);
  --muted: rgba(0, 32, 53, 0.55);
  --muted-soft: rgba(0, 32, 53, 0.4);
  --gold: #9B7E3F;
  --gold-soft: #C9B68A;

  /* Order accents — used per venture */
  --grail: #8C6A1F;
  --grail-soft: rgba(140, 106, 31, 0.10);
  --camelot-purple: #4A3470;
  --camelot-purple-soft: rgba(74, 52, 112, 0.10);
  --excalibur: #1F4D5A;
  --excalibur-soft: rgba(31, 77, 90, 0.10);
  --knight: #6B2C2C;
  --knight-soft: rgba(107, 44, 44, 0.10);
  --success: #4caf7e;

  --shadow-soft: 0 1px 2px rgba(0, 32, 53, 0.05), 0 8px 28px rgba(0, 32, 53, 0.06);
  --shadow-lift: 0 4px 8px rgba(0, 32, 53, 0.08), 0 28px 56px rgba(0, 32, 53, 0.12);
  --shadow-deep: 0 60px 120px -40px rgba(0, 32, 53, 0.25);

  --radius: 6px;
  --radius-lg: 10px;
  --radius-card: 4px;

  --font-display: 'Cinzel', 'Trajan Pro', Georgia, serif;
  --font-serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --maxw-narrow: 880px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-warm);
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(ellipse at 14% -10%, rgba(252, 76, 76, 0.05), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(0, 32, 53, 0.05), transparent 50%);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ==================== TOPBAR ==================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 243, 239, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-decoration: none;
}

.brand-image {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .brand-image { height: 32px; }
}

.brand-logo {
  width: 32px; height: 32px;
  background: url('../assets/images/camelotlabs-logo.png') center/contain no-repeat;
  flex-shrink: 0;
}

.brand-logo-light {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topnav a {
  color: var(--navy-soft);
  position: relative;
  transition: color 0.2s;
}
.topnav a:hover { color: var(--coral); }
.topnav-cta {
  padding: 9px 18px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--navy) !important;
  transition: background 0.2s, color 0.2s;
}
.topnav-cta:hover {
  background: var(--navy);
  color: var(--bg-cream) !important;
}

.topnav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
}
.topnav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.25s;
}

@media (max-width: 760px) {
  .topnav { display: none; }
  .topnav-toggle { display: inline-flex; }
  .topnav.is-open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-cream);
    border-bottom: 1px solid var(--line);
    padding: 24px 28px;
    gap: 18px;
  }
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  padding: 92px 0 110px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-glow-1 {
  top: -8%;
  left: -10%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(252, 76, 76, 0.18), transparent 60%);
}
.hero-glow-2 {
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(155, 126, 63, 0.18), transparent 60%);
}

.hero-ornament {
  position: absolute;
  width: 80px;
  height: auto;
  color: var(--navy);
  opacity: 0.5;
  top: 10%;
}
.hero-ornament-left { left: 4%; }
.hero-ornament-right { right: 4%; }
@media (max-width: 1100px) {
  .hero-ornament { display: none; }
}

.hero-inner {
  text-align: center;
  position: relative;
}

.hero-crest {
  width: auto;
  height: 96px;
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
  animation: crest-float 8s ease-in-out infinite;
}
.hero-crest-img { height: 100%; width: auto; object-fit: contain; display: block; }
@media (max-width: 600px) { .hero-crest { height: 72px; } }

@keyframes crest-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 30px;
}

.eyebrow-rule {
  width: 36px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow-rule.short { width: 24px; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6.6vw, 76px);
  line-height: 1.04;
  letter-spacing: 0.005em;
  margin-bottom: 28px;
  color: var(--navy);
}
.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--coral);
  letter-spacing: -0.01em;
}

.hero-lede {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 38px;
  font-style: italic;
}

.hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--navy);
  color: var(--bg-cream);
}
.btn-primary:hover {
  background: var(--navy-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--navy);
}

.btn-light {
  background: var(--bg-cream);
  color: var(--navy);
}
.btn-light:hover {
  background: #ffffff;
}

.btn-arrow {
  transition: transform 0.18s;
}
.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-meta strong {
  color: var(--navy);
  font-weight: 600;
}
.hero-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--muted-soft);
  border-radius: 50%;
}

/* ==================== SECTION COMMON ==================== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 22px;
}
.section-eyebrow.inverted { color: var(--gold-soft); }
.section-eyebrow.inverted .eyebrow-rule { background: var(--gold-soft); }
.section-eyebrow .eyebrow-rule { background: currentColor; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--coral);
  letter-spacing: -0.01em;
}

.section-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

/* ==================== MANIFEST ==================== */
.manifest {
  background: var(--bg-cream);
  padding: 110px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.manifest::before, .manifest::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 30%, var(--line-strong) 70%, transparent);
}
.manifest::before { top: 18px; }
.manifest::after { bottom: 18px; }

.manifest-inner {
  max-width: var(--maxw-narrow);
  text-align: center;
}

.manifest-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin-bottom: 30px;
}
.manifest-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--coral);
  letter-spacing: -0.01em;
}

.manifest-lede {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.65;
  color: var(--navy-soft);
  font-style: italic;
  max-width: 720px;
  margin: 0 auto 80px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: left;
}
@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr; gap: 28px; }
}

.pillar {
  padding: 32px 28px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pillar:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: var(--line-strong);
}

.pillar-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--coral);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.pillar-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--navy);
}

.pillar-body {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
}

/* ==================== VENTURES ==================== */
.ventures {
  padding: 120px 0;
}

/* === Afdelingen grid === */
.afdelingen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1040px) {
  .afdelingen-grid { grid-template-columns: 1fr; gap: 22px; max-width: 720px; margin: 0 auto; }
}

.afdeling {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px 28px;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.afdeling::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--accent-soft, transparent), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.afdeling:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--accent, var(--line-strong));
}
.afdeling:hover::before { opacity: 1; }

.afdeling-excalibur { --accent: var(--excalibur);       --accent-soft: var(--excalibur-soft); }
.afdeling-grail     { --accent: var(--grail);           --accent-soft: var(--grail-soft); }
.afdeling-camelot   { --accent: var(--camelot-purple);  --accent-soft: var(--camelot-purple-soft); }

.afdeling-head {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.afdeling-sigil {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent, var(--navy));
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1.4), background 0.3s, border-color 0.3s;
}
.afdeling-sigil svg {
  width: 40px;
  height: 40px;
  transition: transform 0.4s;
}
.afdeling:hover .afdeling-sigil {
  background: var(--accent, var(--navy));
  border-color: var(--accent, var(--navy));
  color: var(--bg-cream);
  transform: rotate(-3deg);
}
.afdeling:hover .afdeling-sigil svg {
  transform: scale(1.05);
}

.afdeling-tag {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent, var(--coral));
  font-weight: 500;
  margin-bottom: 6px;
}

.afdeling-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 6px;
}

.afdeling-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--accent, var(--navy-soft));
  line-height: 1.4;
}

.afdeling-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
}

.afdeling-projects {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.proj {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.proj:first-child { border-top: 0; padding-top: 0; }

.proj-link, .proj > .proj-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  color: var(--navy);
  transition: color 0.2s;
}
.proj-link {
  text-decoration: none;
}
.proj-link:hover .proj-name { color: var(--accent, var(--coral)); }
.proj-link:hover .proj-arrow { transform: translateX(2px); color: var(--accent, var(--coral)); }

.proj-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.proj-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--navy);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  transition: color 0.2s;
}

.proj-arrow {
  display: inline-block;
  font-size: 12px;
  color: var(--muted-soft);
  transition: transform 0.2s, color 0.2s;
}

.proj-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.35;
}

.proj-status {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.proj-status .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 2.5px rgba(76, 175, 126, 0.18);
}
.proj-status.status-soon .status-dot {
  background: var(--gold);
  box-shadow: 0 0 0 2.5px rgba(155, 126, 63, 0.18);
}
.proj-status.status-private .status-dot {
  background: var(--knight);
  box-shadow: 0 0 0 2.5px rgba(107, 44, 44, 0.18);
}
.proj-status.status-live { color: var(--success); }
.proj-status.status-soon { color: var(--gold); }
.proj-status.status-private { color: var(--knight); }

.proj-empty .proj-main { opacity: 0.85; }
.proj-empty .proj-name { color: var(--muted); }

.venture {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  padding: 38px 36px;
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.3s;
  overflow: hidden;
  isolation: isolate;
}
.venture::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-soft, transparent), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.venture:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--accent, var(--line-strong));
}
.venture:hover::before { opacity: 1; }

@media (max-width: 600px) {
  .venture {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 26px;
  }
}

.venture-grail   { --accent: var(--grail);          --accent-soft: var(--grail-soft); }
.venture-camelot { --accent: var(--camelot-purple); --accent-soft: var(--camelot-purple-soft); }
.venture-excalibur { --accent: var(--excalibur);    --accent-soft: var(--excalibur-soft); }
.venture-knight  { --accent: var(--knight);         --accent-soft: var(--knight-soft); }

.venture-sigil {
  width: 96px;
  height: 96px;
  border-radius: 6px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent, var(--navy));
  position: relative;
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1.4), background 0.3s, border-color 0.3s;
}
.venture-sigil svg {
  width: 64px;
  height: 64px;
  transition: transform 0.4s;
}
.venture:hover .venture-sigil {
  transform: rotate(-3deg);
  background: var(--accent, var(--navy));
  border-color: var(--accent, var(--navy));
  color: var(--bg-cream);
}
.venture:hover .venture-sigil svg {
  transform: scale(1.05);
}

.venture-tier {
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent, var(--coral));
  font-weight: 500;
  margin-bottom: 10px;
}

.venture-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 8px;
}

.venture-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--accent, var(--navy-soft));
  margin-bottom: 18px;
}

.venture-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 56ch;
}

.venture-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.venture-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(76, 175, 126, 0.18);
}
.status-soon .status-dot {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(155, 126, 63, 0.18);
}
.status-private .status-dot {
  background: var(--knight);
  box-shadow: 0 0 0 3px rgba(107, 44, 44, 0.18);
}
.status-live { color: var(--success); }
.status-soon { color: var(--gold); }
.status-private { color: var(--knight); }

.venture-link {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
  font-weight: 500;
  transition: color 0.2s;
}
.venture:hover .venture-link {
  color: var(--accent, var(--navy));
}

/* ==================== APPROACH ==================== */
.approach {
  padding: 120px 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
}

.approach-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .approach-inner { grid-template-columns: 1fr; gap: 40px; }
}

.approach-text .section-title { text-align: left; }

.approach-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 56ch;
}

.approach-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.approach-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.approach-list li:last-child { border-bottom: 0; padding-bottom: 0; }

.approach-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--coral);
  letter-spacing: 0.02em;
}
.approach-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 4px;
}
.approach-list div {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
}

.approach-quote {
  background: var(--navy);
  color: var(--bg-cream);
  padding: 40px 36px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.approach-quote::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(252, 76, 76, 0.18), transparent 70%);
  pointer-events: none;
}

.quote-mark {
  width: 38px;
  height: auto;
  color: var(--coral);
  opacity: 0.85;
  margin-bottom: 22px;
}

.quote-text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--bg-cream);
  margin-bottom: 22px;
}

.quote-attr {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ==================== CTA STRIP ==================== */
.cta-strip {
  background: var(--navy);
  color: var(--bg-cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before, .cta-strip::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-strip::before {
  top: -60%; left: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(252, 76, 76, 0.25), transparent 60%);
}
.cta-strip::after {
  bottom: -60%; right: -10%;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(155, 126, 63, 0.25), transparent 60%);
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 720px;
  margin: 0 auto;
}

.cta-text {
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--bg-cream);
  margin-bottom: 18px;
}

.cta-lede {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245, 243, 239, 0.75);
  max-width: 60ch;
}

/* ==================== CONTACT FORM ==================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(245, 243, 239, 0.05);
  border: 1px solid rgba(245, 243, 239, 0.12);
  border-radius: 8px;
  padding: 32px 32px 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .contact-form { padding: 24px 22px; }
}

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

.field-label {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.field-label .opt {
  color: rgba(245, 243, 239, 0.42);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  margin-left: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--bg-cream);
  background: rgba(13, 23, 36, 0.45);
  border: 1px solid rgba(245, 243, 239, 0.14);
  border-radius: 4px;
  padding: 13px 14px;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 243, 239, 0.35);
  font-style: italic;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(245, 243, 239, 0.28);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: rgba(13, 23, 36, 0.6);
  box-shadow: 0 0 0 3px rgba(252, 76, 76, 0.18);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-sans);
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23bcb6a6' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field select option {
  color: var(--navy);
  background: var(--bg-cream);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 6px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .form-foot { flex-direction: column; align-items: flex-start; gap: 14px; }
}

.btn-submit {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 15px 28px;
  text-transform: uppercase;
}
.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.form-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13.5px;
  color: rgba(245, 243, 239, 0.55);
  line-height: 1.5;
}
.form-sub a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 182, 138, 0.4);
  transition: color 0.2s, border-color 0.2s;
}
.form-sub a:hover {
  color: var(--bg-cream);
  border-color: var(--bg-cream);
}

.form-status {
  font-size: 13.5px;
  line-height: 1.55;
  padding: 0;
  border-radius: 4px;
  transition: padding 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}
.form-status:not(:empty) {
  padding: 12px 14px;
  margin-top: 4px;
}
.form-status.is-ok {
  color: #b9e6c8;
  background: rgba(76, 175, 126, 0.12);
  border-color: rgba(76, 175, 126, 0.35);
}
.form-status.is-error {
  color: #f6c8c0;
  background: rgba(252, 76, 76, 0.12);
  border-color: rgba(252, 76, 76, 0.35);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--navy-deep);
  color: rgba(245, 243, 239, 0.78);
  padding-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer-brand-image {
  height: 56px;
  width: auto;
  display: block;
}
.footer-brand .brand-logo {
  width: 40px; height: 40px;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-cream);
  margin-bottom: 8px;
}
.footer-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14.5px;
  color: rgba(245, 243, 239, 0.55);
  max-width: 28ch;
  line-height: 1.5;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 600px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer-col a {
  color: rgba(245, 243, 239, 0.78);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral); }
.footer-col .muted {
  color: rgba(245, 243, 239, 0.4);
  font-size: 13px;
}

.footer-base {
  border-top: 1px solid rgba(245, 243, 239, 0.1);
  padding: 24px 0;
  font-size: 12.5px;
  color: rgba(245, 243, 239, 0.45);
}

.footer-base-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-motto {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
