:root {
  /* Adventure Palette */
  --bg-deep: #0c1410;
  --bg-canvas: #0f1a14;
  --bg-stone: #182519;
  --bg-moss: #1d2a1f;
  --surface: rgba(28, 40, 30, 0.55);
  --surface-strong: rgba(20, 30, 22, 0.85);
  --border: rgba(200, 162, 92, 0.18);
  --border-strong: rgba(200, 162, 92, 0.35);

  --gold: #c9a24a;
  --gold-bright: #e6c277;
  --gold-deep: #8a6e2f;
  --emerald: #4a7a52;
  --emerald-deep: #2c4a32;
  --amber: #d97842;
  --ember: #f0a868;

  --ivory: #f1e8d5;
  --sand: #c8b89a;
  --sage: #8aa48c;
  --muted: #7a8779;
  --dark-text: #2c2a22;

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.5);
  --glow-gold: 0 0 40px rgba(201, 162, 74, 0.25);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1320px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--ivory);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at top, rgba(201, 162, 74, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(74, 122, 82, 0.05) 0%, transparent 60%);
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ivory);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }

p { color: var(--sand); }

a { color: var(--gold-bright); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ember); }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-head p {
  margin-top: 16px;
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: rgba(201, 162, 74, 0.06);
}

.gradient-text {
  background: linear-gradient(120deg, var(--gold-bright) 0%, var(--ember) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(12, 20, 16, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(12, 20, 16, 0.85);
  border-bottom-color: var(--border);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ivory);
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--gold-bright); }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--glow-gold);
}
.brand-dot { color: var(--gold); }

.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sand);
  padding: 6px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--ember));
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold-bright); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-cta { padding: 11px 24px; font-size: 0.9rem; }

.menu-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ivory);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 20, 16, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}
.mobile-nav a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ivory);
}
.mobile-nav a:hover { color: var(--gold-bright); }
.mobile-nav .btn { font-size: 1rem; margin-top: 16px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: var(--bg-deep);
  box-shadow: 0 8px 24px rgba(201, 162, 74, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201, 162, 74, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: var(--bg-deep);
  filter: brightness(1.08);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(201, 162, 74, 0.1);
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-fog {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(217, 120, 66, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(74, 122, 82, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(201, 162, 74, 0.1) 0%, transparent 60%);
}
.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(240, 168, 104, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  animation: ambient-glow 10s ease-in-out infinite alternate;
}
.hero-particles {
  position: absolute;
  inset: 0;
}
.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold-bright);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(0.5px);
  box-shadow: 0 0 8px var(--gold-bright);
  animation: float-particle 12s ease-in-out infinite;
}
.hero-particles span:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 60%; left: 25%; animation-delay: 1.5s; }
.hero-particles span:nth-child(3) { top: 35%; left: 70%; animation-delay: 3s; width: 3px; height: 3px; }
.hero-particles span:nth-child(4) { top: 80%; left: 80%; animation-delay: 4.5s; }
.hero-particles span:nth-child(5) { top: 15%; left: 50%; animation-delay: 6s; width: 2px; height: 2px; }
.hero-particles span:nth-child(6) { top: 70%; left: 10%; animation-delay: 2s; }
.hero-particles span:nth-child(7) { top: 25%; left: 88%; animation-delay: 5s; }
.hero-particles span:nth-child(8) { top: 55%; left: 55%; animation-delay: 7s; width: 3px; height: 3px; }
.hero-particles span:nth-child(9) { top: 45%; left: 40%; animation-delay: 8.5s; }
.hero-particles span:nth-child(10) { top: 90%; left: 65%; animation-delay: 3.5s; width: 2px; height: 2px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy { max-width: 580px; }
.hero-title {
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--sand);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.disclaimer.center { text-align: center; margin-top: 24px; }

.hero-visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg), var(--glow-gold);
  aspect-ratio: 4/5;
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}
.hero-card:hover img { transform: scale(1.05); }
.hero-card-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(12, 20, 16, 0.85) 100%),
    radial-gradient(circle at 50% 30%, rgba(240, 168, 104, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  top: 20px; left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(12, 20, 16, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ember);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-stats {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
  background: rgba(12, 20, 16, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.hero-stats div { text-align: center; }
.hero-stats strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  color: var(--gold-bright);
  font-weight: 700;
}
.hero-stats span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Page Hero (interior pages) ─── */
.page-hero {
  position: relative;
  padding: 200px 0 100px;
  overflow: hidden;
  text-align: center;
}
.page-hero.short { padding: 180px 0 80px; }
.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero-inner p {
  margin-top: 18px;
  font-size: 1.1rem;
}

/* ─── Featured Section ─── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.featured-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
}
.featured-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 20, 16, 0.5) 100%);
  pointer-events: none;
}
.featured-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}
.featured-art:hover img { transform: scale(1.03); }

.featured-copy h3 { color: var(--gold-bright); margin-bottom: 16px; }
.lead { font-size: 1.1rem; color: var(--ivory); margin-bottom: 24px; }
.feature-list {
  list-style: none;
  margin: 24px 0 32px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--sand);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list span {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* ─── Why Grid ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-strong);
  box-shadow: var(--shadow-md);
}
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(201, 162, 74, 0.2), rgba(201, 162, 74, 0.05));
  border: 1px solid var(--border-strong);
  font-size: 1.4rem;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.why-card h4 { margin-bottom: 10px; }
.why-card p { font-size: 0.95rem; color: var(--sage); }

/* ─── Features Grid (Tiles) ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-tile {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.feature-tile:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.feature-tile img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 1s ease;
}
.feature-tile:hover img { transform: scale(1.06); }
.feature-tile-body { padding: 22px 24px 26px; }
.feature-tile h4 { color: var(--ivory); margin-bottom: 8px; }
.feature-tile p { font-size: 0.92rem; color: var(--sage); }

/* ─── Rewards ─── */
.rewards-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.rewards-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 32px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}
.rewards-stats div { text-align: center; }
.rewards-stats strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  color: var(--gold-bright);
  font-weight: 700;
}
.rewards-stats span {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.rewards-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.rewards-visual img { aspect-ratio: 4/3; object-fit: cover; }

/* ─── Showcase Frame ─── */
.showcase-frame {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 8px;
  background: linear-gradient(135deg, rgba(201, 162, 74, 0.25), rgba(74, 122, 82, 0.15) 50%, rgba(201, 162, 74, 0.2));
  box-shadow: var(--shadow-lg), var(--glow-gold);
  margin: 0 auto;
  max-width: 1100px;
}
.showcase-frame.large { max-width: 1200px; }
.showcase-frame-inner {
  position: relative;
  border-radius: calc(var(--radius-xl) - 6px);
  overflow: hidden;
  background: var(--bg-deep);
  aspect-ratio: 16/10;
}
.showcase-frame-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.frame-corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 2px solid var(--gold-bright);
  z-index: 2;
}
.frame-corner.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; border-top-left-radius: var(--radius-xl); }
.frame-corner.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; border-top-right-radius: var(--radius-xl); }
.frame-corner.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; border-bottom-left-radius: var(--radius-xl); }
.frame-corner.br { bottom: -2px; right: -2px; border-left: none; border-top: none; border-bottom-right-radius: var(--radius-xl); }

