:root {
  --navy-deep: #0A1F35;
  --navy: #1A3A5C;
  --navy-soft: #2A4A6C;
  --brass: #C9A961;
  --brass-bright: #D4B574;
  --cream: #F5EFE0;
  --cream-light: #FAF6EC;
  --cream-page: #F8F2E4;
  --paper: #FFFEFA;
  --ink-soft: #4A5C70;
  --ink-faded: #7A8A9C;
  --rule: rgba(26, 58, 92, 0.12);
  --rule-strong: rgba(26, 58, 92, 0.25);

  --serif: 'Cormorant Garamond', Garamond, Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--cream-page);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'kern';
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}

button, a {
  -webkit-tap-highlight-color: rgba(201, 169, 97, 0.15);
}

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

.live-mark, .brand-mark, .lp-mark {
  display: inline-block;
}

::selection {
  background: var(--brass);
  color: var(--navy-deep);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.12 0 0 0 0 0.2 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  background: rgba(248, 242, 228, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 0.5px solid var(--rule);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}

.brand:hover { opacity: 0.7; }

.brand-mark {
  width: 32px;
  height: 32px;
  color: var(--navy);
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.brand-dot {
  color: var(--brass);
}

.brand-name em {
  font-style: italic;
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.875rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.3s var(--ease);
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width 0.4s var(--ease);
}

.site-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  background: var(--navy);
  color: var(--cream-light) !important;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
}

.nav-cta span { transition: transform 0.3s var(--ease); display: inline-block; }
.nav-cta:hover span { transform: translateX(3px); }

/* Mobile nav toggle button - hidden on desktop */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  margin-left: auto;
  z-index: 110;
  transition: background 0.3s var(--ease);
}

.nav-toggle:hover { background: rgba(26, 58, 92, 0.04); }

.nav-toggle-bar {
  width: 18px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    background: var(--cream-page);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 5.5rem 2rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -20px 0 40px -10px rgba(10, 31, 53, 0.1);
    z-index: 105;
    border-left: 0.5px solid var(--rule);
    overflow-y: auto;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0.9rem 0;
    border-bottom: 0.5px solid var(--rule);
    width: 100%;
  }

  .site-nav a:not(.nav-cta)::after { display: none; }

  .site-nav .nav-cta {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    font-family: var(--sans);
    font-size: 1rem;
    text-align: center;
    border: none;
    border-bottom: none;
    width: 100%;
    justify-content: center;
  }
}

main {
  position: relative;
  z-index: 2;
}

/* HERO */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 8%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brass) 0%, transparent 60%);
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.hero-content {
  min-width: 0;
}

.hero-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.6s forwards;
}

@media (max-width: 900px) {
  .hero-mark {
    order: 2;
  }
  .hero-content {
    order: 1;
  }
}

.live-mark {
  width: clamp(180px, 32vw, 380px);
  height: auto;
  color: var(--navy);
}

/* Live logo animations */
.lm-orbit-outer {
  transform-origin: center;
  animation: spin-cw 60s linear infinite;
  stroke-dasharray: 4 8;
}

.lm-orbit {
  transform-origin: center;
  animation: spin-ccw 80s linear infinite;
}

.lm-spoke {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  animation: draw-spoke 1.2s var(--ease) forwards;
}
.lm-spoke.s1 { animation-delay: 0.9s; }
.lm-spoke.s2 { animation-delay: 1.0s; }
.lm-spoke.s3 { animation-delay: 1.1s; }
.lm-spoke.s4 { animation-delay: 1.2s; }
.lm-spoke.s5 { animation-delay: 1.3s; }
.lm-spoke.s6 { animation-delay: 1.4s; }

.lm-node {
  opacity: 0;
  transform-origin: center;
  animation: pop-in 0.5s var(--ease) forwards;
}
.lm-node.n1 { animation-delay: 1.3s; }
.lm-node.n2 { animation-delay: 1.4s; }
.lm-node.n3 { animation-delay: 1.5s; }
.lm-node.n4 { animation-delay: 1.6s; }
.lm-node.n5 { animation-delay: 1.7s; }
.lm-node.n6 { animation-delay: 1.8s; }

.lm-hub {
  transform-origin: center;
  animation: hub-breathe 4s ease-in-out infinite 2.2s;
}

.lm-core {
  transform-origin: center;
  animation: core-pulse 3s ease-in-out infinite 2.2s;
}

