:root {
  --paper: #f3efe7;
  --paper-deep: #e9e1d5;
  --ink: #1b1b18;
  --terracotta: #b94e2f;
  --terracotta-bright: #d66742;
  --sage: #9ca992;
  --gold: #d8ad58;
  --line: rgba(27, 27, 24, .18);
  --white: #fffdf7;
  --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 99; background: var(--ink); color: white; padding: 12px 16px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 239, 231, .94);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.wordmark { width: 105px; display: grid; text-decoration: none; }
.wordmark span { font-size: 24px; font-weight: 800; letter-spacing: .2em; line-height: 1; }
.wordmark i { display: block; width: 89px; height: 4px; margin-top: 6px; background: var(--terracotta); }
nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
nav a, .text-link { font-size: 13px; font-weight: 650; text-decoration: none; }
nav a { color: #54534d; }
nav a:hover, nav a:focus-visible, .text-link:hover, .text-link:focus-visible { color: var(--terracotta); }
.nav-actions { display: flex; align-items: center; gap: 22px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--terracotta); border-color: var(--terracotta); }
.button-small { min-height: 42px; padding-inline: 18px; gap: 12px; }
.button-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button-light:hover, .button-light:focus-visible { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.hero { min-height: 750px; padding-block: 104px 112px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 68px; }
.eyebrow, .kicker { text-transform: uppercase; font-size: 11px; line-height: 1.4; font-weight: 800; letter-spacing: .2em; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 26px; }
.pulse { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta-bright); }
.pulse::after { content: ""; position: absolute; inset: -4px; border: 1px solid var(--terracotta-bright); border-radius: inherit; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: .2; transform: scale(.8); } 50% { opacity: .9; transform: scale(1.12); } }
h1 { max-width: 650px; margin: 0 0 28px; font-size: clamp(60px, 6.7vw, 102px); line-height: .88; letter-spacing: -.065em; font-weight: 760; }
h1 em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; color: var(--terracotta); }
.hero-lede { max-width: 570px; margin: 0; color: #4f4e48; font-size: 19px; line-height: 1.58; letter-spacing: -.01em; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 36px; }
.underlined-link { padding-block: 6px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 700; text-decoration: none; }
.underlined-link:hover, .underlined-link:focus-visible { color: var(--terracotta); border-color: var(--terracotta); }
.hero-note { max-width: 390px; margin: 28px 0 0; color: #77736a; font-size: 12px; line-height: 1.5; }

.service-stage { position: relative; overflow: hidden; min-width: 0; color: white; background: var(--ink); box-shadow: 22px 25px 0 var(--terracotta); }
.service-stage::before { content: ""; position: absolute; width: 200px; height: 200px; top: -95px; right: -80px; border: 34px solid rgba(255,255,255,.04); border-radius: 50%; }
.stage-topbar { min-height: 63px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border-bottom: 1px solid rgba(255,255,255,.13); }
.stage-brand { font-size: 13px; font-weight: 850; letter-spacing: .16em; }
.stage-brand span { color: #88877f; font-size: 9px; letter-spacing: .11em; }
.live-pill { display: flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.16); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.live-pill i { width: 6px; height: 6px; background: #79ae6a; border-radius: 50%; }
.stage-body { display: grid; grid-template-columns: 1fr 135px; min-height: 365px; }
.stage-main { min-width: 0; padding: 27px 22px; }
.stage-label { margin-bottom: 15px; color: #a7a59c; font-size: 9px; font-weight: 750; letter-spacing: .14em; }
.ticket { display: flex; align-items: center; gap: 10px; min-width: 0; padding: 14px; background: #2b2b27; }
.ticket strong { display: block; font-size: 12px; }
.ticket small { display: block; margin-top: 3px; color: #aaa89e; font-size: 9px; }
.ticket-featured { justify-content: space-between; padding: 16px; background: var(--terracotta); }
.ticket-featured > div { display: flex; align-items: center; gap: 13px; }
.ticket-featured small { color: #f2d7cd; }
.table-number { display: grid; place-items: center; width: 41px; height: 41px; border: 1px solid rgba(255,255,255,.36); font-family: Georgia, serif; font-size: 20px; }
.timer { align-self: flex-start; padding: 6px 7px; background: rgba(0,0,0,.18); font-size: 10px; font-variant-numeric: tabular-nums; }
.ticket-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.ticket-dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.ticket-dot.terracotta { background: var(--terracotta-bright); }
.ticket-dot.sage { background: #83ad77; }
.pass-callout { margin-top: 17px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); color: #d3d0c6; font-size: 10px; }
.pass-callout span { margin-right: 10px; color: var(--gold); font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.stage-rail { display: flex; flex-direction: column; border-left: 1px solid rgba(255,255,255,.13); }
.rail-stat { padding: 21px 15px 17px; border-bottom: 1px solid rgba(255,255,255,.13); }
.rail-stat span, .rail-stat small { display: block; color: #98968e; font-size: 8px; text-transform: uppercase; letter-spacing: .11em; }
.rail-stat strong { display: block; margin-block: 5px 4px; font-family: Georgia, serif; font-size: 29px; font-weight: 400; }
.rail-sync { margin-top: auto; padding: 14px; color: #b8b5aa; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.rail-sync i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; background: #79ae6a; border-radius: 50%; }
.stage-caption { min-height: 50px; padding: 0 22px; display: flex; align-items: center; justify-content: center; gap: 9px; border-top: 1px solid rgba(255,255,255,.13); color: #77766f; font-size: 8px; text-transform: uppercase; letter-spacing: .14em; }
.stage-caption i { width: 20px; height: 1px; background: var(--terracotta-bright); }

.statement-band { background: var(--terracotta); color: var(--white); }
.statement-grid { min-height: 106px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.statement-grid p { margin: 0; padding-inline: 34px; border-right: 1px solid rgba(255,255,255,.28); font-family: Georgia, serif; font-size: 20px; font-style: italic; text-align: center; }
.statement-grid p:first-child { padding-left: 0; }
.statement-grid p:last-child { padding-right: 0; border-right: 0; }

.section { padding-block: 132px; }
.section-heading { max-width: 850px; }
.kicker { margin: 0 0 25px; color: var(--terracotta); }
.section-heading h2, .story-copy h2, .final-cta h2 { margin: 0; font-size: clamp(42px, 5.3vw, 70px); line-height: .98; letter-spacing: -.055em; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 74px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle { position: relative; min-height: 400px; padding: 28px 38px 36px; border-right: 1px solid var(--line); }
.principle:first-child { padding-left: 0; }
.principle:last-child { padding-right: 0; border-right: 0; }
.principle-index { color: #8f8c83; font-size: 10px; font-weight: 700; }
.principle-mark { height: 120px; margin-top: 28px; display: flex; align-items: center; }
.principle h3 { margin: 10px 0 13px; font-size: 23px; letter-spacing: -.025em; }
.principle p { margin: 0; color: #66635d; font-size: 14px; line-height: 1.68; }
.mark-flow { gap: 12px; }
.mark-flow i { position: relative; width: 40px; height: 40px; border: 1px solid var(--ink); transform: rotate(45deg); }
.mark-flow i + i::before { content: ""; position: absolute; width: 15px; height: 1px; left: -21px; top: 2px; background: var(--terracotta); transform: rotate(-45deg); transform-origin: right; }
.mark-flow i:nth-child(2) { background: var(--terracotta); border-color: var(--terracotta); }
.mark-signal { align-items: flex-end; gap: 7px; }
.mark-signal i { width: 13px; background: var(--ink); }
.mark-signal i:nth-child(1) { height: 25px; }.mark-signal i:nth-child(2) { height: 48px; }.mark-signal i:nth-child(3) { height: 75px; background: var(--terracotta); }.mark-signal i:nth-child(4) { height: 104px; background: var(--sage); }
.mark-record { position: relative; }
.mark-record i:first-child { width: 82px; height: 82px; border: 1px solid var(--ink); border-radius: 50%; }
.mark-record i:last-child { position: absolute; left: 57px; top: 52px; width: 58px; height: 58px; border-radius: 50%; background: var(--terracotta); opacity: .9; }

.flow-section { overflow: hidden; background: var(--ink); color: var(--white); }
.section-heading-light { max-width: 690px; }
.section-heading-light h2 { font-size: clamp(46px, 5.7vw, 76px); }
.section-heading-light > p:last-child { max-width: 500px; margin: 25px 0 0; color: #aaa89f; font-size: 17px; line-height: 1.6; }
.flow-track { position: relative; display: grid; grid-template-columns: 1fr 50px 1fr 50px 1fr 50px 1fr; align-items: center; margin-top: 80px; }
.flow-track::before { content: ""; position: absolute; left: 0; right: 0; top: 67px; height: 1px; background: rgba(255,255,255,.14); }
.flow-track article { position: relative; min-height: 280px; }
.flow-track article > span { color: #76746d; font-size: 9px; letter-spacing: .12em; }
.flow-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 72px; height: 72px; margin: 24px 0 28px; border: 1px solid rgba(255,255,255,.25); background: var(--ink); color: var(--gold); font-family: Georgia, serif; font-size: 14px; border-radius: 50%; }
.flow-track h3 { margin: 0 0 10px; font-size: 17px; }
.flow-track p { max-width: 185px; margin: 0; color: #97958e; font-size: 12px; line-height: 1.6; }
.flow-arrow { position: relative; z-index: 2; margin-top: -144px; color: var(--terracotta-bright); text-align: center; }

.split-heading { max-width: none; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; }
.split-heading > p { margin: 0 0 4px; color: #66635d; font-size: 15px; line-height: 1.7; }
.suite-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 330px; gap: 12px; margin-top: 70px; }
.suite-card { position: relative; overflow: hidden; padding: 32px; }
.suite-card-wide { grid-column: span 2; }
.card-copy { position: relative; z-index: 2; max-width: 350px; }
.card-copy span { font-size: 9px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; opacity: .65; }
.card-copy h3 { margin: 12px 0 10px; font-size: 27px; letter-spacing: -.035em; }
.card-copy p { margin: 0; font-size: 13px; line-height: 1.62; opacity: .72; }
.card-terracotta { background: var(--terracotta); color: white; }.card-ink { background: var(--ink); color: white; }.card-sage { background: var(--sage); }.card-cream { background: var(--paper-deep); }.card-gold { background: var(--gold); }
.mini-floor { position: absolute; right: 34px; bottom: 32px; width: 225px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mini-floor i { display: grid; place-items: center; aspect-ratio: 1.4; border: 1px solid rgba(255,255,255,.45); color: rgba(255,255,255,.7); font-size: 10px; font-style: normal; }
.mini-floor .active { background: var(--ink); color: white; border-color: var(--ink); }.mini-floor .ready { background: #8faf7e; color: var(--ink); border-color: #8faf7e; }
.mini-dockets { position: absolute; left: 32px; right: 32px; bottom: 30px; display: flex; gap: 7px; align-items: end; }
.mini-dockets i { display: block; flex: 1; height: 77px; background: #35352f; border-top: 4px solid var(--terracotta); }.mini-dockets i:nth-child(2) { height: 106px; border-color: var(--gold); }.mini-dockets i:nth-child(3) { height: 62px; border-color: var(--sage); }
.guest-lines { position: absolute; left: 32px; right: 32px; bottom: 34px; display: grid; gap: 12px; }
.guest-lines i { height: 13px; border: 1px solid rgba(27,27,24,.33); }.guest-lines i:nth-child(2) { width: 70%; background: rgba(255,255,255,.28); }.guest-lines i:nth-child(3) { width: 85%; }
.stock-meter { position: absolute; left: 32px; right: 32px; bottom: 36px; height: 86px; display: flex; gap: 10px; align-items: flex-end; }
.stock-meter i { flex: 1; height: 30%; background: #c6bfb4; }.stock-meter i:nth-child(2) { height: 74%; }.stock-meter i:nth-child(3) { height: 50%; background: var(--terracotta); }.stock-meter i:nth-child(4) { height: 86%; }.stock-meter i:nth-child(5) { height: 63%; }
.mini-chart { position: absolute; width: 260px; right: 36px; bottom: 42px; display: flex; gap: 8px; align-items: end; height: 105px; border-bottom: 1px solid rgba(27,27,24,.38); }
.mini-chart i { flex: 1; height: 30%; background: var(--ink); }.mini-chart i:nth-child(2) { height: 48%; }.mini-chart i:nth-child(3) { height: 43%; }.mini-chart i:nth-child(4) { height: 69%; background: var(--terracotta); }.mini-chart i:nth-child(5) { height: 82%; }.mini-chart i:nth-child(6) { height: 100%; }

.story-section { background: var(--paper-deep); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.story-art { position: relative; min-height: 540px; display: grid; place-items: center; background: var(--terracotta); }
.story-art::before, .story-art::after { content: ""; position: absolute; background: rgba(255,255,255,.17); }
.story-art::before { width: 1px; top: 0; bottom: 0; left: 50%; }.story-art::after { height: 1px; left: 0; right: 0; top: 50%; }
.story-ticket { position: relative; z-index: 1; width: 58%; min-width: 230px; padding: 28px; background: var(--paper); box-shadow: 18px 18px 0 rgba(27,27,24,.9); transform: rotate(-3deg); }
.story-ticket > span, .story-ticket small { display: block; font-size: 8px; letter-spacing: .16em; }
.story-ticket strong { display: block; margin-block: 25px; font-size: 48px; line-height: .87; letter-spacing: -.05em; }
.story-ticket i { display: block; width: 100%; height: 8px; margin-bottom: 22px; background: var(--terracotta); }
.story-stamp { position: absolute; z-index: 2; right: 12%; bottom: 13%; display: grid; place-items: center; width: 105px; height: 105px; border: 2px solid var(--ink); color: var(--ink); font-size: 10px; font-weight: 800; line-height: 1.3; text-align: center; transform: rotate(12deg); border-radius: 50%; }
.story-copy h2 { max-width: 530px; }
.story-copy > p:not(.kicker):not(.story-signoff) { max-width: 540px; margin: 30px 0; color: #5d5a54; font-size: 17px; line-height: 1.72; }
blockquote { margin: 38px 0 12px; padding: 23px 0 23px 26px; border-left: 4px solid var(--terracotta); font-family: Georgia, serif; font-size: 25px; font-style: italic; line-height: 1.35; }
.story-signoff { margin: 0 0 0 30px; color: #858177; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.final-cta { margin-block: 120px; padding: 76px; display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 70px; background: var(--terracotta); color: white; }
.final-cta .kicker { color: #f0c5b6; }
.final-cta h2 { font-size: clamp(42px, 5vw, 65px); }
.final-actions { display: grid; gap: 18px; justify-items: start; }
.final-actions p { max-width: 300px; margin: 0; color: #f0d6cc; font-size: 12px; line-height: 1.6; }

footer { padding-top: 70px; background: var(--ink); color: white; }
.footer-top { min-height: 240px; display: flex; justify-content: space-between; gap: 80px; }
.footer-brand { display: grid; align-content: start; }
.footer-brand span { font-size: 36px; font-weight: 800; letter-spacing: .21em; }
.footer-brand i { width: 134px; height: 5px; margin: 8px 0 20px; background: var(--terracotta-bright); }
.footer-brand small { color: #8d8b83; font-family: Georgia, serif; font-size: 13px; font-style: italic; }
.footer-links { display: grid; grid-template-columns: repeat(2, 145px); gap: 50px; }
.footer-links div { display: grid; align-content: start; gap: 10px; }
.footer-links strong { margin-bottom: 10px; color: #79776f; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a { color: #d8d5cc; font-size: 12px; text-decoration: none; }.footer-links a:hover, .footer-links a:focus-visible { color: var(--terracotta-bright); }
.footer-bottom { min-height: 68px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.13); color: #77756f; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 980px) {
  nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 76px; }
  .hero-copy { max-width: 710px; }
  .service-stage { max-width: 720px; }
  .principle { padding-inline: 24px; }
  .split-heading { grid-template-columns: 1fr; gap: 28px; }
  .story-grid { gap: 55px; }
  .final-cta { padding: 55px; grid-template-columns: 1fr; align-items: start; gap: 40px; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .site-header { position: relative; }
  .nav-wrap { min-height: 68px; }
  .wordmark { width: 88px; }.wordmark span { font-size: 20px; }.wordmark i { width: 75px; }
  .text-link { display: none; }.button-small { min-height: 39px; padding-inline: 13px; font-size: 11px; }
  .hero { padding-block: 64px 75px; gap: 54px; }
  h1 { font-size: clamp(53px, 17.4vw, 80px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .service-stage { box-shadow: 10px 12px 0 var(--terracotta); }
  .stage-body { grid-template-columns: 1fr; }
  .stage-rail { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .rail-stat { padding: 15px 10px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 0; }.rail-stat:last-of-type { border-right: 0; }.rail-stat strong { font-size: 22px; }.rail-sync { display: none; }
  .stage-caption { padding-inline: 10px; gap: 6px; }.stage-caption i { width: 9px; }
  .statement-grid { grid-template-columns: 1fr; padding-block: 18px; }.statement-grid p { padding: 13px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }.statement-grid p:last-child { border-bottom: 0; }
  .section { padding-block: 88px; }
  .principle-grid { grid-template-columns: 1fr; margin-top: 52px; }
  .principle, .principle:first-child, .principle:last-child { min-height: 340px; padding: 28px 0 34px; border-right: 0; border-bottom: 1px solid var(--line); }.principle:last-child { border-bottom: 0; }
  .principle-mark { height: 105px; }
  .flow-track { grid-template-columns: 1fr; margin-top: 55px; }
  .flow-track::before { top: 0; bottom: 0; left: 35px; width: 1px; height: auto; right: auto; }
  .flow-track article { min-height: 0; padding: 0 0 48px 100px; }.flow-track article > span { position: absolute; left: 12px; top: -16px; }.flow-icon { position: absolute; left: 0; top: 0; margin: 0; }.flow-track h3 { padding-top: 8px; }.flow-track p { max-width: 260px; }.flow-arrow { display: none; }
  .suite-grid { grid-template-columns: 1fr; grid-auto-rows: 320px; }.suite-card-wide { grid-column: auto; }
  .suite-card { padding: 27px; }.mini-floor, .mini-chart { width: 200px; right: 27px; }.mini-dockets, .guest-lines, .stock-meter { left: 27px; right: 27px; }
  .story-grid { grid-template-columns: 1fr; }.story-art { min-height: 470px; }.story-copy { padding-top: 18px; }
  .final-cta { width: 100%; margin-block: 0; padding: 75px 28px; }
  .footer-top { min-height: auto; padding-bottom: 60px; flex-direction: column; }.footer-links { grid-template-columns: 1fr 1fr; width: 100%; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
}

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