/* ============================================================
   AMRNORTE — Static version
   Design tokens
   ============================================================ */
:root {
  --obsidian: #0A0A0B;
  --stone: #E2DED0;
  --copper: #8B5E3C;
  --dust: #1C1C1E;
  --teal: #4A8A94;
  --wine: #7A1F35;
  --gold: #B08D57;

  --hairline: rgba(226, 222, 208, 0.15);

  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Jost', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--obsidian);
  color: var(--stone);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
img { display: block; max-width: 100%; }
select, input { font-family: inherit; }

/* Film grain overlay */
.film-grain::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hairline { border-color: var(--hairline); }
.mono { font-family: var(--font-mono); }
.mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ============================================================
   Age gate
   ============================================================ */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#age-gate.hidden { display: none; }
.age-gate-inner { text-align: center; max-width: 32rem; }
.age-lang { position: absolute; top: 1.5rem; right: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.age-logo { font-family: var(--font-heading); font-size: 3rem; letter-spacing: 0.05em; margin-bottom: 3rem; }
.age-logo .accent { color: var(--copper); }
.age-icon { color: var(--copper); margin: 0 auto 2rem; display: block; }
.age-question { font-family: var(--font-display); font-size: 2rem; margin-bottom: 3rem; }
.age-btns { display: flex; gap: 1rem; justify-content: center; }
.age-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1rem 2.5rem;
  border: 1px solid;
  transition: all 0.3s;
}
.age-btn.yes { background: var(--copper); color: var(--obsidian); border-color: var(--copper); }
.age-btn.yes:hover { background: rgba(139,94,60,0.8); }
.age-btn.no { border-color: rgba(226,222,208,0.3); color: rgba(226,222,208,0.6); }
.age-btn.no:hover { border-color: rgba(226,222,208,0.6); color: var(--stone); }

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.5s;
  padding: 1.25rem 1.5rem;
}
.navbar.scrolled {
  background: rgba(10,10,11,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; max-width: 100%; }
.nav-logo { font-family: var(--font-heading); font-size: 1.5rem; letter-spacing: 0.05em; }
.nav-logo .accent { color: var(--copper); }
.nav-links { display: none; align-items: center; gap: 2.5rem; }
.nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(226,222,208,0.7);
  transition: color 0.3s;
}
.nav-link:hover { color: var(--copper); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  margin-top: 0.5rem;
  background: var(--obsidian);
  border: 1px solid var(--hairline);
  min-width: 180px;
  padding: 0.5rem 0;
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: auto; }
.nav-dropdown-item {
  display: block;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(226,222,208,0.7);
  transition: all 0.3s;
}
.nav-dropdown-item:hover { color: var(--copper); background: rgba(28,28,30,0.5); }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }

.lang-switch { display: flex; align-items: center; gap: 0.5rem; }
.lang-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(226,222,208,0.4);
  transition: color 0.3s;
}
.lang-btn.active { color: var(--copper); }
.lang-btn:hover { color: var(--stone); }

.nav-acquire {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid rgba(139,94,60,0.6);
  color: var(--copper);
  padding: 0.5rem 1.25rem;
  transition: all 0.3s;
}
.nav-acquire:hover { background: var(--copper); color: var(--obsidian); }

