/* ─────────── tokens ─────────── */
:root {
  --bg: #F5F3EE;
  --bg-2: #EDEAE1;
  --ink: #0E0E0C;
  --ink-2: #2A2A26;
  --muted: #87837A;
  --hair: #C9C4B7;
  --accent-swatch: #23A6A6;
  --pad-y: clamp(96px, 12vw, 160px);
  --pad-x: clamp(20px, 5vw, 80px);
  --maxw: 1480px;
}

/* ─────────── base ─────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; font-family: "Instrument Serif", Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }

.mono {
  font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
}
.display {
  font-family: "General Sans", -apple-system, sans-serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}
.display em { font-size: 1.04em; }

/* ─────────── header ─────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .35s, border-color .35s, box-shadow .35s;
  background: linear-gradient(180deg, rgba(14,14,12,.55) 0%, rgba(14,14,12,.25) 100%);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid rgba(245,243,238,.18);
  color: #F5F3EE;
}
.site-header.is-scrolled {
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  border-color: var(--hair);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(14,14,12,.04), 0 8px 24px -16px rgba(14,14,12,.3);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 18px var(--pad-x);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 40px;
}
.brand img { height: 30px; width: auto; transition: filter .3s; }
.site-header:not(.is-scrolled) .brand img { filter: invert(1); }
.nav { display: flex; gap: 28px; justify-self: center; }
.nav a { display: inline-flex; align-items: baseline; gap: 6px; font-size: 14px; padding: 4px 0; transition: opacity .2s; }
.nav a:hover { opacity: .6; }
.nav-num { font-family: "JetBrains Mono", monospace; font-size: 10px; opacity: .55; letter-spacing: .05em; }
.cta-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border: 1px solid currentColor; border-radius: 999px;
  font-size: 13px; cursor: pointer;
  transition: background .2s, color .2s;
}
.site-header:not(.is-scrolled) .cta-pill:hover { background: #F5F3EE; color: #0E0E0C; }
.site-header.is-scrolled .cta-pill:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-swatch);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent-swatch) 25%, transparent);
}

/* ─────────── hero ─────────── */
.hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-rows: 1fr auto;
  color: #F5F3EE; overflow: hidden;
}
.hero-image, .hero-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-image img { filter: contrast(1.02) brightness(.92) saturate(.92); }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.05) 35%, rgba(0,0,0,.55) 100%),
    radial-gradient(120% 80% at 80% 30%, transparent 30%, rgba(0,0,0,.35) 100%);
}
.hero-overlay {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
  padding: 80px var(--pad-x) 60px; width: 100%;
  align-self: end; display: flex; flex-direction: column; gap: 40px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; align-self: start;
  padding: 8px 14px; border: 1px solid rgba(245,243,238,.35); border-radius: 999px;
  backdrop-filter: blur(8px); background: rgba(0,0,0,.15);
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-swatch); }
.hero-title {
  font-family: "General Sans", sans-serif; font-weight: 500;
  font-size: clamp(48px, 8.5vw, 156px); line-height: .95;
  letter-spacing: -.035em; margin: 0; max-width: 16ch;
}
.hero-title .line { display: block; }
.hero-title .italic { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; letter-spacing: -.02em; }
.hero-foot {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  border-top: 1px solid rgba(245,243,238,.2); padding-top: 28px;
}
.link-btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 18px; padding: 14px 0; border-bottom: 1px solid currentColor;
  transition: gap .25s;
}
.link-btn:hover { gap: 22px; }
.hero-meta { display: flex; gap: 36px; flex-wrap: wrap; opacity: .85; }
.hero-meta .meta-k { color: var(--accent-swatch); margin-right: 8px; }
.hero-marquee {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(245,243,238,.15); padding: 14px 0;
  overflow: hidden; background: rgba(0,0,0,.25); backdrop-filter: blur(8px);
}
.marquee-track {
  display: flex; gap: 32px; align-items: center;
  white-space: nowrap; animation: marquee 60s linear infinite; width: max-content;
}
.marquee-track .sep { color: var(--accent-swatch); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────── section head ─────────── */
.section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 56px; flex-wrap: wrap; gap: 16px; }
.sh-left { display: inline-flex; align-items: center; gap: 16px; }
.sh-num { color: var(--accent-swatch); }
.sh-rule { width: 60px; height: 1px; background: var(--ink); display: inline-block; }
.sh-right { color: var(--muted); }

