/* =========================================================
   Fucking Reviews — main stylesheet
   Palette carries over the original brand: oxblood score
   badges, near-black chrome, brass for reader votes.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --wine:        #6B0F2F;
  --wine-lift:   #A81848;
  --wine-deep:   #4A0A20;
  --brass:       #C79A4B;

  --bg:          #FAF7F8;
  --bg-sunk:     #F1EAED;
  --surface:     #FFFFFF;
  --surface-alt: #F7F2F4;
  --ink:         #1A141C;
  --ink-soft:    #453B48;
  --muted:       #6B5F68;
  --line:        #E4D9DE;
  --line-strong: #CFC0C7;

  --chrome:      #17121B;   /* header / footer bar */
  --chrome-ink:  #F3EDF0;

  --radius:      4px;
  --radius-lg:   8px;
  --shadow:      0 1px 2px rgba(26,20,28,.06), 0 8px 24px -16px rgba(26,20,28,.28);
  --shadow-lift: 0 2px 6px rgba(26,20,28,.10), 0 18px 40px -22px rgba(26,20,28,.45);

  --font-display: "Oswald", "Haettenschweiler", "Arial Narrow", sans-serif;
  --font-body:    "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont,
                  "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1200px;
  --gap: 1.5rem;
}

[data-theme="dark"] {
  --bg:          #121016;
  --bg-sunk:     #0C0A0F;
  --surface:     #1B161F;
  --surface-alt: #241D29;
  --ink:         #F2ECEF;
  --ink-soft:    #D6CBD2;
  --muted:       #A0929B;
  --line:        #2E2633;
  --line-strong: #403547;

  --chrome:      #0C0A0F;
  --chrome-ink:  #F2ECEF;

  --wine:        #8E1740;
  --wine-lift:   #D0245A;
  --wine-deep:   #63102C;

  --shadow:      0 1px 2px rgba(0,0,0,.5), 0 10px 30px -18px rgba(0,0,0,.9);
  --shadow-lift: 0 4px 10px rgba(0,0,0,.55), 0 24px 50px -24px rgba(0,0,0,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--wine-lift); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--wine); }
