/* Alder Crown — static landing page
   Retail architecture inspired by Best Cigar Prices,
   with a luxury first-screen cover. */

:root {
  --red: #c8102e;
  --red-deep: #8e0b20;
  --red-ink: #5c0816;
  --gold: #c9a227;
  --gold-soft: #e8d48b;
  --gold-deep: #8a6d1f;
  --ink: #1a1410;
  --ink-soft: #3c322a;
  --cream: #f7f1e6;
  --paper: #fbf8f3;
  --line: #e6dccb;
  --muted: #7a6f63;
  --white: #fff;
  --shadow: 0 18px 50px rgba(26, 20, 16, 0.18);
  --radius: 14px;
  --header: 72px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Songti SC", "Noto Serif SC", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", "PingFang SC", "Hiragino Sans", "Noto Sans SC", "Noto Sans Arabic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  min-width: 320px;
}
body:has(.age-gate:not([hidden])) { overflow: hidden; }
html.age-ok .age-gate { display: none !important; }
html.age-ok { overflow: auto; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
#deal, #brands, #deals, #shop, #goat, #journal, #help, #cart-drawer, #checkout {
  scroll-margin-top: 128px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Age gate */
.age-gate {
  position: fixed; inset: 0; z-index: 80;
  display: grid; place-items: center;
  background:
    linear-gradient(180deg, rgba(20, 10, 8, 0.72), rgba(20, 10, 8, 0.88)),
    url("./assets/img/hero-still-life.webp") center/cover no-repeat;
  padding: 24px;
}
.age-gate[hidden] { display: none; }
.age-card {
  width: min(520px, 100%);
  background: rgba(20, 12, 10, 0.82);
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: var(--cream);
  padding: 36px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.age-card h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  margin: 8px 0 12px;
  font-weight: 600;
}
.age-card p { color: #d9cbb8; margin: 0 0 22px; }
.age-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 20px; border: 0; border-radius: 4px;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  font-size: 13px;
}
.btn-gold { background: linear-gradient(180deg, #e8d48b, var(--gold)); color: #2a1c08; }
.btn-gold:hover { filter: brightness(1.06); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(247, 241, 230, 0.35); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); }
.btn-outline { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-sm { min-height: 38px; padding: 0 14px; font-size: 12px; }

/* Promo + header */
.promo-bar {
  background: var(--ink);
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
}
.site-header {
  background: var(--red);
  color: #fff;
  position: sticky; top: 0; z-index: 40;
  box-shadow: 0 8px 24px rgba(90, 8, 20, 0.28);
}
.header-top {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: var(--header);
}
.logo {
  display: flex; align-items: center; gap: 10px; justify-self: start;
  color: #fff;
}
.logo-mark {
  width: 42px; height: 42px; flex: none;
}
.logo-word {
  display: flex; flex-direction: column; line-height: 1.05;
}
.logo-word strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.logo-word span {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.search {
  display: flex; width: 100%; max-width: 560px; justify-self: center;
  background: #fff; border-radius: 3px; overflow: hidden;
}
.search input {
  flex: 1; border: 0; padding: 10px 12px; color: var(--ink); outline: none;
}
.search button {
  border: 0; background: var(--ink); color: #fff; padding: 0 16px; font-weight: 700;
}
.header-tools {
  display: flex; align-items: center; gap: 14px; justify-self: end;
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.header-tools a, .lang-btn {
  color: #fff;
}
.lang-switch { position: relative; }
.lang-btn {
  background: transparent; border: 1px solid rgba(255,255,255,0.35);
  border-radius: 3px; padding: 6px 10px; min-height: 0;
}
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; color: var(--ink); min-width: 180px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: none; padding: 8px 0; z-index: 5;
}
.lang-switch.open .lang-menu { display: block; }
.lang-menu a {
  display: block; padding: 8px 14px; color: var(--ink); font-weight: 600;
}
.lang-menu a:hover, .lang-menu a[aria-current="page"] { background: var(--cream); }
.cart-count {
  background: var(--gold); color: #2a1c08; border-radius: 99px;
  padding: 0 6px; margin-inline-start: 4px; font-size: 11px;
  display: inline-block; min-width: 1.4em; text-align: center;
}
.cart-count.pop { animation: cart-pop 0.35s ease; }
@keyframes cart-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.main-nav {
  background: var(--red-deep);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.nav-row {
  display: flex; align-items: center; gap: 4px;
  min-height: 46px; overflow: auto;
}
.nav-row a, .nav-drop > button {
  color: #fff; background: none; border: 0; padding: 12px 14px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; white-space: nowrap;
}
.nav-row a:hover, .nav-drop > button:hover { background: rgba(0,0,0,0.18); }
.nav-drop { position: relative; }
.mega {
  display: none; position: absolute; left: 0; top: 100%;
  background: #fff; color: var(--ink); min-width: 280px;
  border: 1px solid var(--line); box-shadow: var(--shadow); padding: 14px 0; z-index: 6;
}
.nav-drop:hover .mega, .nav-drop:focus-within .mega { display: grid; }
.mega a { display: block; color: var(--ink); padding: 7px 18px; text-transform: none; font-weight: 600; }
.mega a:hover { background: var(--cream); color: var(--red); }
.search-mobile { display: none; width: auto; max-width: none; margin: 8px 12px 12px; }
.menu-toggle {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,0.4);
  color: #fff; padding: 8px 10px;
}

/* Hero cover */
.hero {
  position: relative;
  min-height: calc(100svh - 118px);
  color: var(--cream);
  overflow: hidden;
  background: #120c0a;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.04);
  transition: opacity 0.8s ease, transform 1.2s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}
.hero-slide img:not([src]) { visibility: hidden; }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1200px 500px at 18% 40%, rgba(18, 8, 6, 0.18), transparent 55%),
    linear-gradient(90deg, rgba(12, 7, 5, 0.78) 0%, rgba(12, 7, 5, 0.38) 46%, rgba(12, 7, 5, 0.2) 100%),
    linear-gradient(180deg, rgba(12, 7, 5, 0.18), rgba(12, 7, 5, 0.55));
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.hero-ornament {
  position: absolute; inset: 18px; z-index: 2; pointer-events: none;
  border: 1px solid rgba(232, 212, 139, 0.22);
}
.hero-ornament::before, .hero-ornament::after {
  content: ""; position: absolute; width: 48px; height: 48px;
  border: 1px solid var(--gold);
}
.hero-ornament::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero-ornament::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.hero-copy {
  position: relative; z-index: 3;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: inherit;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 48px 0 88px;
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-soft); letter-spacing: 0.28em; text-transform: uppercase;
  font-size: 11px; font-weight: 700; margin-bottom: 14px;
}
.kicker::before {
  content: ""; width: 36px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6.2vw, 82px);
  line-height: 0.95;
  font-weight: 600;
  margin: 0 0 18px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
html[lang="zh-CN"] .hero h1,
html[lang="ja"] .hero h1,
html[lang="ko"] .hero h1 {
  word-break: keep-all;
  line-height: 1.12;
}
.hero .lede {
  font-size: 18px; max-width: 46ch; color: #efe4d2; margin: 0 0 26px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 18px 22px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #d9cbb8;
}
.trust-row strong { color: var(--gold-soft); display: block; font-size: 14px; letter-spacing: 0.02em; text-transform: none; }
.hero-aside {
  justify-self: end;
  width: min(420px, 100%);
  background: rgba(18, 10, 8, 0.55);
  border: 1px solid rgba(232, 212, 139, 0.28);
  padding: 14px;
  backdrop-filter: blur(8px);
}
.hero-aside img { width: 100%; height: 320px; object-fit: cover; }
.aside-cap {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px 4px 4px; font-size: 13px;
}
.aside-cap b { font-family: var(--serif); font-size: 18px; }
.hero-dots {
  position: absolute; z-index: 4; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.hero-dots button {
  width: 9px; height: 9px; border-radius: 99px; border: 0;
  background: rgba(255,255,255,0.35);
}
.hero-dots button.is-active { background: var(--gold); width: 26px; }
.hero-nav-btn {
  position: absolute; z-index: 4; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 99px;
  background: rgba(0,0,0,0.35); color: #fff; border: 1px solid rgba(255,255,255,0.2);
}
.hero-nav-btn.prev { left: 16px; }
.hero-nav-btn.next { right: 16px; }

/* Sections */
section { padding: 64px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: end; gap: 16px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 40px);
  margin: 0; font-weight: 600;
}
.section-head p { margin: 6px 0 0; color: var(--muted); }
.link-more { color: var(--red); font-weight: 800; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }

.deal-strip { background: #fff; padding: 28px 0 8px; }
.deal-card {
  display: grid; grid-template-columns: 280px 1fr auto;
  gap: 28px; align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px;
  box-shadow: var(--shadow);
}
.deal-card img { width: 100%; height: 220px; object-fit: contain; background: #111; }
.eyebrow { color: var(--red); font-weight: 800; letter-spacing: 0.16em; font-size: 11px; text-transform: uppercase; }
.deal-card h3 { font-family: var(--serif); font-size: 32px; margin: 6px 0 8px; }
.price { display: flex; align-items: baseline; gap: 10px; margin: 12px 0; }
.price b { font-size: 34px; color: var(--red); }
.price s { color: var(--muted); }
.meta-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 12px 0 0; list-style: none; }
.meta-list li {
  border: 1px solid var(--line); padding: 4px 8px; font-size: 12px; color: var(--ink-soft);
}
.timer {
  background: var(--ink); color: var(--gold-soft); padding: 18px;
  text-align: center; min-width: 180px;
}
.timer span { display: block; font-family: var(--serif); font-size: 28px; color: #fff; }

.brands { background: var(--cream); }
.brand-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
}
.brand-grid a {
  background: #fff; border: 1px solid var(--line); padding: 16px 12px;
  text-align: center; font-weight: 800; letter-spacing: 0.04em;
}
.brand-grid a:hover { border-color: var(--gold); color: var(--red); }

.tile-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.tile {
  position: relative; min-height: 220px; overflow: hidden; color: #fff;
}
.tile img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.72));
}
.tile-body { position: relative; z-index: 1; padding: 24px; height: 100%; display: flex; flex-direction: column; justify-content: end; }
.tile h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 28px; }
.tile p { margin: 0 0 12px; color: #efe4d2; }

.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.product {
  background: #fff; border: 1px solid var(--line); padding: 12px 12px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.product[hidden] { display: none; }
.product .thumb {
  background: #111; height: 230px; display: grid; place-items: center; overflow: hidden;
}
.product .thumb img { height: 100%; width: 100%; object-fit: contain; aspect-ratio: 1 / 1; }
.badge {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 800; padding: 3px 7px; letter-spacing: 0.06em;
}
.badge.gold { background: var(--gold); color: #2a1c08; }
.product h3 { font-size: 16px; margin: 0; min-height: 42px; }
.product .price b { font-size: 22px; }
.stars { color: var(--gold-deep); font-size: 12px; letter-spacing: 1px; }
.stars span { color: var(--muted); margin-inline-start: 6px; letter-spacing: 0; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; filter: none; }
.stock { font-size: 12px; color: var(--muted); margin: 0; font-weight: 700; }
.stock.is-low { color: var(--red); }
.stock.is-sold { color: var(--red-ink); }
.stock-deal { color: var(--gold-soft); margin: 8px 0; }
.stock-deal.is-low, .stock-deal.is-sold { color: #ffd6d6; }
.product.is-sold { opacity: 0.72; }

.about {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: center;
}
.about img { width: 100%; height: 420px; object-fit: cover; }
.about h2 { font-family: var(--serif); font-size: 40px; margin: 8px 0 12px; }

.goat { background: var(--ink); color: var(--cream); }
.goat .section-head h2, .goat .section-head p { color: var(--cream); }
.goat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.goat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 162, 39, 0.28);
  padding: 22px;
  min-height: 280px;
}
.goat-card .tag {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  font-weight: 800;
}
.goat-card h3 { font-family: var(--serif); font-size: 24px; line-height: 1.15; margin: 10px 0; }
.goat-card p, .goat-card li { color: #d9cbb8; }
.goat-card ul { padding-inline-start: 18px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card { background: #fff; border: 1px solid var(--line); overflow: hidden; }
.blog-card img { width: 100%; height: 190px; object-fit: cover; }
.blog-card div { padding: 16px; }
.blog-card time { color: var(--muted); font-size: 12px; }
.blog-card h3 { font-family: var(--serif); margin: 6px 0; font-size: 22px; }

.help-band {
  background: var(--red); color: #fff; padding: 28px 0;
}
.help-band .wrap { display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; }
.help-band strong { font-family: var(--serif); font-size: 28px; }

.site-footer {
  background: #120c0a; color: #d9cbb8; padding: 48px 0 24px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; }
.site-footer h4 { color: #fff; margin: 0 0 12px; letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; }
.site-footer a { display: block; padding: 4px 0; color: #d9cbb8; }
.site-footer a:hover { color: var(--gold-soft); }
.legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 28px; padding-top: 16px; font-size: 12px; color: #9c8f82;
}
.toast {
  position: fixed; top: 92px; right: 18px; z-index: 70;
  background: var(--ink); color: #fff; padding: 12px 16px;
  border-left: 3px solid var(--gold); display: none;
  box-shadow: var(--shadow); font-weight: 700; letter-spacing: 0.03em;
}
.toast.show { display: block; }

.sheet[hidden] { display: none; }
.sheet {
  position: fixed; inset: 0; z-index: 75;
  display: grid; justify-items: end;
}
.sheet-backdrop {
  position: absolute; inset: 0; border: 0; background: rgba(12, 7, 5, 0.55);
}
.sheet-panel {
  position: relative; width: min(420px, 100%); height: 100%;
  background: #fff; color: var(--ink); padding: 22px;
  box-shadow: var(--shadow); overflow: auto;
  display: flex; flex-direction: column; gap: 16px;
}
.sheet-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.sheet-head h2 { font-family: var(--serif); margin: 0; font-size: 28px; }
.sheet-x { background: transparent; border: 1px solid var(--line); padding: 6px 10px; }
.cart-lines { list-style: none; padding: 0; margin: 0; flex: 1; }
.cart-lines li {
  display: grid; gap: 8px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.cart-line-main { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.cart-line-main small { display: block; color: var(--muted); font-weight: 600; margin-top: 4px; }
.cart-line-tools { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 32px; height: 32px; border: 1px solid var(--line); background: #fff;
  font-weight: 800; line-height: 1;
}
.qty-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.cart-qty { min-width: 1.5em; text-align: center; font-weight: 800; }
.cart-remove {
  margin-inline-start: auto; background: transparent; border: 0;
  color: var(--red); font-weight: 700; font-size: 12px; text-transform: uppercase;
}
.cart-empty { color: var(--muted); margin: 0; }
.cart-foot { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 15px; font-weight: 700;
}
.cart-subtotal b { font-family: var(--serif); font-size: 26px; }
.checkout-note { color: var(--muted); margin: 0; }
.checkout-form { display: grid; gap: 10px; }
.checkout-form label { display: grid; gap: 4px; font-size: 13px; font-weight: 700; }
.checkout-form input {
  border: 1px solid var(--line); padding: 10px 12px; min-height: 44px; background: #fff;
}
.checkout-error { color: var(--red); font-weight: 700; margin: 0; }
.checkout-success h3 { font-family: var(--serif); font-size: 26px; margin: 0 0 8px; }
.search-empty { color: var(--red); font-weight: 700; margin: 0 0 16px; }
[dir="rtl"] .sheet { justify-items: start; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide { transition: none; }
  .cart-count.pop { animation: none; }
}

[dir="rtl"] .kicker::before { order: 2; }
[dir="rtl"] .hero-copy { direction: rtl; }
[dir="rtl"] .lang-menu { right: auto; left: 0; }

@media (max-width: 980px) {
  .header-top { grid-template-columns: 1fr auto; }
  .search { display: none; }
  .search-mobile { display: flex; }
  .menu-toggle { display: inline-flex; }
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .nav-row { flex-direction: column; align-items: stretch; }
  .mega { position: static; display: none; box-shadow: none; border: 0; }
  .nav-drop.open .mega { display: block; }
  .hero { min-height: auto; }
  .hero-copy { grid-template-columns: 1fr; padding: 36px 0 96px; }
  .hero-aside { justify-self: stretch; width: 100%; }
  .hero-aside img { height: 220px; }
  .hero-nav-btn { display: none; }
  .deal-card, .about, .goat-grid, .tile-grid, .product-grid, .brand-grid, .blog-grid, .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .deal-card { grid-template-columns: 1fr; }
  .timer { display: flex; justify-content: space-between; align-items: center; }
}

@media (max-width: 640px) {
  .header-tools a[href="#account"],
  .header-tools a[href="#help"] { display: none; }
  .header-tools span.hide-sm { display: none; }
  .hero h1 { font-size: 42px; }
  .brand-grid, .tile-grid, .product-grid, .goat-grid, .blog-grid, .foot-grid, .about {
    grid-template-columns: 1fr;
  }
  .about img { height: 240px; }
  section { padding: 44px 0; }
}


/* IP cover overlay — same page as the storefront */
.geo-cover {
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-items: center;
  overflow: hidden; padding: 28px;
  color: #f7f1e6;
  font-family: var(--serif);
}
.geo-cover[hidden] { display: none; }
.geo-cover img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: contrast(1.05) saturate(1.04);
}
.geo-cover::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 420px at 30% 40%, rgba(18,8,6,.15), transparent 60%),
    linear-gradient(180deg, rgba(12,7,5,.35), rgba(12,7,5,.78));
}
.geo-frame {
  position: absolute; inset: 16px;
  border: 1px solid rgba(232, 212, 139, 0.28);
  pointer-events: none;
}
.geo-card {
  position: relative; z-index: 1;
  width: min(560px, 100%);
  background: rgba(14, 8, 6, 0.62);
  border: 1px solid rgba(201, 162, 39, 0.4);
  padding: 36px 32px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.geo-card h1 { font-size: clamp(36px, 6vw, 54px); line-height: .95; font-weight: 600; margin: 12px 0 10px; }
.geo-card p { margin: 0 0 22px; color: #efe4d2; font-family: var(--sans); }
.geo-status { font-family: var(--sans); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.geo-langs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 22px; }
.geo-langs a {
  color: #f7f1e6; text-decoration: none;
  border: 1px solid rgba(247,241,230,.28);
  padding: 7px 10px; font-size: 12px; font-family: var(--sans);
}
.geo-langs a:hover { border-color: var(--gold); color: var(--gold-soft); }