/* ─────────── about ─────────── */
.about { padding: var(--pad-y) var(--pad-x); max-width: var(--maxw); margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px,6vw,96px); align-items: start; }
.about-copy h2 { margin-bottom: 32px; max-width: 16ch; }
.lede { font-size: clamp(17px, 1.3vw, 19px); color: var(--ink-2); max-width: 50ch; margin: 0 0 36px; }
.value-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin: 48px 0 36px; padding: 32px 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.value h4 { font-size: 16px; font-weight: 500; margin: 8px 0 6px; letter-spacing: -.01em; }
.value p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }
.value-k { color: var(--accent-swatch); display: block; }
.about-aside { display: flex; flex-direction: column; gap: 32px; position: sticky; top: 100px; }
.about-fig { margin: 0; }
.about-fig img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.about-fig figcaption { display: flex; justify-content: space-between; gap: 8px; padding-top: 10px; border-top: 1px solid var(--hair); margin-top: 10px; color: var(--muted); }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--hair); }
.stat { padding: 24px 20px; border-right: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.stat:nth-child(2n) { border-right: none; }
.stat:nth-last-child(-n+2) { border-bottom: none; }
.stat-n { font-family: "General Sans", sans-serif; font-size: 36px; font-weight: 500; letter-spacing: -.03em; }
.stat-l { color: var(--muted); margin-top: 4px; }

/* ─────────── services ─────────── */
.services { background: var(--bg-2); padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.services-inner { max-width: var(--maxw); margin: 0 auto; }
.services-title { max-width: 18ch; margin-bottom: 64px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--ink); }
.service-card { padding: 36px 32px 32px; border-right: 1px solid var(--hair); display: flex; flex-direction: column; min-height: 380px; background: var(--bg); transition: background .3s; }
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--bg-2); }
.sc-head { display: flex; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--hair); margin-bottom: 28px; color: var(--muted); }
.sc-tag { color: var(--accent-swatch); }
.service-card h3 { font-family: "General Sans", sans-serif; font-size: 28px; font-weight: 500; letter-spacing: -.02em; margin: 0 0 12px; }
.service-card > p { color: var(--ink-2); font-size: 15px; margin: 0 0 24px; max-width: 36ch; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.service-card li { display: flex; gap: 12px; font-size: 14px; color: var(--ink-2); }
.bullet { color: var(--accent-swatch); font-family: "JetBrains Mono", monospace; }
.sc-link { display: inline-flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--hair); transition: gap .25s; font-size: 12px; font-family: "JetBrains Mono", monospace; letter-spacing: .04em; text-transform: uppercase; }
.sc-link:hover { gap: 18px; color: var(--accent-swatch); }

/* ─────────── fleet ─────────── */
.fleet { padding: var(--pad-y) var(--pad-x); max-width: var(--maxw); margin: 0 auto; }
.fleet-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px,6vw,96px); align-items: end; margin-bottom: 64px; }
.fleet-intro h2 { margin: 0; max-width: 18ch; }
.fleet-intro .lede { margin: 0; }
.fleet-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.fg-large { grid-column: 1; grid-row: 1; margin: 0; }
.fg-large img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.fg-tall { grid-column: 2; grid-row: 1 / span 2; margin: 0; display: flex; flex-direction: column; }
.fg-tall img { flex: 1; min-height: 0; object-fit: cover; width: 100%; height: 100%; }
.fg-spec { grid-column: 1; grid-row: 2; padding: 32px; background: var(--bg-2); border: 1px solid var(--hair); display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; align-content: center; }
.spec-row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px dashed var(--hair); font-size: 14px; }
.spec-row:nth-last-child(-n+2) { border-bottom: none; }
.spec-row .mono { color: var(--muted); }
.fig-caption { padding: 10px 4px 0; color: var(--muted); border-top: 1px solid var(--hair); margin-top: 10px; font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }

/* ─────────── events ─────────── */
.events { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; background: var(--ink); color: var(--bg); }
.events-image { position: relative; overflow: hidden; }
.events-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.05) brightness(.85); }
.events-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, var(--ink) 100%); }
.events-copy { padding: clamp(60px,9vw,120px) clamp(40px,6vw,96px); display: flex; flex-direction: column; justify-content: center; gap: 28px; max-width: 60ch; }
.events-eyebrow { color: var(--accent-swatch); }
.events-copy .display { color: var(--bg); }
.events-copy p { color: rgba(245,243,238,.8); font-size: 17px; max-width: 50ch; }
.events-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--accent-swatch); color: var(--ink); padding: 16px 28px; border-radius: 999px; font-size: 14px; font-weight: 500; transition: transform .2s, box-shadow .2s; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(35,166,166,.4); }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(245,243,238,.4); color: var(--bg); padding: 16px 28px; border-radius: 999px; font-size: 14px; transition: background .2s, color .2s; }
.btn-ghost:hover { background: var(--bg); color: var(--ink); }

/* ─────────── reviews ─────────── */
.reviews { padding: var(--pad-y) var(--pad-x); max-width: var(--maxw); margin: 0 auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.review { margin: 0; padding: 36px 32px; border: 1px solid var(--hair); background: var(--bg); display: flex; flex-direction: column; gap: 24px; }
.quote-mark { font-family: "Instrument Serif", serif; font-size: 80px; line-height: .5; color: var(--accent-swatch); display: block; height: 40px; }
.review blockquote { font-size: 18px; line-height: 1.5; margin: 0; letter-spacing: -.01em; flex: 1; }
.review figcaption { display: flex; flex-direction: column; gap: 4px; padding-top: 20px; border-top: 1px solid var(--hair); }
.r-name { font-size: 14px; font-weight: 500; }
.r-role { color: var(--muted); }

/* ─────────── contact ─────────── */
.contact { padding: var(--pad-y) var(--pad-x); background: var(--bg-2); border-top: 1px solid var(--hair); }
.contact-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,96px); align-items: start; }
.contact-left .mono { color: var(--accent-swatch); display: block; margin-bottom: 24px; }
.contact-left .display { font-size: clamp(56px, 8vw, 128px); margin: 0 0 32px; }
.contact-right { display: flex; flex-direction: column; border-top: 1px solid var(--ink); }
.contact-row { display: grid; grid-template-columns: 100px 1fr auto; align-items: center; gap: 24px; padding: 28px 4px; border-bottom: 1px solid var(--hair); transition: padding .25s; }
.contact-row:hover { padding-left: 16px; }
.cr-k { color: var(--muted); }
.cr-v { font-size: 18px; letter-spacing: -.01em; }

/* ─────────── footer ─────────── */
.footer { padding: 80px var(--pad-x) 40px; background: var(--ink); color: var(--bg); }
.footer-top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(245,243,238,.15); }
.footer-brand img { height: 36px; width: auto; filter: invert(1); margin-bottom: 16px; }
.footer-brand p { color: rgba(245,243,238,.6); margin: 0; max-width: 30ch; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer-cols h5 { color: var(--accent-swatch); margin: 0 0 16px; font-weight: 400; }
.footer-cols p { color: rgba(245,243,238,.75); font-size: 14px; margin: 0; line-height: 1.7; }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding-top: 32px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(245,243,238,.5); }
.footer-dot { color: var(--accent-swatch); }

/* ─────────── arrow svg ─────────── */
.arrow { display: inline-block; vertical-align: middle; }

/* ─────────── responsive ─────────── */
@media (max-width: 960px) {
  .nav { display: none; }
  .about-grid, .fleet-intro, .contact-inner, .events, .footer-top { grid-template-columns: 1fr; }
  .events { min-height: 0; }
  .events-image { aspect-ratio: 16/10; }
  .events-image::after { background: linear-gradient(180deg, transparent 50%, var(--ink) 100%); }
  .services-grid, .reviews-grid, .footer-cols { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--hair); min-height: 0; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fg-tall { grid-column: 1; grid-row: auto; }
  .value-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-title { font-size: clamp(40px, 11vw, 72px); }
  .stats { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; gap: 4px; }
}