[data-theme="dark"] a:hover { color: #E8659A; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: .005em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.1em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--wine); color: #fff; padding: .7rem 1rem;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.masthead {
  background: var(--chrome);
  color: var(--chrome-ink);
  position: sticky; top: 0; z-index: 90;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.masthead-bar {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 66px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: .02em;
  color: var(--chrome-ink);
  text-decoration: none;
  display: inline-flex; align-items: baseline; gap: .45rem;
  padding: .35rem 0;
  white-space: nowrap;
}
.brand em {
  font-style: normal;
  color: var(--wine-lift);
  text-shadow: 0 0 18px rgba(208,36,90,.35);
}
.brand:hover { color: #fff; }
.brand img { height: 40px; width: auto; }

.nav { margin-left: auto; display: flex; align-items: center; gap: .25rem; }
.nav a, .nav button.navlink {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--chrome-ink);
  background: none; border: 0; cursor: pointer;
  text-decoration: none;
  padding: .8rem .85rem;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: .35rem;
}
.nav a:hover, .nav button.navlink:hover,
.nav a[aria-current="page"] { background: rgba(255,255,255,.08); color: #fff; }
.nav a[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--wine-lift); }

/* niche dropdown */
.has-menu { position: relative; }
.menu-panel {
  position: absolute; right: 0; top: calc(100% + 6px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 1rem 1.1rem;
  width: min(680px, 88vw);
  columns: 3 150px; column-gap: 1.4rem;
  display: none;
}
.has-menu.open .menu-panel { display: block; }
.menu-panel a {
  display: block; padding: .22rem 0;
  color: var(--ink-soft); text-decoration: none;
  font-size: .95rem; break-inside: avoid;
}
.menu-panel a:hover { color: var(--wine-lift); }

.icon-btn {
  background: none; border: 0; cursor: pointer;
  color: var(--chrome-ink);
  padding: .55rem; border-radius: var(--radius);
  display: inline-grid; place-items: center;
  line-height: 0;
}
.icon-btn:hover { background: rgba(255,255,255,.09); }
.icon-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.nav-toggle { display: none; }

/* search drawer */
.searchbar {
  display: none;
  background: var(--chrome);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: .85rem 0 1rem;
}
.searchbar.open { display: block; }
.searchbar form { display: flex; gap: .5rem; }
.searchbar input {
  flex: 1; padding: .7rem .9rem;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff; border-radius: var(--radius);
  font: inherit;
}
.searchbar input::placeholder { color: rgba(255,255,255,.5); }

/* featured ticker */
.ticker {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}
.ticker .wrap { display: flex; align-items: center; gap: .75rem; padding-block: .6rem; overflow: hidden; }
.ticker-label {
  font-family: var(--font-display);
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-size: .78rem; white-space: nowrap;
}
.ticker-items { display: flex; gap: 1.4rem; overflow-x: auto; scrollbar-width: none; }
.ticker-items::-webkit-scrollbar { display: none; }
.ticker-items a { white-space: nowrap; text-decoration: none; font-weight: 600; }

/* ---------- Page furniture ---------- */
main { padding-block: 2.5rem 4rem; min-height: 60vh; }

.page-head { margin-bottom: 2rem; }
.page-head p { color: var(--muted); max-width: 62ch; margin-bottom: 0; }
.crumbs { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.crumbs a { color: var(--muted); }
.crumbs span { padding-inline: .4rem; opacity: .6; }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.2rem;
  border-bottom: 2px solid var(--wine);
  padding-bottom: .5rem;
}
.section-head h2 { margin: 0; }
.section-head a { font-size: .92rem; text-decoration: none; }

/* ---------- Review grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--gap);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  transition: box-shadow .18s ease, border-color .18s ease;
}
.card:hover { box-shadow: var(--shadow-lift); border-color: var(--line-strong); }

.card-shot { position: relative; display: block; background: var(--bg-sunk); }
.card-shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.score-badge {
  position: absolute; top: 0; right: 0;
  background: var(--wine);
  color: #fff;
  font-family: var(--font-display);
  padding: .45rem .7rem .3rem;
  line-height: 1;
  display: flex; align-items: baseline; gap: .1rem;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,.6);
}
.score-badge b { font-size: 1.55rem; font-weight: 500; }
.score-badge span { font-size: .75rem; opacity: .85; }

.card-body { padding: 1.05rem 1.15rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .35rem; font-size: 1.3rem; }
.card-body h3 a { color: inherit; text-decoration: none; }
.card-body h3 a:hover { color: var(--wine-lift); }
.card-meta {
  font-size: .82rem; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: .35rem .9rem;
  margin-bottom: .65rem;
}
.card-body p { font-size: .95rem; color: var(--ink-soft); margin-bottom: 1rem; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }

.chips { display: flex; flex-wrap: wrap; gap: .35rem; }
.chip {
  font-size: .74rem; letter-spacing: .03em;
  padding: .2rem .5rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  color: var(--muted); text-decoration: none;
  background: var(--surface-alt);
}
.chip:hover { border-color: var(--wine); color: var(--wine-lift); }
.chip.more { border-style: dashed; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: .98rem; letter-spacing: .04em;
  padding: .72rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  background: var(--wine); color: #fff;
  transition: background .15s ease, transform .05s ease;
}
.btn:hover { background: var(--wine-lift); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--surface-alt); color: var(--ink); border-color: var(--wine); }
.btn-brass { background: var(--brass); color: #241800; }
.btn-brass:hover { background: #D9AE5F; color: #241800; }
.btn-sm { padding: .45rem .8rem; font-size: .88rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- Single review ---------- */
.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2.5rem;
  align-items: start;
}

.gallery { margin-bottom: 2rem; }
.gallery-stage {
  position: relative;
  background: var(--bg-sunk);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-stage img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  cursor: zoom-in;
}
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(12,10,15,.6); color: #fff;
  border: 0; width: 42px; height: 56px; cursor: pointer;
  display: grid; place-items: center; font-size: 1.4rem;
}
.gallery-nav:hover { background: rgba(12,10,15,.85); }
.gallery-nav.prev { left: 0; border-radius: 0 var(--radius) var(--radius) 0; }
.gallery-nav.next { right: 0; border-radius: var(--radius) 0 0 var(--radius); }
.gallery-count {
  position: absolute; bottom: .6rem; right: .7rem;
  background: rgba(12,10,15,.7); color: #fff;
  font-size: .8rem; padding: .18rem .55rem; border-radius: 100px;
}
.gallery-strip {
  display: flex; gap: .5rem; overflow-x: auto;
  padding: .6rem .1rem .2rem; scrollbar-width: thin;
}
.gallery-strip button {
  flex: 0 0 auto; padding: 0; border: 2px solid transparent;
  background: none; cursor: pointer; border-radius: var(--radius);
  overflow: hidden; line-height: 0;
}
.gallery-strip img { width: 112px; height: 76px; object-fit: cover; }
.gallery-strip button[aria-current="true"] { border-color: var(--wine-lift); }