.lm-glow {
  transform-origin: center;
  animation: glow-pulse 5s ease-in-out infinite 2s;
}

.lm-ring {
  opacity: 0;
  transform-origin: center;
}
.lm-ring.r1 { animation: ripple 4s ease-out infinite 2.5s; }
.lm-ring.r2 { animation: ripple 4s ease-out infinite 4.5s; }

@keyframes spin-cw {
  to { transform: rotate(360deg); }
}
@keyframes spin-ccw {
  to { transform: rotate(-360deg); }
}
@keyframes draw-spoke {
  to { stroke-dashoffset: 0; }
}
@keyframes pop-in {
  0% { opacity: 0; transform: scale(0.3); }
  60% { opacity: 1; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes hub-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes core-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes ripple {
  0% { opacity: 0; transform: scale(0.8); }
  20% { opacity: 0.6; }
  100% { opacity: 0; transform: scale(4.5); }
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) forwards;
}

.hero-meta .issue { color: var(--brass); font-weight: 500; }
.hero-meta .divider { color: var(--rule-strong); }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 2.5rem;
  max-width: 14ch;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordIn 0.9s var(--ease) forwards;
}

.hero-title .w1 { animation-delay: 0.1s; }
.hero-title .w2 { animation-delay: 0.25s; }
.hero-title .w3 { animation-delay: 0.4s; }
.hero-title .w4 { animation-delay: 0.55s; }

.hero-title em {
  font-style: italic;
  color: var(--brass);
  font-weight: 400;
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.15em;
  height: 0.08em;
  background: var(--brass);
  opacity: 0.25;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline 1s var(--ease) 0.9s forwards;
}

.hero-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.8s forwards;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.005em;
}

.btn span {
  transition: transform 0.3s var(--ease);
}

.btn:hover span {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--navy);
  color: var(--cream-light);
}

.btn-primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 10px 30px -10px rgba(10, 31, 53, 0.4);
  transform: translateY(-2px);
}

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

.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(26, 58, 92, 0.04);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 1.1rem;
}

@media (max-width: 640px) {
  .btn {
    min-height: 48px;
    padding: 0.9rem 1.4rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
  }
}

.hero-figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 0.5px solid var(--rule);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.2s forwards;
}

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

.fig-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 500;
  color: var(--brass);
  line-height: 1.1;
}

.fig-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 640px) {
  .hero-figures {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .figure {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: baseline;
    padding-bottom: 1.25rem;
    border-bottom: 0.5px solid var(--rule);
  }
  .figure:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .fig-num {
    min-width: 6rem;
  }
}

/* TRUST */
.trust {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem var(--gutter);
  text-align: center;
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}

.trust-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.trust-tags .dot {
  color: var(--brass);
  font-size: 1.2rem;
}

/* PLATFORM */
.platform {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}

.section-head {
  max-width: 720px;
  margin-bottom: 4rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 1.25rem;
  padding-left: 2rem;
  position: relative;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.4rem;
  height: 1px;
  background: var(--brass);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--brass);
  font-weight: 400;
}

.section-lede {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--rule);
  border-left: 0.5px solid var(--rule);
}

@media (max-width: 900px) {
  .capabilities { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .capabilities { grid-template-columns: 1fr; }
}

.cap {
  padding: 2.5rem 2rem;
  border-right: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  transition: background 0.4s var(--ease);
  position: relative;
}

.cap:hover {
  background: var(--cream-light);
}

.cap:hover .cap-num {
  color: var(--brass);
}

.cap-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-faded);
  margin-bottom: 1.25rem;
  display: block;
  transition: color 0.3s var(--ease);
}

.cap h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

.cap p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}

/* FEATURED CASE */
.featured-case {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .featured-case { grid-template-columns: 1fr; gap: 2.5rem; }
}

.case-card {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 4px;
  border: 0.5px solid var(--rule);
  position: relative;
}

.case-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: var(--brass);
  border-radius: 4px 4px 0 0;
}

.case-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.case-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.case-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--brass);
  transition: gap 0.3s var(--ease);
}

.link-arrow:hover {
  gap: 0.9rem;
}

.case-callout {
  padding: 2rem 0 2rem 2rem;
  border-left: 2px solid var(--brass);
  position: sticky;
  top: 100px;
}

.callout-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faded);
  font-weight: 500;
  display: block;
  margin-bottom: 1.5rem;
}

