:root {
  --bg: #f5f3ef;
  --panel: #ffffff;
  --text: #151515;
  --muted: #5b5b5b;
  --line: rgba(21, 21, 21, 0.1);
  --accent: #1a1a1a;
  --accent-2: #8b7355;
  --shadow: 0 18px 40px rgba(0,0,0,.14);
  --radius: 22px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(760px, 100%); }
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(245,243,239,.82);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display:flex; align-items:center; justify-content:space-between; min-height: 74px; gap: 20px; }
.brand { display:flex; align-items:center; gap: 12px; font-weight: 800; letter-spacing: .12em; }
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 50%; }
.nav { display:flex; gap: 24px; align-items:center; }
.nav a { color: var(--muted); font-weight: 500; }
.nav-cta { padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; color: var(--text) !important; }
.menu-btn { display:none; background:none; border:none; font-size: 28px; }
.hero { position: relative; min-height: 92svh; display:grid; place-items:center; overflow:hidden; }
.hero-bg, .hero-overlay { position:absolute; inset:0; }
.hero-bg { background: center/cover no-repeat url('assets/hero.jpg'); transform: scale(1.03); }
.hero-overlay { background: linear-gradient(to bottom, rgba(10,10,10,.24), rgba(10,10,10,.54)); }
.hero-content { position:relative; z-index:1; color:#fff; padding: 120px 0 80px; }
.eyebrow, .section-kicker { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 700; color: var(--accent-2); }
.hero .eyebrow { color: rgba(255,255,255,.84); }
.hero h1, h2, h3 { font-family: 'Cormorant Garamond', serif; margin: 0; line-height: .95; }
.hero h1 { font-size: clamp(4rem, 9vw, 7.4rem); max-width: 8ch; }
.hero-copy { max-width: 690px; margin: 24px 0 0; font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.92); line-height: 1.6; }
.hero-actions { display:flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  min-height: 54px; padding: 0 24px; border-radius: 999px; font-weight: 700; transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #fff; color: #111; box-shadow: var(--shadow); }
.btn-secondary { border: 1px solid rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.08); }
.btn-wide { width: 100%; }
.section { padding: 96px 0; }
.intro p:last-child { max-width: 720px; color: var(--muted); font-size: 1.12rem; line-height: 1.8; }
.section-heading { display:grid; gap: 12px; margin-bottom: 34px; }
.section-heading h2, .intro h2, .split-section h2, .access-section h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.tier-grid, .future-grid { display:grid; gap: 24px; }
.tier-grid { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.05); }
.tier-card img { aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 22px; }
.card-tag { text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; color: var(--accent-2); font-weight: 700; margin: 0 0 8px; }
.card-body h3 { font-size: 2rem; margin-bottom: 10px; }
.card-body p { color: var(--muted); line-height: 1.7; margin: 0; }
.split-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items:center; }
.feature-list { margin: 22px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.8; }
.image-stack { position: relative; min-height: 560px; }
.stack-main { height: 100%; width: 100%; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow); }
.stack-accent {
  position: absolute; right: 18px; bottom: -24px; width: min(270px, 45%);
  border-radius: 24px; background:#fff; padding: 10px; box-shadow: var(--shadow);
}
.dark-section { background: #111; color: #f3f1ec; }
.dark-section .section-kicker { color: #c8aa7a; }
.future-grid { grid-template-columns: repeat(3, 1fr); }
.future-card {
  border: 1px solid rgba(255,255,255,.1); border-radius: 22px; padding: 26px;
  background: rgba(255,255,255,.02);
}
.future-card h3 { font-size: 1.8rem; margin-bottom: 12px; }
.future-card p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.7; }
.access-grid { display:grid; grid-template-columns: 1fr .8fr; gap: 28px; align-items:start; }
.cta-panel { background: var(--panel); border: 1px solid var(--line); border-radius: 28px; padding: 28px; box-shadow: var(--shadow); }
.cta-label { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .12em; color: var(--accent-2); font-size: .75rem; font-weight: 800; }
.small-note { color: var(--muted); line-height: 1.7; margin: 14px 0 0; }
.site-footer { border-top: 1px solid var(--line); background: #efebe5; }
.footer-wrap { min-height: 92px; display:flex; align-items:center; justify-content:space-between; gap: 24px; }
.footer-wrap p { margin: 4px 0 0; color: var(--muted); }
@media (max-width: 980px) {
  .nav { display:none; }
  .menu-btn { display:block; }
  .tier-grid, .future-grid, .split-grid, .access-grid { grid-template-columns: 1fr; }
  .image-stack { min-height: auto; }
  .stack-accent { position: static; margin-top: 18px; width: 220px; }
}
@media (max-width: 680px) {
  .hero { min-height: 84svh; }
  .section { padding: 72px 0; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .footer-wrap { flex-direction: column; align-items:flex-start; justify-content:center; padding: 20px 0; }
}
