/* ==========================================================================
   Questavern — Static Marketing Site Design System & Styles
   ========================================================================== */

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

:root {
  /* Brand & Materials: Golds, Parchment & Ink */
  --gold: #D4A359;
  --gold-amber: #D4A373;
  --gold-bright: #D4AF37;
  --gold-light: #E8D3B0;
  --gold-muted: #E8D4A8;
  --ink: #1A120C;
  --parchment: #F7E6C4;
  --parchment-muted: #B5A48B;
  --parchment-subtle: #D0C0A0;
  --parchment-warm: #F5E6C8;

  /* Wood & Dark Surfaces */
  --wood-bg: #140E0A;
  --wood-border: #8B5A2B;
  --wood-border-muted: #4A3421;
  --wood-card: #1F150F;
  --wood-dark: #1A1A1A;
  --wood-dropdown: #261910;
  --wood-floor: #2A1810;
  --wood-furniture: #2A160C;
  --wood-highlight: #3E2414;
  --wood-selected: #382414;
  --wood-void: #0F0A06;

  /* Semantic & Status */
  --success: #81C784;
  --danger: #E57373;
  --danger-dark: #8B2B2B;
  --info: #64B5F6;
  --mythic: #BA68C8;

  /* Spacing Scale */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 0 20px rgba(212, 163, 89, 0.25);
  --shadow-gold-bright: 0 0 30px rgba(212, 175, 55, 0.45);

  /* Fonts */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-display: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--wood-bg);
  color: var(--parchment-subtle);
  font-family: var(--font-sans);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 90, 43, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 10% 30%, rgba(212, 163, 89, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(139, 90, 43, 0.08) 0%, transparent 50%),
    var(--wood-bg);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Pixelated Sprites Rendering */
.pixel-art {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

/* Feature Flag Helper */
.is-feature-hidden {
  display: none !important;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--parchment);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  padding: var(--space-4xl) 0;
  position: relative;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-3xl) auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xxs) var(--space-sm);
  background: var(--wood-selected);
  border: 1px solid var(--wood-border);
  border-radius: var(--radius-full);
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: var(--space-sm);
  color: var(--parchment);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--parchment-muted);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 14, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wood-border-muted);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--parchment);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand-link:hover {
  color: var(--gold);
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--wood-border);
  box-shadow: var(--shadow-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-link {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--parchment-muted);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--gold-light);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-amber) 100%);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-bright);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.header-cta:hover {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* ==========================================================================
   Buttons & Store Badges
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 12px 24px;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--ink);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.btn-primary:hover {
  color: var(--ink);
  background: linear-gradient(135deg, #FFDF79 0%, var(--gold-bright) 100%);
  box-shadow: var(--shadow-lg), var(--shadow-gold-bright);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--wood-card);
  color: var(--parchment);
  border-color: var(--wood-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--wood-highlight);
  color: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-large {
  padding: 14px 28px;
  font-size: 1.1rem;
}

.store-badge-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 18px;
  background: var(--wood-dropdown);
  border: 1px solid var(--wood-border);
  border-radius: var(--radius-sm);
  color: var(--parchment);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.store-badge:hover {
  background: var(--wood-highlight);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.store-badge svg,
.store-badge img {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.store-badge-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--parchment-muted);
  display: block;
  line-height: 1;
}

.store-badge-main {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  padding: var(--space-3xl) 0 var(--space-4xl) 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xxs) var(--space-sm);
  background: rgba(139, 90, 43, 0.25);
  border: 1px solid var(--wood-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  color: var(--parchment);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.hero-title .highlight {
  color: var(--gold-bright);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--parchment-warm);
  font-weight: 500;
  margin-bottom: var(--space-md);
  font-family: var(--font-serif);
  font-style: italic;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--parchment-muted);
  margin-bottom: var(--space-xl);
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

/* Hero Stage / Visual Mockup */
.hero-stage {
  position: relative;
  background: linear-gradient(180deg, var(--wood-dropdown) 0%, var(--wood-card) 100%);
  border: 2px solid var(--wood-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  overflow: hidden;
}

.hero-stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.tavern-scene-preview {
  background: var(--wood-floor);
  border: 1px solid var(--wood-border-muted);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
}

.scene-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--wood-border-muted);
  padding-bottom: var(--space-xs);
}

.scene-tavern-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.scene-gold-badge {
  background: var(--wood-void);
  border: 1px solid var(--gold);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 700;
}

.scene-patrons-row {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  min-height: 110px;
  padding: var(--space-sm) 0;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
}

.scene-patron {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xxs);
  transition: transform 0.2s ease;
}

.scene-patron:hover {
  transform: translateY(-6px);
}

.scene-patron img {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.6));
}

.scene-patron-label {
  font-size: 0.75rem;
  font-family: var(--font-serif);
  color: var(--parchment-warm);
  background: var(--wood-void);
  padding: 1px 6px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--wood-border-muted);
}