.review-title { margin-bottom: .35rem; }
.review-sub { color: var(--muted); font-size: 1.02rem; margin-bottom: 1rem; }
.review-meta {
  display: flex; flex-wrap: wrap; gap: .4rem 1.2rem;
  font-size: .88rem; color: var(--muted);
  padding-bottom: 1.1rem; margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.review-meta strong { color: var(--ink-soft); font-weight: 600; }

.prose { font-size: 1.06rem; max-width: 72ch; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose img { border-radius: var(--radius); margin: 1.4rem 0; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose blockquote {
  margin: 1.5rem 0; padding: .2rem 0 .2rem 1.2rem;
  border-left: 3px solid var(--wine);
  color: var(--ink-soft); font-style: italic;
}
.prose a { font-weight: 600; }

/* price table */
.price-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 1rem; }
.price-table caption {
  font-family: var(--font-display); font-size: 1.15rem;
  text-align: left; padding-bottom: .5rem; color: var(--ink);
}
.price-table th, .price-table td {
  padding: .7rem .9rem; border-bottom: 1px solid var(--line); text-align: left;
}
.price-table tbody tr:nth-child(odd) { background: var(--surface-alt); }
.price-table td:last-child { text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; }
.price-table .note { display: block; font-size: .82rem; color: var(--muted); font-weight: 400; }

/* score panel */
.scorecard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem 1.5rem;
  margin: 2.5rem 0;
}
.scorecard h2 { font-size: 1.3rem; margin-bottom: 1.1rem; }
.bar-row { margin-bottom: 1rem; }
.bar-row:last-of-type { margin-bottom: 0; }
.bar-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .9rem; margin-bottom: .3rem; color: var(--ink-soft);
}
.bar-label b { font-variant-numeric: tabular-nums; color: var(--ink); }
.bar-track { height: 10px; background: var(--bg-sunk); border-radius: 100px; overflow: hidden; }
.bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--wine-deep), var(--wine-lift));
  border-radius: 100px;
}

.overall {
  display: flex; align-items: center; gap: 1.1rem;
  margin-top: 1.6rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.overall-num {
  font-family: var(--font-display);
  font-size: 3.2rem; line-height: .9; color: var(--wine-lift);
  border: 3px solid var(--wine); border-radius: var(--radius);
  padding: .6rem .8rem .5rem;
  display: flex; align-items: baseline;
}
.overall-num span { font-size: 1.1rem; }
.overall-text { font-size: .95rem; color: var(--muted); }
.overall-text strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }

/* reader vote */
.vote-box {
  margin-top: 1.5rem; padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}
