@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
  --bg-dark: #490411;
  --bg-deeper: #2d0209;
  --bg-section: #3a0310;
  --bg-card: #5a0a1a;
  --burgundy: #490411;
  --burgundy-light: #6b1525;
  --gold: #FFC077;
  --gold-light: #ffd4a0;
  --cream: #ffffff;
  --cream-dim: rgba(255, 255, 255, 0.5);
  --text-body: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.4);
  --font-heading: 'Cinzel', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.8;
  font-size: 18px;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-light);
}

/* ── Header / Nav ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: linear-gradient(180deg, rgba(73,4,17,0.95) 0%, rgba(73,4,17,0) 100%);
  transition: background 0.3s ease;
}

header.scrolled {
  background: rgba(73, 4, 17, 0.97);
  backdrop-filter: blur(10px);
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.logo-name {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 6px;
  color: var(--cream);
  text-transform: uppercase;
}

.logo-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: var(--cream-dim);
  letter-spacing: 2px;
  margin-top: -2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--cream);
}

nav a.active {
  color: var(--cream);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--cream-dim);
  color: var(--cream);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--cream);
  color: var(--cream);
}

.btn-gold {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 192, 119, 0.08);
}

.btn-gold:hover {
  background: rgba(255, 192, 119, 0.18);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 160px 24px 100px;
  overflow: hidden;
  background: url('hero-bg.jpg') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(73, 4, 17, 0.92);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(255, 192, 119, 0.12);
  border: 1px solid rgba(255, 192, 119, 0.25);
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.25;
  color: var(--cream);
  max-width: 900px;
  margin-bottom: 24px;
}

.hero p {
  max-width: 580px;
  margin: 0 auto 16px;
  color: var(--text-body);
  line-height: 1.8;
}

.hero .btn {
  margin-top: 20px;
}

.hero-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--cream-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-link:hover {
  color: var(--cream);
}

/* ── Section base ── */
section {
  padding: 100px 24px;
}

.container {
  max-width: 980px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 680px;
  margin: 0 auto;
}

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

/* ── Section headings ── */
h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 44px;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 16px;
}

h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 12px;
}

p + p {
  margin-top: 16px;
}

/* ── Alternating sections ── */
.section-dark {
  background: var(--bg-deeper);
  border-top: 1px solid rgba(255, 192, 119, 0.08);
  border-bottom: 1px solid rgba(255, 192, 119, 0.08);
}

.section-mid {
  background: var(--bg-section);
  border-top: 1px solid rgba(255, 192, 119, 0.08);
  border-bottom: 1px solid rgba(255, 192, 119, 0.08);
}

.section-accent {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.section-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(255, 192, 119, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(255, 192, 119, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, rgba(45, 2, 9, 0.4) 0%, transparent 30%, transparent 70%, rgba(45, 2, 9, 0.4) 100%);
  z-index: 0;
}

.section-accent > * {
  position: relative;
  z-index: 1;
}

/* ── Feature list with arrows ── */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.7;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

/* ── Bullet list ── */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.bullet-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.8;
}

.bullet-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── Two column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

/* ── Divider ── */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 40px auto;
}

/* ── Cards ── */
.card {
  background: rgba(73, 4, 17, 0.4);
  border: 1px solid rgba(255, 192, 119, 0.12);
  padding: 40px;
  margin-bottom: 32px;
}

/* ── Contact form ── */
.contact-info {
  margin: 32px 0;
}

.contact-info dt {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 400;
}

.contact-info dd {
  margin-bottom: 20px;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 60px 24px;
  border-top: 1px solid rgba(255, 192, 119, 0.15);
  background: var(--bg-dark);
}

.footer-logo {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

footer .logo-img {
  height: 56px;
}

footer .logo-name {
  font-size: 14px;
  letter-spacing: 5px;
}

footer .logo-sub {
  font-size: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  header {
    padding: 16px 20px;
  }

  .logo-name {
    font-size: 13px;
    letter-spacing: 4px;
  }

  .logo-sub {
    font-size: 11px;
  }

  nav {
    gap: 16px;
  }

  nav a:not(.btn) {
    display: none;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  section {
    padding: 60px 20px;
  }

  .card {
    padding: 28px 20px;
  }

  .hero {
    padding: 140px 20px 60px;
  }

  h2 {
    font-size: 32px;
  }

  .page-header {
    text-align: left;
  }
}

/* ── Mobile nav toggle ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media (max-width: 600px) {
  nav a:not(.btn) {
    display: none;
  }

  .btn {
    font-size: 10px;
    padding: 10px 18px;
    letter-spacing: 2px;
  }
}

/* ── Page header (non-hero pages) ── */
.page-header {
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(73, 4, 17, 0.5) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-dark) 0%, rgba(58, 3, 16, 0.5) 60%, var(--bg-dark) 100%);
  z-index: 0;
}

.page-header > * {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 48px);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-header p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-body);
}

/* ── Legal page styles ── */
.legal-content h3 {
  margin-top: 40px;
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
}

/* ── Emphasis text ── */
.text-emphasis {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
  line-height: 1.7;
}

/* ── Section image ── */
.section-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 24px;
  border-radius: 2px;
}

/* ── Quote card ── */
.quote-card {
  background: rgba(255, 192, 119, 0.06);
  border-left: 3px solid var(--gold);
  padding: 32px 36px;
  margin: 0;
}

.quote-card p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  color: var(--cream);
  line-height: 1.7;
  margin: 0;
}

/* ── Smooth fade-in animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