@media (min-width: 768px) {
  .navbar { padding: 1.25rem 3.5rem; }
  .nav-links { display: flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-bg::after, .hero-bg::before {
  content: '';
  position: absolute; inset: 0;
}
.hero-bg::after { background: linear-gradient(to top, var(--obsidian), rgba(10,10,11,0.6), rgba(10,10,11,0.3)); }
.hero-bg::before { background: linear-gradient(to right, rgba(10,10,11,0.7), transparent, rgba(10,10,11,0.4)); z-index: 1; }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 0 1.5rem 6rem; }
.hero-badge { color: var(--copper); margin-bottom: 1.5rem; }
.hero-title { font-family: var(--font-heading); line-height: 0.85; color: var(--stone); }
.hero-title .line { display: block; font-size: 18vw; }
.hero-title .accent { color: var(--copper); margin-top: -0.5rem; }
.hero-subtitle { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: rgba(226,222,208,0.8); max-width: 28rem; margin-top: 1.5rem; }
.hero-cta {
  display: inline-block;
  margin-top: 3rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid rgba(226,222,208,0.4);
  padding: 1rem 2rem;
  transition: all 0.5s;
}
.hero-cta:hover { border-color: var(--copper); color: var(--copper); }
.hero-scroll {
  position: absolute;
  bottom: 2rem; right: 2rem;
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(226,222,208,0.5);
  transition: color 0.3s;
}
.hero-scroll:hover { color: var(--copper); }
.hero-scroll .arrow { animation: bounce 2s infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (min-width: 768px) {
  .hero { align-items: center; }
  .hero-content { padding: 0 3.5rem; }
  .hero-title .line { font-size: 11vw; }
  .hero-subtitle { font-size: 1.5rem; }
  .hero-scroll { right: 3.5rem; }
}

/* ============================================================
   Generic section
   ============================================================ */
.section { position: relative; padding: 10rem 1.5rem; }
.section-divider { border-top: 1px solid var(--hairline); }
@media (min-width: 768px) {
  .section { padding: 16rem 3.5rem; }
}

.section-badge { color: var(--copper); margin-bottom: 2rem; }
.section-title { font-family: var(--font-display); color: var(--stone); }
.h-display { font-family: var(--font-display); }
.h-heading { font-family: var(--font-heading); }

.grid-5 { display: grid; gap: 2.5rem; }
@media (min-width: 768px) {
  .grid-5 { grid-template-columns: repeat(5, 1fr); gap: 4rem; }
  .col-2 { grid-column: span 2; }
  .col-3 { grid-column: span 3; }
}

/* ============================================================
   Brand story
   ============================================================ */
.story-img-wrap { width: 100%; aspect-ratio: 4/5; border: 1px solid var(--hairline); overflow: hidden; }
.story-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.story-title { font-size: 2.5rem; line-height: 1.1; margin-bottom: 2.5rem; }
.story-text p { color: rgba(226,222,208,0.7); font-size: 1.125rem; line-height: 1.7; max-width: 36rem; margin-bottom: 1.5rem; }
.story-text .pull { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--copper); padding-top: 1rem; }
@media (min-width: 768px) {
  .story-title { font-size: 4rem; }
  .story-grid .col-3 { margin-top: 5rem; grid-column-start: 3; }
}

/* ============================================================
   Product gallery
   ============================================================ */
.gallery-header { padding: 0 1.5rem 5rem; }
@media (min-width: 768px) { .gallery-header { padding: 0 3.5rem 5rem; } }
.gallery-title { font-size: 2.5rem; max-width: 36rem; }
@media (min-width: 768px) { .gallery-title { font-size: 4rem; } }
.product-row { display: grid; gap: 2rem; align-items: center; margin-bottom: 6rem; }
@media (min-width: 768px) { .product-row { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.product-bottle { width: 100%; aspect-ratio: 4/5; border: 1px solid var(--hairline); overflow: hidden; }
.product-bottle img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.7s; }
.product-card-wrap { position: relative; }
.product-watermark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; user-select: none;
}
.product-watermark span {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 10vw;
  letter-spacing: -0.02em;
  opacity: 0.04;
  white-space: nowrap;
}
.product-card {
  position: relative;
  border: 1px solid var(--hairline);
  padding: 2.5rem;
  background: rgba(28,28,30,0.4);
  backdrop-filter: blur(4px);
}
@media (min-width: 768px) { .product-card { padding: 3.5rem; } }
.product-card h3 { font-family: var(--font-heading); font-size: 3rem; color: var(--stone); }
.product-card .subtitle { font-family: var(--font-display); font-style: italic; color: rgba(226,222,208,0.6); margin-top: 0.5rem; }
.specs-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--hairline); }
.specs-row .label { color: rgba(226,222,208,0.4); }
.specs-row .value { color: rgba(226,222,208,0.8); margin-top: 0.25rem; font-size: 0.875rem; }
.product-notes { margin-top: 2rem; color: rgba(226,222,208,0.7); font-size: 0.875rem; line-height: 1.7; }
.product-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 2rem;
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--copper); transition: color 0.3s;
}
.product-link:hover { color: var(--stone); }
.bottle-rev { order: 2; }
@media (min-width: 768px) { .bottle-rev { order: 2; } .card-rev { order: 1; } }

/* ============================================================
   Process
   ============================================================ */
.process-header { padding: 0 1.5rem 4rem; }
@media (min-width: 768px) { .process-header { padding: 0 3.5rem 4rem; } }
.process-scroller {
  display: flex;
  overflow-x: auto;
  padding: 0 1.5rem 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.process-scroller::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .process-scroller { padding: 0 3.5rem 1rem; } }