.vote-box h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.vote-box .hint { font-size: .88rem; color: var(--muted); margin-bottom: .7rem; }
.stars { display: inline-flex; gap: .2rem; }
.stars button {
  background: none; border: 0; padding: .15rem; cursor: pointer;
  line-height: 0; color: var(--line-strong);
}
.stars button svg { width: 30px; height: 30px; fill: currentColor; }
.stars button:hover, .stars button.lit { color: var(--brass); }
.stars[data-locked="true"] button { cursor: default; }
.vote-result {
  display: flex; align-items: center; gap: .6rem;
  margin-top: .6rem; font-size: .92rem; color: var(--muted);
}
.vote-result b { color: var(--ink); font-size: 1.1rem; font-variant-numeric: tabular-nums; }
.vote-msg { font-size: .88rem; color: var(--brass); min-height: 1.2em; }

/* updates timeline */
.updates { margin: 2.5rem 0; }
.updates ol { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); }
.updates li { position: relative; padding: 0 0 1.6rem 1.4rem; }
.updates li::before {
  content: ""; position: absolute; left: -7px; top: .45rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--wine); border: 2px solid var(--bg);
}
.updates time {
  display: block; font-family: var(--font-display);
  font-size: .85rem; letter-spacing: .05em; color: var(--muted);
  margin-bottom: .15rem;
}
.updates h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.updates p:last-child { margin-bottom: 0; }

/* ---------- Sidebar / offer rail ---------- */
.rail { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 1.25rem; }
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem 1.35rem;
  box-shadow: var(--shadow);
}
.panel > h2, .panel > h3 {
  font-size: 1.05rem; letter-spacing: .06em; text-transform: uppercase;
  padding-bottom: .55rem; margin-bottom: .9rem;
  border-bottom: 2px solid var(--wine);
}
.panel ul { list-style: none; margin: 0; padding: 0; }
.panel li { padding: .3rem 0; border-bottom: 1px solid var(--line); }
.panel li:last-child { border-bottom: 0; }
.panel li a { text-decoration: none; color: var(--ink-soft); font-size: .95rem; }
.panel li a:hover { color: var(--wine-lift); }

.offer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .9rem 1rem 1rem;
  margin-bottom: .8rem;
  background: var(--surface-alt);
  position: relative;
}
.offer:last-of-type { margin-bottom: 0; }
.offer-badge {
  position: absolute; top: -9px; left: 1rem;
  background: var(--brass); color: #241800;
  font-family: var(--font-display); font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .12rem .5rem; border-radius: 2px;
}
.offer h4 { font-family: var(--font-display); font-size: 1.05rem; margin: .2rem 0 .4rem; font-weight: 500; }
.offer-price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .55rem; }
.offer-price b { font-size: 1.5rem; font-family: var(--font-display); color: var(--wine-lift); }
.offer-price del { color: var(--muted); font-size: .95rem; }
.offer-note { font-size: .84rem; color: var(--muted); margin: .5rem 0 0; }

.sidebar-shot { border-radius: var(--radius); overflow: hidden; margin-bottom: .9rem; }
.sidebar-shot img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.mini-list li { display: flex; gap: .7rem; align-items: center; padding: .55rem 0; }
.mini-list img { width: 68px; height: 48px; object-fit: cover; border-radius: 3px; flex: 0 0 auto; }
.mini-list .mini-score {
  margin-left: auto; font-family: var(--font-display);
  color: var(--wine-lift); font-size: .95rem;
}

/* ---------- Niche index ---------- */
.niche-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: .6rem; }
.niche-tile {
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  padding: .7rem .9rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); text-decoration: none; color: var(--ink);
}
.niche-tile:hover { border-color: var(--wine); color: var(--wine-lift); }
.niche-tile span { color: var(--muted); font-size: .85rem; font-variant-numeric: tabular-nums; }

