/* ── Fonts: local with CDN fallback ── */
@font-face {
  font-family: 'Cinzel Decorative';
  font-style: normal; font-weight: 400;
  font-display: swap;
  src: local('Cinzel Decorative Regular'), url('fonts/CinzelDecorative-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Cinzel Decorative';
  font-style: normal; font-weight: 700;
  font-display: swap;
  src: local('Cinzel Decorative Bold'), url('fonts/CinzelDecorative-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal; font-weight: 400;
  font-display: swap;
  src: local('Cinzel Regular'), url('fonts/Cinzel-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal; font-weight: 600;
  font-display: swap;
  src: local('Cinzel SemiBold'), url('fonts/Cinzel-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'EB Garamond';
  font-style: normal; font-weight: 400;
  font-display: swap;
  src: local('EB Garamond Regular'), url('fonts/EBGaramond-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'EB Garamond';
  font-style: italic; font-weight: 400;
  font-display: swap;
  src: local('EB Garamond Italic'), url('fonts/EBGaramond-Italic.ttf') format('truetype');
}
@font-face {
  font-family: 'EB Garamond';
  font-style: normal; font-weight: 500;
  font-display: swap;
  src: local('EB Garamond Medium'), url('fonts/EBGaramond-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'EB Garamond';
  font-style: italic; font-weight: 500;
  font-display: swap;
  src: local('EB Garamond Medium Italic'), url('fonts/EBGaramond-MediumItalic.ttf') format('truetype');
}

/* ── Variables ── */
:root {
  --sand:       #c8a96e;
  --sand-light: #e8d4a8;
  --sand-dark:  #9e7c4a;
  --wood:       #6b3d1e;
  --wood-dark:  #3d1e08;
  --ember:      #e8622a;
  --ember-glow: #ff9944;
  --night:      #0d0804;
  --midnight:   #1a0e06;
  --dusk:       #2c1a0e;
  --cream:      #f5e8c8;
  --dim:        #a08060;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--night);
  color: var(--cream);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  cursor: default;
  overflow-x: hidden;
}


/* ── noise overlay ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: linear-gradient(to bottom, #0d0804ee, transparent);
  backdrop-filter: blur(2px);
}

.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 20px;
  color: var(--sand);
  letter-spacing: 4px;
  cursor: pointer;
  text-shadow: 0 0 20px var(--sand-dark);
  transition: text-shadow 0.3s;
}
.nav-logo:hover { text-shadow: 0 0 30px var(--ember-glow); }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}
.nav-links a:hover { color: var(--sand); }

.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--night) !important;
  background: var(--sand);
  padding: 10px 24px;
  border-radius: 2px;
  transition: background 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  background: var(--ember-glow) !important;
  box-shadow: 0 0 24px var(--ember)88 !important;
  color: var(--night) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--sand); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  padding: 120px 24px 120px;
}

/* Stars */
.stars {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1px 1px at 15% 12%, #fff9 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 8%,  #fff7 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 42% 18%, #fffa 0%, transparent 100%),
    radial-gradient(1px 1px at 57% 6%,  #fff8 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 14%, #fff6 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 82% 9%,  #fffa 0%, transparent 100%),
    radial-gradient(1px 1px at 91% 20%, #fff8 0%, transparent 100%),
    radial-gradient(1px 1px at 5%  30%, #fff5 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 25%, #fff7 0%, transparent 100%),
    radial-gradient(1px 1px at 63% 28%, #fff6 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 32%, #fff8 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 40%, #fff4 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 38%, #fff5 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 3%,  #fffb 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 22%, #fff6 0%, transparent 100%);
}

/* Sky gradient */
.sky {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 120% 60% at 50% 110%,
    #4a1e0a 0%, #2a0e04 25%, #12080200 55%),
    linear-gradient(to bottom, #050302 0%, #0d0804 40%, #1a0a03 80%, #2c1203 100%);
}

/* Landscape silhouette */
.landscape {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  height: 220px;
}

/* Moon */
.moon {
  position: absolute; top: 80px; right: 12%; z-index: 1;
  width: 70px; height: 70px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f5e8c8, #c8a96e);
  box-shadow: 0 0 40px 12px #c8a96e44, 0 0 80px 30px #c8a96e22;
  animation: moonpulse 6s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s;
}
.moon:hover {
  transform: scale(1.3);
  box-shadow: 0 0 80px 30px #c8a96e88, 0 0 160px 60px #c8a96e44;
}
@keyframes moonpulse {
  0%,100% { box-shadow: 0 0 40px 12px #c8a96e44, 0 0 80px 30px #c8a96e22; }
  50%      { box-shadow: 0 0 50px 16px #c8a96e66, 0 0 100px 40px #c8a96e33; }
}

/* Moon secret message */
#moon-secret {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 999;
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
  color: #c8a96e55;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
#moon-secret.visible { opacity: 1; }

/* Fireflies */
.firefly {
  position: absolute; z-index: 2;
  width: 4px; height: 4px; border-radius: 50%;
  background: #ffe066;
  box-shadow: 0 0 8px 3px #ffe06688;
  animation: ffly var(--d,8s) var(--delay,0s) ease-in-out infinite;
}
@keyframes ffly {
  0%   { transform: translate(0,0);             opacity: 0; }
  20%  { opacity: 1; }
  50%  { transform: translate(var(--tx,40px), var(--ty,-30px)); opacity: 0.8; }
  80%  { opacity: 1; }
  100% { transform: translate(var(--tx2,20px),var(--ty2,10px)); opacity: 0; }
}

/* Ember particles */
.ember {
  position: absolute; z-index: 2; border-radius: 50%;
  background: var(--ember-glow);
  animation: emberrise var(--ed, 4s) var(--edelay, 0s) ease-out infinite;
  opacity: 0;
}
@keyframes emberrise {
  0%   { transform: translateY(0) scale(1);   opacity: 0.9; }
  100% { transform: translateY(-120px) scale(0); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  max-width: 860px;
  animation: fadein 1.4s ease both;
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 24px;
  animation: fadein 1.4s 0.2s ease both;
}

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(56px, 12vw, 110px);
  font-weight: 900;
  color: var(--sand);
  letter-spacing: 8px;
  line-height: 1;
  text-shadow:
    0 0 60px #c8a96e66,
    0 0 120px #c8a96e33,
    0 4px 20px #000c;
  margin-bottom: 8px;
  animation: fadein 1.4s 0.1s ease both;
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(13px, 2vw, 17px);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #8a5a30;
  margin-bottom: 40px;
  animation: fadein 1.4s 0.3s ease both;
}

.hero-tagline {
  font-family: 'EB Garamond', serif;
  font-size: clamp(18px, 3vw, 26px);
  font-style: italic;
  color: var(--cream);
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto 52px;
  animation: fadein 1.4s 0.4s ease both;
}

.hero-buttons {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  animation: fadein 1.4s 0.5s ease both;
}

.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--night);
  background: var(--sand);
  border: none;
  padding: 18px 44px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  box-shadow: 0 4px 24px #c8a96e44;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--ember-glow);
  box-shadow: 0 4px 40px #ff994466;
  transform: translateY(-2px);
}

.btn-secondary {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sand);
  background: transparent;
  border: 1px solid #6b3d1e;
  padding: 18px 44px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--sand);
  background: #c8a96e11;
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; text-align: center;
  animation: fadein 2s 1s ease both;
}
.scroll-hint span {
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--sand-dark); display: block; margin-bottom: 10px;
}
.scroll-line {
  width: 1px; height: 50px; background: linear-gradient(to bottom, var(--sand-dark), transparent);
  margin: 0 auto;
  animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.6); opacity: 0.4; }
}

/* ── SECTIONS ── */
section {
  position: relative; z-index: 2;
  padding: 100px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--sand-dark); margin-bottom: 16px;
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(28px, 5vw, 48px);
  color: var(--sand);
  margin-bottom: 28px;
  line-height: 1.2;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--cream);
  opacity: 0.8;
  margin-bottom: 20px;
  font-size: 19px;
}

.about-visual { position: relative; }

.board-preview {
  background: linear-gradient(135deg, #5c3010, #7a4520, #5c3010);
  border: 3px solid var(--wood);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 20px 60px #000a, inset 0 2px 8px #ffffff10;
}

.board-row {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 8px;
}

.pit-preview {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--wood);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2px;
  padding: 6px;
  box-shadow: inset 0 3px 6px #0005;
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.pit-p1 { background: #a07030; }
.pit-p2 { background: #7a5020; }
.pit-active {
  border-color: #e8c547;
  box-shadow: 0 0 14px #e8c54788, inset 0 3px 6px #0005;
  transform: scale(1.15);
}
.pit-capture {
  border-color: #ff5533;
  background: #5a1205;
  box-shadow: 0 0 14px #ff553388, inset 0 3px 6px #0005;
}
.board-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8a96e44, transparent);
  margin: 6px 0;
}
.board-label {
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: #c8a96e55; text-align: center; margin-bottom: 8px;
}

/* Stones */
.stone {
  display: block;
  width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e8c87a, #9e7a3a);
  box-shadow: 0 1px 2px #0008;
  flex-shrink: 0;
  animation: stoneAppear 0.3s ease both;
}
@keyframes stoneAppear {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.pit-capture .stone {
  background: radial-gradient(circle at 35% 30%, #ff8866, #8a2210);
}

/* ── FEATURES ── */
.features-bg {
  background: linear-gradient(180deg, transparent 0%, #1a0e0622 50%, transparent 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.feature-card {
  background: linear-gradient(135deg, #1a0e0688, #2c1a0e44);
  border: 1px solid #6b3d1e55;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--sand-dark), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.feature-card:hover {
  border-color: #6b3d1e;
  background: linear-gradient(135deg, #2c1a0eaa, #3d2010aa);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px #0008;
}
.feature-card:hover::before { opacity: 1; }

.feature-img {
  width: 100%; height: 160px; object-fit: cover;
  display: block;
  opacity: 0.75;
  transition: opacity 0.4s;
}
.feature-card:hover .feature-img { opacity: 1; }

.feature-body { padding: 24px 28px 28px; }

.feature-title {
  font-family: 'Cinzel', serif;
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--sand); margin-bottom: 12px;
}

.feature-desc {
  font-size: 17px; color: var(--cream); opacity: 0.7; line-height: 1.6;
}

/* ── STATS ── */
.stats-section {
  background: linear-gradient(135deg, #1a0e06, #2c1a0e);
  border-top: 1px solid #6b3d1e33;
  border-bottom: 1px solid #6b3d1e33;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(36px, 6vw, 56px);
  color: var(--sand);
  text-shadow: 0 0 30px #c8a96e44;
  display: block;
}

.stat-label {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--sand-dark); margin-top: 8px;
}

/* ── HOW TO PLAY ── */
.steps {
  display: flex; flex-direction: column; gap: 0; margin-top: 60px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute; left: 27px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--wood), transparent);
}

.step {
  display: flex; gap: 32px; align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid #6b3d1e22;
  transition: all 0.3s;
}
.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 22px; color: var(--sand);
  min-width: 56px; height: 56px;
  border: 1px solid var(--wood);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--night);
  box-shadow: 0 0 20px #c8a96e22;
  position: relative; z-index: 1;
}

.step-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--sand); margin-bottom: 10px;
}
.step-content p { color: var(--cream); opacity: 0.75; font-size: 18px; }

/* ── QUOTE ── */
.quote-section {
  text-align: center;
  padding: 100px 24px;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, #2c1a0e44, transparent);
}

.big-quote {
  font-family: 'EB Garamond', serif;
  font-size: clamp(22px, 4vw, 36px);
  font-style: italic;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.5;
  opacity: 0.9;
}
.big-quote::before { content: '\201C'; color: var(--sand-dark); font-size: 1.5em; line-height: 0; vertical-align: -0.4em; }
.big-quote::after  { content: '\201D'; color: var(--sand-dark); font-size: 1.5em; line-height: 0; vertical-align: -0.4em; }

.quote-attr {
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--sand-dark);
}

/* ── CTA ── */
.cta-section {
  text-align: center;
  padding: 120px 24px;
  background: linear-gradient(180deg, transparent, #1a0e0666, transparent);
}

.cta-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(32px, 6vw, 60px);
  color: var(--sand);
  margin-bottom: 20px;
  text-shadow: 0 0 40px #c8a96e44;
}
.cta-sub {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--cream); opacity: 0.7;
  margin-bottom: 48px;
}

.cta-stores {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-top: 32px;
}

.store-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px;
  border: 1px solid #6b3d1e;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}
.store-badge:hover {
  border-color: var(--sand);
  background: #c8a96e11;
  transform: translateY(-2px);
}
.store-badge-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  object-fit: cover; display: block;
}
.store-badge-text {
  display: flex; flex-direction: column;
}
.store-badge-label {
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dim);
}
.store-badge-name {
  font-family: 'Cinzel', serif;
  font-size: 15px; letter-spacing: 1px;
  color: var(--sand);
}

