:root {
  --ink: #11100e;
  --paper: #f4f0e8;
  --paper-2: #ebe4d8;
  --muted: #6d675d;
  --line: rgba(17, 16, 14, 0.16);
  --accent: #b98241;
  --accent-deep: #8c5e2d;
  --white: #fffdf8;
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

img { max-width: 100%; }

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  padding: 10px 14px;
  background: var(--white);
  z-index: 999;
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 240, 232, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: -0.06em;
}

.brand-name { font-size: 15px; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav a:not(.nav-cta):hover { opacity: 0.58; }

.nav-cta {
  padding: 10px 15px;
  border: 1px solid var(--ink);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 8px 0 8px 16px;
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding: 92px 0 80px;
  background:
    radial-gradient(circle at 78% 28%, rgba(185, 130, 65, 0.16), transparent 28%),
    linear-gradient(180deg, var(--paper), #eee7dc);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.72fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: end;
}

.eyebrow {
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 750;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 800px;
  font-size: clamp(58px, 8.2vw, 116px);
  line-height: 0.92;
  margin-bottom: 34px;
}

h2 {
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.98;
  margin-bottom: 28px;
}

h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
}

.hero-lede {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
  color: #3f3b35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.button-secondary {
  border-color: var(--ink);
  color: var(--ink);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-accent {
  background: var(--accent);
  color: var(--ink);
}

.hero-card {
  padding: 30px 0 8px;
  border-top: 1px solid var(--ink);
  align-self: end;
}



.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-self: end;
}

.portrait-frame {
  position: relative;
  background: linear-gradient(180deg, rgba(255,253,248,0.65), rgba(255,253,248,0.12));
  padding: 14px;
  border: 1px solid rgba(17, 16, 14, 0.12);
  box-shadow: 0 24px 80px rgba(17,16,14,0.14);
}

.portrait-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.hero-card {
  padding: 30px 0 8px;
  border-top: 1px solid var(--ink);
  align-self: end;
  max-width: 100%;
}

.about-inline-profile {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 26px;
  padding: 16px;
  background: rgba(255, 253, 248, 0.52);
  border: 1px solid rgba(17,16,14,0.08);
}

.about-inline-image {
  width: 96px;
  height: 120px;
  object-fit: cover;
  object-position: center top;
  flex: 0 0 auto;
}

.about-inline-meta p {
  margin: 0;
}

.about-inline-name {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 6px !important;
}

.about-inline-role {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}


.hero-card .quote {
  font-family: var(--serif);
  font-size: clamp(25px, 2.6vw, 37px);
  line-height: 1.12;
}

.hero-card p:last-child {
  color: #4d4840;
  font-size: 15px;
}

.rule {
  width: 54px;
  height: 1px;
  background: var(--ink);
  margin: 28px 0;
}

.section {
  padding: clamp(88px, 11vw, 150px) 0;
}

.section-light { background: var(--paper); }

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.split, .about-grid, .arena-grid, .fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 8vw, 120px);
}

.section-heading h2 { max-width: 620px; }

.prose {
  max-width: 700px;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.6;
}

.prose p { margin-bottom: 26px; }

.arena {
  background: var(--accent);
}

.arena-grid {
  align-items: end;
}

.arena-copy {
  font-size: clamp(19px, 1.8vw, 24px);
  max-width: 720px;
}

.arena-copy .strong {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.12;
  margin: 38px 0 0;
}

.section-intro {
  max-width: 890px;
  margin-bottom: 58px;
}

.offers {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  align-items: stretch;
}

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 720px;
  padding: clamp(32px, 4vw, 54px);
  border: 1px solid rgba(255,255,255,0.2);
  background: #181715;
}

.offer-featured {
  background: var(--white);
  color: var(--ink);
}

.offer-number {
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.price {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  margin-bottom: 30px;
}

.price span {
  font-family: var(--sans);
  font-size: 14px;
  color: #8b857b;
}

.offer-copy {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
}

.offer-featured .offer-copy { color: #5d584f; }

.offer ul, .fit-card ul {
  margin: 38px 0;
  padding: 0;
  list-style: none;
}

.offer li, .fit-card li {
  padding: 12px 0 12px 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
}

.offer-featured li {
  border-top-color: rgba(17,16,14,0.13);
}

.offer li::before, .fit-card li::before {
  content: "—";
  position: absolute;
  left: 0;
}

.seat-label {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--accent);
  padding: 9px 13px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.capability {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability span {
  display: block;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 54px;
}

.capability p {
  color: var(--muted);
  margin-bottom: 0;
}

.about {
  background: var(--paper-2);
}

.signature {
  margin: 42px 0 0 !important;
  font-family: var(--serif);
  font-size: 28px;
}

.signature-title {
  font-size: 14px;
  color: var(--muted);
}

.fit {
  background: var(--white);
}

.fit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fit-card {
  padding: 34px;
  background: var(--paper);
}

.fit-card h3 {
  margin-bottom: 30px;
}

.fit-card li {
  border-top-color: var(--line);
}

.final-cta {
  padding: clamp(100px, 13vw, 180px) 0;
  background: var(--accent);
}

.final-cta-inner {
  max-width: 920px;
  text-align: center;
}

.final-cta-inner p:not(.eyebrow) {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: 19px;
}

.final-cta .button {
  margin-top: 20px;
}

.email-link {
  display: block;
  margin-top: 24px;
  font-size: 14px;
}

.site-footer {
  padding: 48px 0;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 10px;
}

.site-footer p {
  color: rgba(255,255,255,0.58);
  margin-bottom: 5px;
}

.footer-meta {
  text-align: right;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .about-grid,
  .arena-grid,
  .fit-grid,
  .offers {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 70px; }
  .offer { min-height: auto; }
  .capabilities { grid-template-columns: repeat(2, 1fr); }
  .fit-columns { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { position: relative; }

  .about-inline-profile {
    align-items: flex-start;
  }

  .about-inline-image {
    width: 78px;
    height: 98px;
  }

  .menu-button { display: block; }

  .primary-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 22px 20px 26px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .primary-nav.is-open { display: flex; }

  .primary-nav a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .primary-nav .nav-cta {
    margin-top: 10px;
    text-align: center;
    padding: 12px;
  }

  h1 { font-size: clamp(52px, 16vw, 78px); }

  .hero {
    padding-top: 68px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button { width: 100%; }

  .capabilities {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .button { transition: none; }
}