.scene-dialog-card {
  background: var(--wood-card);
  border: 1px solid var(--wood-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
}

.scene-dialog-title {
  font-size: 0.85rem;
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 700;
  margin-bottom: 2px;
}

.scene-dialog-body {
  font-size: 0.85rem;
  color: var(--parchment-subtle);
  line-height: 1.4;
}

/* ==========================================================================
   The Pitch / Philosophy Section
   ========================================================================== */

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.philosophy-card {
  background: var(--wood-card);
  border: 1px solid var(--wood-border-muted);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.philosophy-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--wood-highlight);
  border: 1px solid var(--wood-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.card-icon-wrap img {
  width: 32px;
  height: 32px;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--parchment-warm);
}

.card-text {
  color: var(--parchment-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Four-Phase Daily Cadence
   ========================================================================== */

.phases-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.phase-card {
  background: linear-gradient(180deg, var(--wood-dropdown) 0%, var(--wood-card) 100%);
  border: 1px solid var(--wood-border-muted);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.phase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--wood-border);
  transition: background 0.3s ease;
}

.phase-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.phase-card:hover::before {
  background: var(--gold-bright);
}

.phase-number {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.phase-title {
  font-size: 1.25rem;
  color: var(--parchment);
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.phase-job {
  font-size: 0.85rem;
  font-family: var(--font-serif);
  color: var(--gold-light);
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.phase-body {
  font-size: 0.9rem;
  color: var(--parchment-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Patrons Showcase
   ========================================================================== */

.patrons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.patron-card {
  background: var(--wood-card);
  border: 1px solid var(--wood-border-muted);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.patron-card:hover {
  border-color: var(--gold);
  background: var(--wood-highlight);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.patron-avatar {
  width: 80px;
  height: 80px;
  background: var(--wood-void);
  border: 2px solid var(--wood-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.patron-avatar img {
  width: 64px;
  height: 64px;
}

.patron-name {
  font-size: 1.2rem;
  color: var(--parchment);
  margin-bottom: 2px;
}

.patron-role {
  font-size: 0.8rem;
  font-family: var(--font-serif);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.patron-quirk-badge {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--parchment-warm);
  background: var(--wood-selected);
  border: 1px solid var(--wood-border);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.patron-quote {
  font-size: 0.85rem;
  color: var(--parchment-muted);
  font-style: italic;
  line-height: 1.4;
}

/* ==========================================================================
   Key Features Grid
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  background: var(--wood-card);
  border: 1px solid var(--wood-border-muted);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: all 0.2s ease;
}

.feature-item:hover {
  border-color: var(--gold);
  background: var(--wood-dropdown);
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--wood-floor);
  border: 1px solid var(--wood-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-size: 1.2rem;
  color: var(--parchment);
  margin-bottom: var(--space-xs);
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--parchment-muted);
  line-height: 1.5;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--wood-card);
  border: 1px solid var(--wood-border-muted);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--gold-amber);
}

.faq-question {
  padding: var(--space-lg);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--parchment);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  color: var(--parchment-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Call To Action Banner
   ========================================================================== */

.cta-banner {
  background: linear-gradient(180deg, var(--wood-dropdown) 0%, var(--wood-dark) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 163, 89, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: var(--parchment);
}

.cta-banner-text {
  font-size: 1.15rem;
  color: var(--parchment-warm);
  max-width: 600px;
  margin: 0 auto var(--space-xl) auto;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ==========================================================================
   Legal Pages (Privacy & Terms)
   ========================================================================== */

.legal-header {
  padding: var(--space-3xl) 0 var(--space-xl) 0;
  border-bottom: 1px solid var(--wood-border-muted);
  margin-bottom: var(--space-2xl);
}

.legal-title {
  font-size: 2.8rem;
  margin-bottom: var(--space-xs);
  color: var(--parchment);
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--parchment-muted);
  font-family: var(--font-serif);
}

.legal-content {
  background: var(--wood-card);
  border: 1px solid var(--wood-border);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-4xl);
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--wood-border-muted);
  padding-bottom: var(--space-xs);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.15rem;
  color: var(--parchment-warm);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  color: var(--parchment-subtle);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
  padding-left: var(--space-xl);
}

.legal-content li {
  margin-bottom: var(--space-xs);
}

.legal-highlight-box {
  background: var(--wood-dropdown);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-xs);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
}

.legal-highlight-box p {
  margin-bottom: 0;
  color: var(--parchment-warm);
  font-size: 0.95rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  margin-top: auto;
  background: var(--wood-void);
  border-top: 1px solid var(--wood-border-muted);
  padding: var(--space-3xl) 0 var(--space-xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--parchment);
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--parchment-muted);
  max-width: 360px;
}

.footer-col h4 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links a {
  color: var(--parchment-muted);
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--wood-border-muted);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--parchment-muted);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .phases-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy-grid,
  .patrons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .phases-timeline,
  .philosophy-grid,
  .patrons-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .store-badge-group,
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn,
  .store-badge {
    width: 100%;
    justify-content: center;
  }
}
