:root {
  --bg: #120f0d;
  --bg-soft: #1a1512;
  --surface: rgba(255, 248, 234, 0.06);
  --surface-strong: rgba(255, 248, 234, 0.1);
  --text: #fff3dc;
  --text-muted: rgba(255, 243, 220, 0.72);
  --line: rgba(255, 214, 124, 0.18);
  --gold: #ffd55f;
  --orange: #ff7a00;
  --red: #d93206;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.22), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255, 213, 95, 0.18), transparent 18%),
    linear-gradient(180deg, #2a170a 0%, #18110d 35%, #100d0c 100%);
}

a {
  color: inherit;
}

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

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(18, 15, 13, 0.78);
  border-bottom: 1px solid rgba(255, 213, 95, 0.08);
}

.site-nav__inner,
.site-footer__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-nav__inner {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.brand__tag {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--gold);
}

.hero {
  padding: 72px 0 40px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 420px);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.lead {
  margin: 0;
  max-width: 46rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero__actions,
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, var(--gold), #ff9d00);
  color: #23150a;
  box-shadow: 0 20px 40px rgba(217, 80, 7, 0.22);
}

.button--secondary {
  border-color: rgba(255, 213, 95, 0.3);
  background: rgba(255, 248, 234, 0.03);
  color: var(--text);
}

.hero-card,
.panel,
.legal-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 248, 234, 0.08), rgba(255, 248, 234, 0.04));
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
}

.hero-card__frame {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 213, 95, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 122, 0, 0.18), rgba(217, 50, 6, 0.12));
}

.hero-card__frame img {
  width: min(100%, 300px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
}

.section {
  padding: 28px 0 44px;
}

.section h2,
.legal-card h2,
.legal-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.panel {
  padding: 24px;
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.panel p,
.panel li,
.legal-card p,
.legal-card li,
.site-footer p {
  color: var(--text-muted);
  line-height: 1.7;
}

.panel ul,
.legal-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.page-hero {
  padding: 56px 0 20px;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.1rem);
}

.legal-card {
  padding: 28px;
}

.meta {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-footer {
  padding: 28px 0 40px;
}

.site-footer__inner {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 213, 95, 0.12);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

@media (max-width: 920px) {
  .hero__grid,
  .grid,
  .two-up,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-nav__inner,
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .brand__name {
    font-size: 1.45rem;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-card__frame {
    min-height: 260px;
  }
}