.process-step { scroll-snap-align: start; }
.process-step-card {
  position: relative;
  flex-shrink: 0;
  width: 85vw; height: 70vh;
  margin-right: 2rem;
}
@media (min-width: 768px) { .process-step-card { width: 55vw; margin-right: 4rem; } }
.process-step-card img { width: 100%; height: 100%; object-fit: cover; }
.process-step-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--obsidian), rgba(10,10,11,0.3), transparent); }
.process-step-text { position: absolute; bottom: 0; left: 0; padding: 2rem; }
@media (min-width: 768px) { .process-step-text { padding: 3rem; } }
.process-step-text .idx { color: var(--copper); margin-bottom: 0.75rem; }
.process-step-text h3 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--stone); margin-bottom: 0.75rem; }
@media (min-width: 768px) { .process-step-text h3 { font-size: 3rem; } }
.process-step-text p { color: rgba(226,222,208,0.7); max-width: 24rem; line-height: 1.7; }

/* ============================================================
   Foundry
   ============================================================ */
.foundry-top { display: grid; gap: 4rem; margin-bottom: 10rem; }
@media (min-width: 768px) { .foundry-top { grid-template-columns: repeat(5, 1fr); } }
.gift-box { border: 1px solid var(--hairline); padding: 2rem; background: rgba(28,28,30,0.4); }
.gift-preview { border: 1px solid rgba(139,94,60,0.4); padding: 2.5rem 1rem; text-align: center; margin-bottom: 1.5rem; }
.gift-preview span { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--copper); }
.gift-input {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--hairline);
  padding: 0.75rem 0; color: var(--stone);
  transition: border-color 0.3s;
}
.gift-input:focus { outline: none; border-color: var(--copper); }
.gift-input::placeholder { color: rgba(226,222,208,0.3); }

.stockists { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .stockists { grid-template-columns: 1fr 1fr; } }
.stockist-card { border: 1px solid var(--hairline); padding: 2rem; transition: border-color 0.3s; }
.stockist-card:hover { border-color: rgba(139,94,60,0.5); }
.stockist-card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 0.5rem; }
.stockist-card p { color: rgba(226,222,208,0.6); font-size: 0.875rem; margin-bottom: 1.5rem; }
.stockist-card a { color: var(--copper); transition: color 0.3s; }
.stockist-card a:hover { color: var(--stone); }
@media (min-width: 768px) { .foundry-acquire { grid-column: span 3; grid-column-start: 3; } }

/* ============================================================
   Contact form
   ============================================================ */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(5, 1fr); gap: 4rem; } }
.contact-info h2 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 1.5rem; }
.contact-info p { color: rgba(226,222,208,0.6); max-width: 24rem; line-height: 1.7; }
@media (min-width: 768px) { .contact-info { grid-column: span 2; } .contact-form-wrap { grid-column: span 3; } }

.contact-form { display: grid; gap: 2rem; }
@media (min-width: 768px) { .contact-form { grid-template-columns: 1fr 1fr; gap: 2rem 2rem; } }
.field { display: flex; flex-direction: column; }
.field-label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(226,222,208,0.4); margin-bottom: 0.5rem; }
.field input, .field select {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--hairline);
  padding: 0.75rem 0; color: var(--stone);
  transition: border-color 0.3s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--copper); }
.field input::placeholder { color: rgba(226,222,208,0.3); }
.field select { cursor: pointer; }
.field-full { grid-column: span 1; }
@media (min-width: 768px) { .field-full { grid-column: span 2; } }
.form-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 1rem; }
.form-submit {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
  border: 1px solid var(--copper); color: var(--copper);
  padding: 1rem 2.5rem;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.75rem;
}
.form-submit:hover { background: var(--copper); color: var(--obsidian); }
.form-submit:disabled { opacity: 0.5; }
.form-error { color: rgba(248,113,113,0.7); font-size: 0.875rem; }

