/* ============================================================
   THE GRAND HO TRAM STRIP — LANDING PAGE
   Echoes the deck's navy + gold + paper palette.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy:       #0B1A2C;
  --navy-deep:  #060F1B;
  --ink:        #0A1320;
  --gold:       #C9A961;
  --gold-soft:  #D4B675;
  --gold-pale:  #E8D5A8;
  --paper:      #F4EFE6;
  --paper-warm: #EFE6D4;
  --slate:      #6B7686;
  --slate-2:    #98A2AF;
  --wine:       #5C1A2B;
  --rule:       rgba(201, 169, 97, 0.45);
  --rule-soft:  rgba(201, 169, 97, 0.22);

  --max-w: 1320px;
  --pad-x: 56px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-pale); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6, 15, 27, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--paper);
}
.brand-ornament {
  width: 28px; height: 1px; background: var(--gold);
  position: relative;
}
.brand-ornament::before, .brand-ornament::after {
  content: ''; position: absolute; top: 50%;
  width: 4px; height: 4px; background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}
.brand-ornament::before { left: -2px; }
.brand-ornament::after  { right: -2px; }
.brand-text {
  display: flex; flex-direction: column; line-height: 1;
  font-family: 'Cormorant Garamond', serif;
}
.brand-line-1 {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-pale); font-family: 'Inter', sans-serif; font-weight: 500;
  margin-bottom: 4px;
}
.brand-line-2 {
  font-size: 22px; letter-spacing: 0.04em; color: var(--paper);
  font-weight: 500;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(244, 239, 230, 0.78);
}
.nav-links a { transition: color .18s ease; }
.nav-links .cta {
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold-pale);
  letter-spacing: 0.18em;
}
.nav-links .cta:hover {
  background: var(--gold); color: var(--ink);
}

/* ============================================================
   TYPOGRAPHY PRIMITIVES
   ============================================================ */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 28px;
}
.eyebrow-center { display: block; text-align: center; }
.eyebrow-wine { color: var(--wine); }

.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.96;
  letter-spacing: 0.01em;
  margin: 0 0 28px;
}
.display-md { font-size: clamp(40px, 5.5vw, 72px); line-height: 1.05; }

.title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 36px;
  color: var(--paper);
  max-width: 1100px;
}
.title-ink { color: var(--ink); }

.lede {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 300;
  color: rgba(244, 239, 230, 0.86);
  max-width: 900px;
  margin: 0 0 36px;
}
.lede-ink { color: rgba(10, 19, 32, 0.78); }

.cap {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.cap-wine { color: var(--wine); }

.italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.04em;
}
.italic.gold { color: var(--gold-soft); }
.italic.gold-pale { color: var(--gold-pale); }

.small {
  font-size: 13px;
  line-height: 1.5;
  color: var(--slate-2);
  letter-spacing: 0.02em;
}
.band-paper .small { color: var(--slate); }
.footnote { max-width: 900px; margin-top: 28px; }

.hairline { width: 48px; height: 1px; background: var(--gold-pale); display: inline-block; }
.hairline-sm { width: 24px; height: 1px; background: var(--gold); display: inline-block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 140px 0 96px;
  text-align: center;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: 0;
}
.hero-scrim {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(6,15,27,0.35) 0%, rgba(6,15,27,0.85) 80%),
    linear-gradient(180deg, rgba(6,15,27,0.55) 0%, transparent 30%, rgba(6,15,27,0.85) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  padding: 0 var(--pad-x);
  display: flex; flex-direction: column; align-items: center;
}
.hero-rule {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 40px;
}
.sub-loc {
  font-size: 13px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 500;
}
.hero-lede {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
  font-weight: 300;
  color: rgba(244, 239, 230, 0.92);
  max-width: 920px;
  margin: 0 0 48px;
}
.hero-lede em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-pale);
  font-weight: 400;
  font-size: 1.08em;
}
.hero-cta-row {
  display: flex; gap: 18px;
  margin-bottom: 80px;
  flex-wrap: wrap; justify-content: center;
}
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--gold);
  transition: all .18s ease;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-pale); color: var(--ink); border-color: var(--gold-pale); }
.btn-ghost { background: transparent; color: var(--gold-pale); }
.btn-ghost:hover { background: rgba(201,169,97,0.12); color: var(--paper); }

.hero-credit {
  display: flex; align-items: center; gap: 16px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 500;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  background: var(--navy);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule-soft);
}
.stat-cell {
  background: var(--navy);
  padding: 48px 24px 44px;
  text-align: left;
  display: flex; flex-direction: column; gap: 8px;
}
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 0.95;
  color: var(--gold);
  font-weight: 400;
}
.stat-l {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 600;
  margin-top: 6px;
}
.stat-s {
  font-size: 13px;
  color: var(--slate-2);
  font-weight: 300;
  line-height: 1.4;
}

/* ============================================================
   BANDS (alternating sections)
   ============================================================ */
.band {
  padding: 120px 0;
  position: relative;
}
.band-ink   { background: var(--ink); color: var(--paper); }
.band-paper { background: var(--paper); color: var(--ink); }
.band-paper .title { color: var(--ink); }
.band-paper .lede  { color: rgba(10,19,32,0.78); }
.band-paper .cap   { color: var(--wine); }
.band-paper .eyebrow { color: var(--wine); }
.band-image { background: var(--ink); color: var(--paper); overflow: hidden; }
.band-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: 0;
}
.band-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(6,15,27,0.25) 0%, rgba(6,15,27,0.85) 90%);
}
.band-image .container { position: relative; z-index: 2; }