/* ── FOOTER ── */
footer {
  background: #080402;
  border-top: 1px solid #6b3d1e33;
  padding: 48px 24px;
  text-align: center;
}

.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 24px; color: var(--sand-dark);
  letter-spacing: 6px; margin-bottom: 24px;
}

.footer-links {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-links a {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sand-dark); text-decoration: none; transition: color 0.3s;
  cursor: pointer;
}
.footer-links a:hover { color: var(--sand); }

.footer-copy {
  font-family: 'EB Garamond', serif;
  font-size: 14px; color: #6b3d1e88;
}


/* ── Decorative divider ── */
.divider {
  display: flex; align-items: center; gap: 20px;
  max-width: 400px; margin: 0 auto 60px;
}
.divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, #6b3d1e); }
.divider-line.right { background: linear-gradient(90deg, #6b3d1e, transparent); }
.divider-gem {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sand-dark);
  box-shadow: 0 0 8px var(--sand-dark);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 58px; left: 0; right: 0;
    background: #0d0804f2; padding: 28px 24px; gap: 20px;
    border-bottom: 1px solid #6b3d1e55;
    backdrop-filter: blur(12px);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 13px; letter-spacing: 4px; }
  .nav-cta { text-align: center; display: block; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-bottom: 180px; }
  .scroll-hint { bottom: 24px; }
}