/* ─── Testimonials ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(15px);
  position: relative;
  transition: all var(--transition);
}
.testi:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.testi::before {
  content: '"';
  position: absolute;
  top: 12px; left: 24px;
  font-size: 4rem;
  font-family: 'Outfit', serif;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.testi p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: var(--ivory);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}
.testi footer {
  font-size: 0.88rem;
  color: var(--gold-bright);
  font-weight: 600;
}
.testi footer span { color: var(--muted); font-weight: 400; }

/* ─── Responsible Banner ─── */
.responsible-banner {
  padding: 60px 0;
}
.responsible-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  background: linear-gradient(120deg, rgba(74, 122, 82, 0.15), rgba(201, 162, 74, 0.08));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}
.responsible-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  color: var(--ivory);
  border-radius: var(--radius-md);
  font-size: 1.6rem;
}
.responsible-inner h3 { margin-bottom: 6px; }
.responsible-inner p { font-size: 0.95rem; margin: 0; }

/* ─── FAQ ─── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  backdrop-filter: blur(15px);
  transition: all var(--transition);
}
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ivory);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 14px;
  font-size: 0.96rem;
  color: var(--sand);
}

/* ─── Contact Strip ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info {
  list-style: none;
  margin-top: 24px;
}
.contact-info li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--sand);
}
.contact-info li:last-child { border-bottom: none; }
.contact-info strong {
  display: inline-block;
  width: 90px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  background: rgba(12, 20, 16, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ivory);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  transition: all var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(12, 20, 16, 0.8);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.1);
}
.contact-form button { margin-top: 8px; }
.form-success {
  font-size: 0.9rem;
  color: var(--emerald);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  padding: 12px;
  background: rgba(74, 122, 82, 0.1);
  border: 1px solid var(--emerald);
  border-radius: var(--radius-sm);
  text-align: center;
}

.muted { color: var(--muted); font-size: 0.9rem; margin-top: 16px; }

/* ─── Two Col Layouts ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse .two-col-img { order: 2; }
.two-col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.two-col-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.two-col-text h2 { margin-bottom: 18px; }
.two-col-text p { margin-bottom: 14px; }

.steps {
  list-style: none;
  margin: 24px 0;
}
.steps li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--sand);
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.steps li:last-child { border-bottom: none; }
.steps strong {
  font-family: 'Outfit', sans-serif;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* ─── Legal Pages ─── */
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
}
.legal-inner h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--gold-bright);
}
.legal-inner h2:first-child { margin-top: 0; }
.legal-inner p, .legal-inner li { color: var(--sand); margin-bottom: 12px; }
.legal-inner ul, .legal-inner ol { margin: 16px 0 16px 24px; }
.legal-inner li { margin-bottom: 8px; }
.legal-inner .lead {
  font-size: 1.1rem;
  color: var(--ivory);
  padding: 20px 24px;
  background: var(--surface);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
}

.paytable {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.paytable th, .paytable td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.paytable th {
  background: rgba(201, 162, 74, 0.1);
  color: var(--gold-bright);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.paytable td { color: var(--sand); font-size: 0.95rem; }
.paytable tr:last-child td { border-bottom: none; }

/* ─── Footer ─── */
.site-footer {
  background: linear-gradient(180deg, transparent, rgba(15, 26, 20, 0.9) 30%, var(--bg-deep));
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 { margin-bottom: 8px; }
.footer-col a {
  color: var(--sage);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-about {
  font-size: 0.92rem;
  color: var(--sage);
  margin-top: 8px;
  max-width: 320px;
}
.footer-col address {
  font-style: normal;
  color: var(--sage);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}
.footer-note { letter-spacing: 0.02em; }