:root {
  --bg: #0f0d0a;
  --panel: #17130f;
  --panel-soft: #201a14;
  --text: #f5efe6;
  --muted: #d1c6b8;
  --line: rgba(255,255,255,0.12);
  --gold: #dca24a;
  --gold-soft: rgba(220,162,74,0.16);
  --max: 1180px;
  --shadow: 0 20px 50px rgba(0,0,0,0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 13, 10, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-badge,
.footer-badge {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title,
.footer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 600;
}

.brand-tag,
.footer-tag {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.98rem;
}

.site-nav a:hover { color: var(--text); }

.menu-toggle {
  display: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  font: inherit;
}

.hero {
  position: relative;
  min-height: 92svh;
  background: url('assets/hero-sunset.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15,13,10,0.96), rgba(15,13,10,0.55) 42%, rgba(15,13,10,0.16)),
    linear-gradient(to right, rgba(15,13,10,0.76), rgba(15,13,10,0.18) 58%, rgba(15,13,10,0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4.25rem;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow,
.section-label,
.card-kicker,
.pill {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow,
.section-label,
.pill,
.card-kicker { color: #f1d7af; }

.eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(15,13,10,0.42);
  border: 1px solid rgba(255,255,255,0.14);
}

.hero-logo {
  width: min(700px, 100%);
  margin: 0 0 1rem;
  filter: drop-shadow(0 12px 35px rgba(0,0,0,0.45));
  background: rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 0.85rem 1rem;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.95;
  margin: 0 0 0.4rem;
  text-shadow: 0 10px 35px rgba(0,0,0,0.45);
}

.hero-tagline {
  margin: 0 0 0.85rem;
  color: #f7dcc0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
}

.hero-lead {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(1.03rem, 1.8vw, 1.22rem);
  color: #fff5e8;
  background: linear-gradient(180deg, rgba(15,13,10,0.45), rgba(15,13,10,0.22));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.hero-actions,
.cards,
.split-grid {
  display: grid;
  gap: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--gold);
  color: #20160a;
  box-shadow: 0 10px 30px rgba(220,162,74,0.28);
}
.button.secondary {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}
.button.block { width: 100%; }

.section {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.section-alt {
  background: rgba(255,255,255,0.02);
}

.split-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.align-center { align-items: center; }

.section h2,
.card h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
  margin: 0 0 0.8rem;
}

.section h2 { font-size: clamp(2.2rem, 4vw, 3.3rem); }
.card h3 { font-size: 1.8rem; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-note,
.fine-print {
  color: var(--muted);
}

.card,
.logo-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.cards.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.cards.two-up {
  grid-template-columns: repeat(2, 1fr);
}

.cards.two-by-two {
  grid-template-columns: repeat(2, 1fr);
}

.compact .card { min-height: 100%; }
.future-card { background: linear-gradient(180deg, var(--gold-soft), rgba(255,255,255,0.03)); }

.pill {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(220,162,74,0.16);
}

.text-link {
  color: #f1d7af;
  font-weight: 600;
}

.signup-form {
  display: grid;
  gap: 0.9rem;
}

.signup-form label {
  display: grid;
  gap: 0.35rem;
}

.signup-form span { color: var(--muted); }

.signup-form input {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 0.9rem 1rem;
  font: inherit;
}

.signup-form input:focus {
  outline: 2px solid rgba(220,162,74,0.4);
  border-color: rgba(220,162,74,0.55);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-success {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(220,162,74,0.14);
  border: 1px solid rgba(220,162,74,0.32);
  color: #f7e2bf;
  font-weight: 600;
}

.feature-logo {
  width: min(640px, 100%);
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 1.2rem;
}

.contact-card p {
  margin: 0 0 0.8rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2.25rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 1100px) {
  .brand-title { font-size: 1.34rem; }
  .site-nav { gap: 1rem; }
  .site-nav a { font-size: 0.94rem; }
}

@media (max-width: 900px) {
  .split-grid,
  .cards.three-up,
  .cards.two-up,
  .cards.two-by-two {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: start;
    padding: 1rem;
    background: rgba(15, 13, 10, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .brand-title { font-size: 1.14rem; }
  .brand-tag { font-size: 0.73rem; }
  .brand-badge, .footer-badge { width: 42px; height: 42px; }
  .hero { min-height: 88svh; background-position: 58% center; }
  .hero-content { padding-top: 6rem; }
  .hero-logo { padding: 0.65rem 0.75rem; border-radius: 18px; }
  .hero-lead { padding: 0.9rem 0.95rem; }
}