.case-callout blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.callout-attr {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* RESEARCH FLOW */
.research {
  background: var(--navy);
  color: var(--cream-light);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  position: relative;
  overflow: hidden;
}

.research::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--brass) 0%, transparent 60%);
  opacity: 0.06;
  pointer-events: none;
}

.research .section-head {
  max-width: var(--max);
  margin: 0 auto 4rem;
}

.research .eyebrow { color: var(--brass-bright); }
.research .eyebrow::before { background: var(--brass-bright); }
.research .section-title { color: var(--cream-light); }

.research-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .research-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .research .rg-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

.rg-item {
  background: rgba(245, 239, 224, 0.04);
  border: 0.5px solid rgba(201, 169, 97, 0.25);
  padding: 1.75rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.rg-item:hover {
  background: rgba(245, 239, 224, 0.08);
  border-color: var(--brass);
  transform: translateY(-3px);
}

.rg-step {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--brass-bright);
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.rg-item p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(245, 239, 224, 0.75);
  font-weight: 300;
}

.rg-arrow {
  color: var(--brass);
  font-size: 1.5rem;
  font-family: var(--serif);
  opacity: 0.6;
}

/* QUOTE */
.quote-section {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  text-align: center;
  position: relative;
}

.quote-rule {
  width: 50px;
  height: 1.5px;
  background: var(--brass);
  margin: 0 auto 2.5rem;
}

.big-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.35;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 2rem;
  letter-spacing: -0.005em;
}

.quote-attr {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faded);
  font-weight: 500;
}

/* EXPAND (verticals) */
.expand {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}

.expand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 720px) {
  .expand-grid { grid-template-columns: 1fr; }
}

.ex-card {
  background: var(--paper);
  padding: 2.5rem;
  border-radius: 4px;
  border: 0.5px solid var(--rule);
  position: relative;
  transition: all 0.4s var(--ease);
}

.ex-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(10, 31, 53, 0.15);
}

.ex-now { border-top: 3px solid var(--brass); border-radius: 4px; }
.ex-soon { border-top: 3px solid var(--navy); border-radius: 4px; opacity: 0.92; }

.ex-status {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}

.ex-now .ex-status { color: var(--brass); }
.ex-soon .ex-status { color: var(--navy); opacity: 0.6; }

.ex-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.ex-card ul {
  list-style: none;
}

.ex-card li {
  padding: 0.7rem 0;
  border-top: 0.5px solid var(--rule);
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 400;
  position: relative;
  padding-left: 1.5rem;
}

.ex-card li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--brass);
  font-size: 1.5rem;
  line-height: 0.8;
}

/* CTA */
.cta {
  background: var(--navy-deep);
  color: var(--cream-light);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, var(--brass) 0%, transparent 70%);
  opacity: 0.1;
  pointer-events: none;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass-bright);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--cream-light);
}

.cta-title em {
  font-style: italic;
  color: var(--brass-bright);
  font-weight: 400;
}

.cta-body {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(245, 239, 224, 0.75);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.cta-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}

.cta-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cta-form label span {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(245, 239, 224, 0.6);
  text-transform: uppercase;
  font-weight: 500;
}

.cta-form input,
.cta-form textarea {
  background: rgba(245, 239, 224, 0.06);
  border: 0.5px solid rgba(245, 239, 224, 0.15);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--cream-light);
  transition: all 0.3s var(--ease);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(245, 239, 224, 0.4);
}

.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: rgba(245, 239, 224, 0.1);
}

.cta-form textarea {
  resize: vertical;
  font-family: var(--sans);
}

.cta .btn-primary {
  background: var(--brass);
  color: var(--navy-deep);
  margin-top: 0.5rem;
}

.cta .btn-primary:hover {
  background: var(--brass-bright);
  box-shadow: 0 10px 30px -10px rgba(201, 169, 97, 0.5);
}

/* FOOTER */
.site-footer {
  background: var(--cream);
  padding: 4rem var(--gutter) 2rem;
  position: relative;
  z-index: 2;
}

.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid var(--rule);
}

@media (max-width: 720px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  color: var(--navy);
  flex-shrink: 0;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-links h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.3s var(--ease);
}

.footer-links a:hover { color: var(--brass); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

@media (max-width: 540px) {
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

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

@keyframes wordIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes underline {
  to { transform: scaleX(1); }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