/* ── PRIVACY PAGE ── */
.nav-back {
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--dim); text-decoration: none; transition: color 0.3s;
}
.nav-back:hover { color: var(--sand); }

.privacy-hero {
  position: relative; z-index: 2;
  padding: 160px 24px 80px;
  text-align: center;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, #2c1a0e, transparent);
}

.privacy-date {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sand-dark);
}

.privacy-body {
  position: relative; z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 120px;
}

.privacy-body h2 {
  font-family: 'Cinzel', serif;
  font-size: 18px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--sand); margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid #6b3d1e33;
}
.privacy-body h2:first-child { border-top: none; margin-top: 0; }

.privacy-body p {
  color: var(--cream); opacity: 0.75;
  font-size: 18px; line-height: 1.8;
  margin-bottom: 18px;
}

.privacy-body ul {
  color: var(--cream); opacity: 0.75;
  font-size: 18px; line-height: 1.8;
  margin: 0 0 18px 28px;
}
.privacy-body ul li { margin-bottom: 8px; }

.privacy-body a {
  color: var(--sand); text-decoration: underline;
  text-decoration-color: #c8a96e44;
}

.privacy-body hr {
  border: none; border-top: 1px solid #6b3d1e44; margin: 40px 0;
}

@media (max-width: 768px) {
  .privacy-body { padding: 40px 20px 80px; }
}