.form-success { text-align: center; padding: 4rem; border: 1px solid var(--hairline); background: rgba(28,28,30,0.3); }
.form-success .check {
  width: 3.5rem; height: 3.5rem; margin: 0 auto 1.5rem;
  border: 1px solid var(--copper); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--copper);
}
.form-success p { font-family: var(--font-display); font-size: 1.5rem; max-width: 24rem; margin: 0 auto; }
.form-success button { margin-top: 2rem; color: var(--copper); transition: color 0.3s; }
.form-success button:hover { color: var(--stone); }
.spinner { width: 1rem; height: 1rem; border: 2px solid rgba(139,94,60,0.3); border-top-color: var(--copper); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   Product detail
   ============================================================ */
.detail-section { padding: 8rem 1.5rem 5rem; }
@media (min-width: 768px) { .detail-section { padding: 11rem 3.5rem 8rem; } }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 4rem; color: rgba(226,222,208,0.5); transition: color 0.3s; }
.back-link:hover { color: var(--copper); }
.detail-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) {
  .detail-grid { grid-template-columns: 2fr 3fr; gap: 4rem; align-items: stretch; }
}
.detail-bottle-col { position: relative; }
.detail-bottle { width: 100%; aspect-ratio: 3/4; filter: drop-shadow(0 25px 50px rgba(0,0,0,0.5)); }
.detail-bottle img { width: 100%; height: 100%; object-fit: contain; }
@media (min-width: 768px) {
  .detail-bottle { position: sticky; top: 7rem; }
}
.detail-title { font-family: var(--font-heading); font-size: 4rem; line-height: 1; color: var(--stone); }
@media (min-width: 768px) { .detail-title { font-size: 6rem; } }
.detail-subtitle { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: rgba(226,222,208,0.7); margin-top: 1rem; }
.detail-tagline { color: rgba(226,222,208,0.6); font-size: 1.125rem; margin-top: 2rem; max-width: 32rem; line-height: 1.7; }
.buy-btn {
  display: inline-block; margin-top: 2.5rem;
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
  border: 1px solid var(--copper); color: var(--copper);
  padding: 1rem 2.5rem;
  transition: all 0.3s;
}
.buy-btn:hover { background: var(--copper); color: var(--obsidian); }

.detail-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.detail-spec { border: 1px solid var(--hairline); padding: 1rem; }
.detail-spec .label { color: rgba(226,222,208,0.4); }
.detail-spec .value { color: rgba(226,222,208,0.8); margin-top: 0.25rem; font-size: 0.875rem; }

.profile-list { margin-top: 4rem; }
.profile-list .profile-title { color: var(--copper); margin-bottom: 2rem; }
.profile-item { display: flex; gap: 1.25rem; padding-bottom: 3rem; margin-bottom: 3rem; border-bottom: 1px solid var(--hairline); }
.profile-item:last-child { border-bottom: none; margin-bottom: 0; }
.profile-icon {
  flex-shrink: 0; width: 3rem; height: 3rem; border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
}
.profile-icon svg { width: 1.25rem; height: 1.25rem; }
.profile-text .label { color: rgba(226,222,208,0.4); margin-bottom: 0.75rem; }
.profile-text .value { color: rgba(226,222,208,0.7); line-height: 1.7; }

.story-block { border-left: 2px solid var(--copper); padding-left: 2rem; margin-top: 3rem; }
.story-block .label { color: var(--copper); margin-bottom: 1rem; }
.story-block p { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: rgba(226,222,208,0.8); line-height: 1.7; }
@media (min-width: 768px) { .story-block p { font-size: 1.5rem; } }

/* Related products */
.related { padding: 6rem 1.5rem; border-top: 1px solid var(--hairline); }
@media (min-width: 768px) { .related { padding: 6rem 3.5rem; } }
.related-title { color: var(--copper); margin-bottom: 2.5rem; }
.related-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .related-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.related-card { border: 1px solid var(--hairline); background: rgba(28,28,30,0.3); overflow: hidden; transition: border-color 0.3s; }
.related-card:hover { border-color: rgba(139,94,60,0.5); }
.related-card-img { aspect-ratio: 4/3; border-bottom: 1px solid var(--hairline); overflow: hidden; }
.related-card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.7s; }
.related-card:hover .related-card-img img { transform: scale(1.05); }
.related-card-body { padding: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.related-card h3 { font-family: var(--font-heading); font-size: 2.5rem; transition: color 0.3s; }
.related-card:hover h3 { color: var(--copper); }
.related-card .subtitle { font-family: var(--font-display); font-style: italic; color: rgba(226,222,208,0.6); margin-top: 0.25rem; }

/* ============================================================
   Footer
   ============================================================ */
.footer { border-top: 1px solid var(--hairline); padding: 3rem 1.5rem; }
@media (min-width: 768px) { .footer { padding: 3rem 3.5rem; } }
.footer-top { display: flex; flex-direction: column; gap: 1.5rem; justify-content: space-between; }
@media (min-width: 768px) { .footer-top { flex-direction: row; align-items: center; } }
.footer-logo { font-family: var(--font-heading); font-size: 1.25rem; }
.footer-logo .accent { color: var(--copper); }
.footer-tag { color: rgba(226,222,208,0.4); margin-top: 0.5rem; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { color: rgba(226,222,208,0.5); transition: color 0.3s; }
.footer-links a:hover { color: var(--copper); }
.footer-disclaimer { color: rgba(226,222,208,0.3); margin-top: 2.5rem; }

/* ============================================================
   Page wrapper
   ============================================================ */
.page { background: var(--obsidian); color: var(--stone); min-height: 100vh; }