/* ============================================================
   OPPORTUNITY GRID
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.op-grid { margin-top: 56px; }
.op-card {
  border-left: 1px solid var(--rule);
  padding-left: 28px;
}
.op-card p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244,239,230,0.86);
  font-weight: 300;
  margin: 0;
}

/* ============================================================
   ASSET GRID
   ============================================================ */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.asset-card {
  background: #fff;
  border: 1px solid rgba(10,19,32,0.08);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.asset-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(10,19,32,0.12);
}
.asset-card img {
  width: 100%; height: 280px;
  object-fit: cover;
}
.asset-body {
  padding: 32px 32px 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.asset-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 6px;
  color: var(--ink);
}
.asset-body p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(10,19,32,0.78);
  font-weight: 300;
  margin: 0;
}

/* ============================================================
   NUMBERS / BARS
   ============================================================ */
.bars {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 6px;
}
.bar-row {
  display: grid;
  grid-template-columns: 280px 1fr 180px;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}
.bar-row-ask {
  margin-top: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(201,169,97,0.30);
}
.blabel {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.btrack {
  height: 14px;
  background: rgba(244,239,230,0.06);
  position: relative;
  overflow: hidden;
}
.btrack-wine { background: rgba(92,26,43,0.18); }
.bfill {
  position: absolute; inset: 0 auto 0 0;
  background: var(--gold);
}
.bfill-muted { background: rgba(201,169,97,0.45); }
.bfill-wine  { background: var(--wine); }
.bvalue {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  text-align: right;
  color: var(--paper);
}
.bvalue-wine { color: var(--wine); font-weight: 500; }
.bar-row-ask .blabel { color: var(--wine); font-weight: 700; }

/* ============================================================
   WHY NOW
   ============================================================ */
.urgency-pill {
  display: inline-block;
  background: var(--wine);
  color: var(--paper);
  padding: 16px 28px;
  margin: 8px 0 56px;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  border-left: 3px solid var(--gold);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.posture-grid { margin-top: 24px; }
.card-light {
  background: #fff;
  border: 1px solid rgba(10,19,32,0.08);
  padding: 28px 28px 32px;
}
.card-light p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(10,19,32,0.82);
  font-weight: 300;
  margin: 0;
}

/* ============================================================
   DOCUMENTS
   ============================================================ */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.doc-card {
  background: rgba(244,239,230,0.04);
  border: 1px solid var(--rule-soft);
  padding: 36px 36px 32px;
  display: flex; flex-direction: column;
  transition: all .2s ease;
  position: relative;
  overflow: hidden;
}
.doc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  opacity: 0.6;
  transition: opacity .2s ease;
}
.doc-card:hover {
  background: rgba(244,239,230,0.07);
  border-color: var(--gold);
}
.doc-card:hover::before { opacity: 1; }
.doc-card:hover .doc-action { color: var(--gold-pale); }
.doc-type {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.doc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1.2;
  color: var(--paper);
  font-weight: 500;
  margin-bottom: 12px;
}
.doc-meta {
  font-size: 14px;
  color: var(--slate-2);
  font-weight: 300;
  margin-bottom: 28px;
  flex: 1;
}
.doc-action {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  transition: color .2s ease;
}

/* ============================================================
   CONTACTS
   ============================================================ */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  margin-top: 64px;
  max-width: 1080px;
}
.contact-block {
  text-align: left;
}
.contact-block .cap {
  color: var(--gold-pale);
  margin-bottom: 18px;
}
.contact-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-firm {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 500;
  margin-bottom: 14px;
}
.contact-line {
  font-size: 15px;
  color: rgba(244,239,230,0.82);
  line-height: 1.6;
}
.contact-line a {
  color: var(--gold-pale);
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease;
}
.contact-line a:hover { border-bottom-color: var(--gold-pale); }
.contact-line .sep { margin: 0 10px; opacity: 0.4; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  padding: 32px 0;
  border-top: 1px solid var(--rule-soft);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-2);
}
.footer-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.16em;
  color: var(--gold-pale);
  font-size: 14px;
  text-transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-cell:nth-child(n+4) { border-top: 1px solid var(--rule-soft); }
  .grid-3 { grid-template-columns: 1fr; gap: 28px; }
  .asset-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .docs-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .bar-row { grid-template-columns: 200px 1fr 140px; gap: 16px; }
  .blabel { font-size: 11px; }
  .bvalue { font-size: 26px; }
}

@media (max-width: 720px) {
  :root { --pad-x: 24px; }
  .nav-links { display: none; }
  .nav-links .cta { display: inline-block; }
  .nav-links { display: flex; gap: 0; }
  .nav-links a:not(.cta) { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 32px 20px; }
  .stat-n { font-size: 48px; }
  .grid-4 { grid-template-columns: 1fr; }
  .band { padding: 80px 0; }
  .hero { padding: 120px 0 64px; }
  .bar-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; border-bottom: 1px solid rgba(201,169,97,0.15); }
  .bvalue { text-align: left; }
  .btrack { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}