/* ---------- Forms ---------- */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .93rem; margin-bottom: .3rem; }
.field .help { font-size: .85rem; color: var(--muted); margin-top: .25rem; }
input[type=text], input[type=url], input[type=email], input[type=search],
input[type=number], input[type=password], input[type=date], select, textarea {
  width: 100%; padding: .62rem .75rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface); color: var(--ink);
  font: inherit; font-size: .97rem;
}
textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
input:focus, select:focus, textarea:focus { border-color: var(--wine); outline-offset: 1px; }

.notice {
  padding: .85rem 1rem; border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--surface-alt);
  margin-bottom: 1.4rem; font-size: .95rem;
}
.notice.good { border-color: #3E8E5A; background: rgba(62,142,90,.10); }
.notice.bad  { border-color: #C0392B; background: rgba(192,57,43,.10); }

.empty {
  text-align: center; padding: 4rem 1rem;
  border: 1px dashed var(--line-strong); border-radius: var(--radius-lg);
  color: var(--muted);
}
.empty h2 { color: var(--ink); }

/* ---------- Pager ---------- */
.pager { display: flex; flex-wrap: wrap; gap: .35rem; justify-content: center; margin-top: 3rem; }
.pager a {
  min-width: 42px; padding: .5rem .7rem; text-align: center;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  text-decoration: none; color: var(--ink-soft);
  font-family: var(--font-display); letter-spacing: .03em;
}
.pager a:hover { border-color: var(--wine); color: var(--wine-lift); }
.pager a.is-current { background: var(--wine); border-color: var(--wine); color: #fff; }
.pager-gap { padding: .5rem .2rem; color: var(--muted); }

/* ---------- Footer ---------- */
.footer {
  background: var(--chrome); color: var(--chrome-ink);
  padding: 2.75rem 0 2rem; margin-top: 4rem;
}
.footer-cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer h4 {
  font-size: .95rem; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; margin-bottom: .8rem;
}
.footer p { color: rgba(255,255,255,.62); font-size: .93rem; max-width: 46ch; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { padding: .18rem 0; }
.footer a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .93rem; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer-base {
  padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .8rem;
  justify-content: space-between; font-size: .85rem; color: rgba(255,255,255,.45);
}

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(9,7,11,.94);
  display: grid; place-items: center; padding: 1.5rem;
  backdrop-filter: blur(6px);
}
.age-gate[hidden] { display: none; }
.age-card {
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  max-width: 460px; padding: 2rem; text-align: center;
}
.age-card h2 { margin-bottom: .6rem; }
.age-card p { color: var(--muted); font-size: .95rem; }
.age-actions { display: flex; gap: .7rem; justify-content: center; margin-top: 1.2rem; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(9,7,11,.92);
  display: grid; place-items: center; padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 88vh; width: auto; border-radius: var(--radius); }
.lightbox .close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: 0; color: #fff; font-size: 2rem; cursor: pointer;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .review-layout { grid-template-columns: 1fr; }
  .rail { position: static; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: inline-grid; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--chrome);
    flex-direction: column; align-items: stretch;
    padding: .5rem 1rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .masthead.nav-open .nav { display: flex; }
  .nav a, .nav button.navlink { width: 100%; justify-content: flex-start; }
  .menu-panel {
    position: static; width: auto; columns: 2 120px;
    background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12);
    box-shadow: none; margin-bottom: .5rem;
  }
  .menu-panel a { color: rgba(255,255,255,.8); }
  .masthead-bar { position: relative; }
  .grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .overall-num { font-size: 2.6rem; }
  .gallery-strip img { width: 92px; height: 62px; }
}

@media print {
  .masthead, .footer, .rail, .ticker, .pager, .vote-box { display: none; }
  body { background: #fff; color: #000; }
}

/* Row of join / discount / tour buttons under a review */
.btn-row {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin: 1.8rem 0;
  padding: 1.1rem 0;
  border-block: 1px solid var(--line);
}
@media (max-width: 560px) {
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
}
