/* CharityKitchen — luxury gourmet (EN) */
:root {
  --bg-deep: #0c0b09;
  --bg-elevated: #151311;
  --bg-card: #1a1815;
  --border-subtle: rgba(201, 169, 98, 0.22);
  --gold: #c9a962;
  --gold-bright: #e8d5a3;
  --gold-dim: #8a7544;
  --cream: #f5f0e8;
  --cream-muted: rgba(245, 240, 232, 0.72);
  --ink: #0c0b09;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 88px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.45);
  --header-bar: rgba(8, 7, 6, 0.94);
  --header-bar-scrolled: rgba(6, 5, 4, 0.97);
  --header-line: rgba(201, 169, 98, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

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

.skip-link {
  position: absolute;
  top: -120px;
  left: 1rem;
  z-index: 10020;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: var(--radius);
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--gold-bright);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
.burger:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.form input:focus-visible,
.form textarea:focus-visible,
.form select:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

/* Mobile menu: dim page behind drawer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1004;
  background: rgba(2, 2, 1, 0.68);
  backdrop-filter: blur(12px) saturate(1.05);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.45s var(--ease-out),
    visibility 0.45s var(--ease-out);
}

body.menu-open::before {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

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

a:hover {
  color: var(--cream);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--cream-muted);
}

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.section--reviews .container {
  width: min(1200px, 96vw);
}

.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  position: relative;
}

.section--tight {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section--below-header {
  padding-top: calc(var(--header-h) + 2.5rem);
}

.section__eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.section__head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section__head--center {
  text-align: center;
  margin-inline: auto;
}

/* Header — distinct bar; does not fade into hero */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--header-bar);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  border-bottom: 1px solid var(--header-line);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 169, 98, 0.15) 15%,
    rgba(232, 213, 163, 0.55) 50%,
    rgba(201, 169, 98, 0.15) 85%,
    transparent 100%
  );
  opacity: 0.9;
}

.site-header.is-scrolled {
  background: var(--header-bar-scrolled);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  border-bottom-color: rgba(201, 169, 98, 0.38);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.65),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.site-header__inner {
  width: min(1180px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.logo span {
  font-size: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-header .logo {
  font-size: 1.72rem;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  border-left: 3px solid var(--gold);
  padding-left: 0.9rem;
  line-height: 1;
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.site-header a.logo:hover {
  color: var(--gold-bright);
  border-left-color: var(--gold-bright);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem 1.5rem;
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.78);
  position: relative;
  padding: 0.55rem 0.15rem;
  transition: color 0.25s var(--ease-out);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.nav__link:hover {
  color: var(--cream);
}

.nav__link:hover::after {
  opacity: 0.55;
  transform: scaleX(1);
}

.nav__link.is-active {
  color: var(--gold-bright);
}

.nav__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 10px;
  background: rgba(18, 16, 14, 0.85);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  z-index: 1012;
  transition:
    border-color 0.3s var(--ease-out),
    background 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    transform 0.25s var(--ease-out);
}

.burger:hover {
  border-color: rgba(232, 213, 163, 0.45);
  background: rgba(22, 20, 17, 0.95);
}

.burger.is-open {
  border-color: rgba(201, 169, 98, 0.55);
  background: rgba(22, 19, 16, 0.96);
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.18),
    0 10px 32px rgba(0, 0, 0, 0.5);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 990px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(420px, 100%);
    max-width: 100%;
    z-index: 1006;
    padding: calc(var(--header-h) + 1.75rem) 1.5rem 2rem 1.65rem;
    background:
      linear-gradient(165deg, rgba(18, 15, 12, 0.98) 0%, rgba(10, 9, 7, 0.99) 42%, rgba(6, 5, 4, 1) 100%),
      radial-gradient(ellipse 120% 80% at 100% 0%, rgba(201, 169, 98, 0.09) 0%, transparent 55%);
    border-left: 1px solid rgba(201, 169, 98, 0.28);
    border-radius: 1.35rem 0 0 1.35rem;
    box-shadow:
      -28px 0 72px rgba(0, 0, 0, 0.55),
      -1px 0 0 rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(24px) saturate(1.12);
    -webkit-backdrop-filter: blur(24px) saturate(1.12);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    transform: translateX(104%);
    transition: transform 0.52s var(--ease-out);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav__list::before {
    content: "Menu";
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 5vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(245, 240, 232, 0.96);
    margin-bottom: 1.35rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.22);
  }

  .nav.is-open .nav__list li {
    animation: navDrawerLinkIn 0.48s var(--ease-out) backwards;
  }

  .nav.is-open .nav__list li:nth-child(1) {
    animation-delay: 0.06s;
  }
  .nav.is-open .nav__list li:nth-child(2) {
    animation-delay: 0.11s;
  }
  .nav.is-open .nav__list li:nth-child(3) {
    animation-delay: 0.16s;
  }
  .nav.is-open .nav__list li:nth-child(4) {
    animation-delay: 0.21s;
  }
  .nav.is-open .nav__list li:nth-child(5) {
    animation-delay: 0.26s;
  }

  .nav__link {
    display: block;
    padding: 0.95rem 1rem 0.95rem 1.1rem;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.88);
    border-bottom: none;
    border-radius: 0.7rem;
    border-left: 3px solid transparent;
    transition:
      background 0.28s var(--ease-out),
      color 0.28s var(--ease-out),
      border-color 0.28s var(--ease-out),
      transform 0.28s var(--ease-out);
  }

  .nav__link:hover {
    color: var(--cream);
    background: rgba(201, 169, 98, 0.09);
    border-left-color: rgba(201, 169, 98, 0.45);
    transform: translateX(4px);
  }

  .nav__link.is-active {
    color: var(--gold-bright);
    background: rgba(201, 169, 98, 0.07);
    border-left-color: var(--gold);
  }

  .nav__link::after {
    display: none;
  }
}

@keyframes navDrawerLinkIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 990px) and (prefers-reduced-motion: reduce) {
  .nav {
    transition-duration: 0.01ms;
  }

  .nav.is-open .nav__list li {
    animation: none;
  }

  body::before {
    transition-duration: 0.01ms;
  }
}

/* ≥991px: horizontal nav in the header bar (nav is a sibling of <header> in DOM) */
@media (min-width: 991px) {
  .nav {
    position: fixed;
    top: 0;
    right: calc((100vw - min(1180px, 92vw)) / 2);
    left: auto;
    bottom: auto;
    width: auto;
    max-width: none;
    height: var(--header-h);
    padding: 0;
    margin: 0;
    z-index: 1011;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none !important;
    transition: none;
    overflow: visible;
    overscroll-behavior: auto;
  }

  .nav.is-open {
    transform: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #a88b4a 100%);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
}

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

.btn--ghost {
  background: transparent;
  border-color: var(--border-subtle);
  color: var(--cream);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video,
.hero__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      105deg,
      rgba(12, 11, 9, 0.92) 0%,
      rgba(12, 11, 9, 0.55) 45%,
      rgba(12, 11, 9, 0.35) 100%
    ),
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 98, 0.12), transparent 55%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1180px, 92vw);
  margin-inline: auto;
  padding: 3rem 0 4rem;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  color: var(--cream-muted);
}

.hero__line {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0 1.25rem;
}

/* Grids */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

@media (max-width: 900px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.3s var(--ease-out);
}

.card:hover {
  border-color: rgba(201, 169, 98, 0.45);
  transform: translateY(-4px);
}

.card__img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.card__body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__meta {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

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

.card__actions {
  margin-top: auto;
  padding-top: 1.25rem;
}

/* Gift tier cards (home #gift) */
.gift-tiers {
  gap: clamp(1.35rem, 3vw, 2rem);
  align-items: stretch;
}

.card--gift-tier {
  position: relative;
  overflow: visible;
  background: linear-gradient(
    165deg,
    rgba(34, 31, 27, 0.98) 0%,
    var(--bg-card) 42%,
    rgba(18, 16, 14, 1) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.32);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 28px 72px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s, transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.card--gift-tier:hover {
  border-color: rgba(201, 169, 98, 0.55);
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.15),
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 40px 90px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(201, 169, 98, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card--gift-tier__hero {
  position: relative;
  min-height: clamp(100px, 22vw, 132px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 120% at 50% -10%, rgba(201, 169, 98, 0.22) 0%, transparent 58%),
    linear-gradient(180deg, rgba(42, 38, 32, 0.55) 0%, rgba(22, 20, 18, 0.2) 100%);
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.card--gift-tier__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04) 50%, transparent);
  pointer-events: none;
}

.card--gift-tier__hero span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 9vw, 4.75rem);
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 2px 24px rgba(201, 169, 98, 0.35);
  letter-spacing: 0.02em;
}

.card--gift-tier--starter .card--gift-tier__hero {
  background:
    radial-gradient(ellipse 85% 100% at 30% 0%, rgba(140, 160, 180, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 90% 120% at 50% -10%, rgba(201, 169, 98, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, rgba(32, 30, 28, 0.65) 0%, rgba(22, 20, 18, 0.25) 100%);
}

.card--gift-tier--starter .card--gift-tier__hero span {
  color: rgba(212, 196, 160, 0.95);
}

.card--gift-tier--luxury .card--gift-tier__hero {
  background:
    radial-gradient(ellipse 100% 130% at 50% -15%, rgba(232, 213, 163, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 90% 120% at 50% -10%, rgba(201, 169, 98, 0.28) 0%, transparent 58%),
    linear-gradient(180deg, rgba(48, 42, 34, 0.7) 0%, rgba(22, 20, 18, 0.3) 100%);
}

.card--gift-tier--luxury .card--gift-tier__hero span {
  background: linear-gradient(165deg, var(--gold-bright) 0%, var(--gold) 55%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 4px 20px rgba(201, 169, 98, 0.25));
}

.card--gift-tier--featured {
  z-index: 1;
  border-color: rgba(201, 169, 98, 0.52);
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.22),
    0 8px 28px rgba(201, 169, 98, 0.12),
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 40px 88px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card--gift-tier--featured:hover {
  border-color: rgba(232, 213, 163, 0.45);
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.3),
    0 12px 36px rgba(201, 169, 98, 0.18),
    0 28px 72px rgba(0, 0, 0, 0.48),
    0 0 56px rgba(201, 169, 98, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card--gift-tier--featured .card--gift-tier__hero {
  background:
    radial-gradient(ellipse 95% 140% at 50% -20%, rgba(232, 213, 163, 0.25) 0%, transparent 52%),
    radial-gradient(ellipse 80% 100% at 50% 30%, rgba(201, 169, 98, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(55, 48, 38, 0.85) 0%, rgba(28, 25, 22, 0.45) 100%);
}

.card--gift-tier--featured .card--gift-tier__hero span {
  color: var(--gold-bright);
  text-shadow: 0 0 36px rgba(232, 213, 163, 0.35);
}

.card--gift-tier__badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -42%);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, #f0e4c8 0%, var(--gold) 50%, #a68b4a 100%);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  box-shadow:
    0 4px 16px rgba(201, 169, 98, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.35) inset;
  white-space: nowrap;
}

.card--gift-tier .card__body {
  padding: 1.5rem 1.65rem 1.65rem;
}

.card--gift-tier .card__meta {
  margin-bottom: 0.4rem;
}

.card--gift-tier h3 {
  font-size: clamp(1.4rem, 2.8vw, 1.65rem);
  margin-bottom: 0.6rem;
}

@media (min-width: 901px) {
  .gift-tiers .card--gift-tier--featured {
    transform: scale(1.03);
  }

  .gift-tiers .card--gift-tier--featured:hover {
    transform: scale(1.03) translateY(-8px);
  }
}

@media (max-width: 900px) {
  .gift-tiers .card--gift-tier--featured {
    transform: none;
  }

  .gift-tiers .card--gift-tier--featured:hover {
    transform: translateY(-8px);
  }
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.split__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Features list */
.features {
  display: grid;
  gap: 1.25rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  background: rgba(26, 24, 21, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.feature__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--gold);
  font-family: var(--font-display);
}

/* Forms */
.form {
  display: grid;
  gap: 1.1rem;
  max-width: 520px;
}

.form-panel {
  max-width: min(560px, 100%);
  margin-inline: auto;
  padding: clamp(1.85rem, 5vw, 2.5rem) clamp(1.5rem, 4vw, 2.15rem);
  background: linear-gradient(
    165deg,
    rgba(36, 33, 29, 0.97) 0%,
    rgba(24, 22, 19, 0.98) 42%,
    rgba(14, 13, 11, 1) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 20px 56px rgba(0, 0, 0, 0.42),
    0 0 80px rgba(201, 169, 98, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
}

.form-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 42%);
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
  opacity: 0.9;
  pointer-events: none;
}

.form-panel .form {
  max-width: none;
  margin: 0;
}

.form-section__bullets {
  max-width: 520px;
  margin: 0 auto 2.25rem;
  padding-left: 1.35rem;
  text-align: left;
}

.form-section__bullets li {
  margin-bottom: 0.35rem;
}

.form-section__bullets li:last-child {
  margin-bottom: 0;
}

.form label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.form > div {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.9rem 1.05rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--cream);
  background: rgba(10, 9, 8, 0.72);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.form-panel .form input,
.form-panel .form textarea,
.form-panel .form select {
  background: rgba(8, 7, 6, 0.85);
}

.form textarea {
  min-height: 128px;
  resize: vertical;
}

.form input:hover,
.form textarea:hover,
.form select:hover {
  border-color: rgba(201, 169, 98, 0.35);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: rgba(201, 169, 98, 0.65);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

.form-panel .form .btn[type="submit"] {
  width: 100%;
  margin-top: 0.25rem;
  justify-content: center;
}

.form-panel .form .btn {
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}

/* Form success modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease-out), visibility 0.28s var(--ease-out);
  pointer-events: none;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 4, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: clamp(1.85rem, 4vw, 2.35rem);
  background: linear-gradient(
    165deg,
    rgba(36, 32, 28, 0.98) 0%,
    rgba(20, 18, 16, 0.99) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.32);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 28px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
}

.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: var(--radius);
  background: rgba(12, 11, 9, 0.6);
  color: var(--cream-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.modal__close:hover {
  border-color: rgba(201, 169, 98, 0.45);
  color: var(--cream);
  background: rgba(18, 16, 14, 0.9);
}

.modal__message {
  margin: 0 0 1.5rem;
  padding: 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--cream);
  text-align: center;
}

.modal__ok {
  min-width: 140px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.filter-bar label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-muted);
}

.filter-bar input[type="search"],
.filter-bar select {
  min-width: 200px;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--cream);
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}

/* Articles listing — toolbar & editorial cards */
.articles-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(14, 13, 11, 0.96) 40%, var(--bg-deep) 100%);
}

.articles-filter {
  margin-bottom: clamp(2rem, 4.5vw, 2.85rem);
  padding: clamp(1.4rem, 3.5vw, 1.9rem) clamp(1.35rem, 3vw, 1.85rem);
  background: linear-gradient(
    155deg,
    rgba(38, 34, 30, 0.96) 0%,
    rgba(22, 20, 18, 0.98) 45%,
    rgba(12, 11, 9, 1) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.42),
    0 22px 56px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

.articles-filter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(240px, 55%);
  height: 3px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
  opacity: 0.88;
  pointer-events: none;
}

.articles-filter__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 2.5vw, 1.65rem);
  align-items: end;
}

@media (max-width: 900px) {
  .articles-filter__inner {
    grid-template-columns: 1fr;
  }
}

.articles-filter__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.articles-filter__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.articles-filter__input-wrap {
  position: relative;
}

.articles-filter__input-wrap::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23c9a962' stroke-width='1.35' stroke-opacity='0.75'%3E%3Ccircle cx='7.5' cy='7.5' r='4.75'/%3E%3Cpath d='M11 11l4 4'/%3E%3C/svg%3E")
    center / contain no-repeat;
  pointer-events: none;
  opacity: 0.9;
}

.articles-filter__input-wrap input[type="search"] {
  width: 100%;
  margin: 0;
  padding: 0.82rem 1rem 0.82rem 2.65rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--cream);
  background: rgba(8, 7, 6, 0.88);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: 999px;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.articles-filter__input-wrap input[type="search"]::placeholder {
  color: rgba(245, 240, 232, 0.38);
}

.articles-filter__input-wrap input[type="search"]:hover {
  border-color: rgba(201, 169, 98, 0.38);
}

.articles-filter__input-wrap input[type="search"]:focus {
  outline: none;
  border-color: rgba(201, 169, 98, 0.65);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

.articles-filter__select-wrap {
  position: relative;
}

.articles-filter__select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a962' stroke-width='2' stroke-opacity='0.85'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
    center / contain no-repeat;
  pointer-events: none;
  opacity: 0.9;
}

.articles-filter select {
  width: 100%;
  margin: 0;
  padding: 0.78rem 2.65rem 0.78rem 1.05rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  background: rgba(8, 7, 6, 0.88);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.articles-filter select:hover {
  border-color: rgba(201, 169, 98, 0.4);
}

.articles-filter select:focus {
  outline: none;
  border-color: rgba(201, 169, 98, 0.65);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

/* Tastings page — toolbar + event cards */
.section--tastings {
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(14, 13, 11, 0.98) 42%, var(--bg-deep) 100%);
}

.tastings-filter {
  margin-bottom: clamp(2rem, 4.5vw, 2.85rem);
  padding: clamp(1.4rem, 3.5vw, 1.9rem) clamp(1.35rem, 3vw, 1.85rem);
  background: linear-gradient(
    155deg,
    rgba(38, 34, 30, 0.96) 0%,
    rgba(22, 20, 18, 0.98) 45%,
    rgba(12, 11, 9, 1) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.42),
    0 22px 56px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

.tastings-filter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(220px, 50%);
  height: 3px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
  opacity: 0.88;
  pointer-events: none;
}

.tastings-filter__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.65rem);
  align-items: end;
  max-width: 640px;
  margin-inline: auto;
}

@media (max-width: 560px) {
  .tastings-filter__inner {
    grid-template-columns: 1fr;
  }
}

.tastings-filter__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.tastings-filter__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.tastings-filter__select-wrap {
  position: relative;
}

.tastings-filter__select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a962' stroke-width='2' stroke-opacity='0.85'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
    center / contain no-repeat;
  pointer-events: none;
  opacity: 0.9;
}

.tastings-filter select {
  width: 100%;
  margin: 0;
  padding: 0.78rem 2.65rem 0.78rem 1.05rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  background: rgba(8, 7, 6, 0.88);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.tastings-filter select:hover {
  border-color: rgba(201, 169, 98, 0.4);
}

.tastings-filter select:focus {
  outline: none;
  border-color: rgba(201, 169, 98, 0.65);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

.tastings-grid {
  gap: clamp(1.65rem, 3.5vw, 2.15rem);
  align-items: stretch;
}

.card--tasting {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    rgba(34, 31, 27, 0.98) 0%,
    var(--bg-card) 40%,
    rgba(14, 12, 10, 1) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.38),
    0 16px 44px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.card--tasting::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(72%, 220px);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.75), var(--gold-bright), rgba(201, 169, 98, 0.75), transparent);
  opacity: 0.75;
  z-index: 3;
  pointer-events: none;
}

.card--tasting:hover {
  border-color: rgba(201, 169, 98, 0.52);
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.14),
    0 26px 64px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(201, 169, 98, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.card--tasting__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card--tasting .card__img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.card--tasting:hover .card__img {
  transform: scale(1.06);
}

.card--tasting__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, transparent 25%, rgba(6, 5, 4, 0.15) 55%, rgba(6, 5, 4, 0.82) 100%);
  pointer-events: none;
}

.card--tasting__tags {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  z-index: 1;
}

.tasting-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.8rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.95);
  background: rgba(5, 4, 3, 0.68);
  border: 1px solid rgba(201, 169, 98, 0.38);
  border-radius: 999px;
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.tasting-tag--accent {
  color: var(--gold-bright);
  border-color: rgba(232, 213, 163, 0.42);
  background: rgba(18, 15, 12, 0.75);
}

.card--tasting .card__body {
  position: relative;
  z-index: 2;
  padding: 1.4rem 1.45rem 1.5rem;
}

.card--tasting .card__meta {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.45rem;
  color: rgba(232, 213, 163, 0.88);
}

.card--tasting h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin: 0 0 0.85rem;
  color: var(--cream);
}

.card--tasting__presenter {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--cream-muted);
  margin: 0 0 0.75rem;
  padding: 0.75rem 0.85rem;
  background: rgba(0, 0, 0, 0.22);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 98, 0.12);
}

.card--tasting__presenter-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.card--tasting__lede {
  font-size: 0.92rem;
  line-height: 1.58;
  color: rgba(245, 240, 232, 0.78);
  margin: 0 0 0.5rem;
}

.card--tasting .card__actions {
  padding-top: 1.1rem;
  margin-top: 0.35rem;
  border-top: 1px solid rgba(201, 169, 98, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .card--tasting:hover {
    transform: none;
  }

  .card--tasting:hover .card__img {
    transform: none;
  }
}

.articles-grid {
  gap: clamp(1.65rem, 3.5vw, 2.15rem);
}

.card--article {
  position: relative;
  background: linear-gradient(180deg, rgba(32, 29, 26, 0.55) 0%, var(--bg-card) 38%);
  border: 1px solid rgba(201, 169, 98, 0.22);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 18px 48px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.card--article::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  z-index: 1;
}

.card--article .card__img {
  transition: transform 0.65s var(--ease-out);
}

.card--article:hover {
  border-color: rgba(201, 169, 98, 0.48);
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.12),
    0 28px 64px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(201, 169, 98, 0.06);
}

.card--article:hover .card__img {
  transform: scale(1.045);
}

.card--article .card__body {
  position: relative;
  z-index: 2;
  padding: 1.45rem 1.55rem 1.55rem;
}

.card--article .card__meta {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  opacity: 0.95;
}

.card--article h3 {
  font-size: clamp(1.28rem, 2.2vw, 1.52rem);
  margin-bottom: 0.55rem;
  color: var(--cream);
}

.card--article .card__body > p:not(.card__meta) {
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.card--article .share-row {
  margin-top: 1.15rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(201, 169, 98, 0.14);
  justify-content: space-between;
  gap: 0.65rem;
}

@media (prefers-reduced-motion: reduce) {
  .card--article,
  .card--article .card__img {
    transition-duration: 0.01ms;
  }

  .card--article:hover {
    transform: none;
  }

  .card--article:hover .card__img {
    transform: none;
  }
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
}

.carousel__track {
  display: flex;
  width: 100%;
  transition: transform 0.5s var(--ease-out);
}

.carousel__slide {
  flex: 0 0 calc(100% / var(--carousel-slides, 1));
  min-width: 0;
  padding: 2.5rem clamp(1.5rem, 4vw, 3.5rem);
  box-sizing: border-box;
}

.carousel__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.45;
  color: var(--cream);
  margin: 0 0 1rem;
}

.carousel__author {
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.carousel__nav {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: 0.5rem;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(12, 11, 9, 0.85);
  color: var(--cream);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}

.carousel__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-subtle);
  border: none;
  padding: 0;
  cursor: pointer;
}

.carousel__dot.is-active {
  background: var(--gold);
}

/* Testimonials carousel — premium frame */
.section--reviews {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 169, 98, 0.07), transparent 55%);
}

.carousel--testimonials {
  width: 100%;
  max-width: min(1080px, 96vw);
  margin-inline: auto;
  border: none;
  background: linear-gradient(
    145deg,
    rgba(22, 20, 17, 0.98) 0%,
    rgba(14, 12, 10, 0.99) 50%,
    rgba(18, 16, 13, 0.98) 100%
  );
  border-radius: calc(var(--radius-lg) + 4px);
  padding: 3px;
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.25),
    0 24px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.carousel--testimonials::before {
  content: "“";
  position: absolute;
  top: 0.2rem;
  left: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.25rem);
  line-height: 1;
  color: rgba(201, 169, 98, 0.12);
  pointer-events: none;
  z-index: 0;
}

/* Prev / next sit beside viewport — no overlap with cards */
.carousel--testimonials .carousel__frame {
  display: grid;
  grid-template-columns: min-content minmax(0, 1fr) min-content;
  gap: 0.5rem 0.85rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.carousel--testimonials .carousel__viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-deep);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
}

.carousel--testimonials .carousel__track {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  min-width: min-content;
  transition: transform 0.65s var(--ease-out);
  will-change: transform;
}

.carousel--testimonials .carousel__slide {
  flex-shrink: 0;
  min-width: 0;
  box-sizing: border-box;
  padding: clamp(0.65rem, 1.5vw, 0.9rem) clamp(0.35rem, 1.2vw, 0.5rem) clamp(1rem, 2vw, 1.35rem);
  min-height: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.carousel__slide-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 38rem;
  margin-inline: auto;
}

/* Testimonial copy — layered card + typography (aligned from top) */
.carousel--testimonials .carousel__slide-inner {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: clamp(1rem, 2.2vw, 1.35rem) clamp(0.65rem, 1.5vw, 1rem) clamp(0.85rem, 1.8vw, 1.15rem);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(165deg, rgba(38, 34, 29, 0.55) 0%, rgba(16, 14, 12, 0.75) 45%, rgba(10, 9, 8, 0.85) 100%);
  border: 1px solid rgba(201, 169, 98, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 12px 40px rgba(0, 0, 0, 0.35);
}


.carousel__stars {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin: 0 0 0.85rem;
  text-shadow: 0 0 24px rgba(201, 169, 98, 0.35);
}

.carousel--testimonials .carousel__stars {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0.65rem;
  flex-shrink: 0;
  padding: 0.32rem 0.85rem 0.28rem;
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  color: #e8d5a3;
  background: radial-gradient(ellipse 120% 100% at 50% 0%, rgba(201, 169, 98, 0.18), rgba(12, 11, 9, 0.65));
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.carousel__tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(232, 213, 163, 0.85);
  margin: 0 0 1.15rem;
}

.carousel--testimonials .carousel__tag {
  display: inline-block;
  margin: 0 0 0.7rem;
  flex-shrink: 0;
  padding: 0.32rem 0.85rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(245, 240, 232, 0.88);
  background: rgba(201, 169, 98, 0.09);
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.carousel--testimonials .carousel__quote {
  position: relative;
  width: 100%;
  font-size: clamp(0.82rem, 1.35vw, 1.15rem);
  line-height: 1.48;
  font-style: italic;
  font-weight: 500;
  margin: 0 0 0.75rem;
  padding: 0.75rem 0.25rem 0;
  flex-shrink: 0;
  color: rgba(252, 250, 246, 0.98);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  text-wrap: balance;
  font-feature-settings: "kern" 1, "liga" 1;
  border-top: 1px solid rgba(201, 169, 98, 0.18);
}

.carousel--testimonials .carousel__author {
  position: relative;
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 213, 163, 0.92);
  margin: 0;
  padding: 0.65rem 1rem 0;
  flex-shrink: 0;
}

.carousel--testimonials .carousel__author::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 55%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 98, 0.15) 15%,
    rgba(232, 213, 163, 0.65) 50%,
    rgba(201, 169, 98, 0.15) 85%,
    transparent
  );
}

.carousel--testimonials .carousel__author::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  margin: 0.4rem auto 0;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  opacity: 0.65;
  border-radius: 1px;
}

.carousel--testimonials .carousel__btn--outer.carousel__btn--testimonials {
  position: relative;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  font-size: 1.45rem;
  line-height: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(26, 24, 21, 0.95), rgba(12, 11, 9, 0.98));
  border: 1px solid rgba(201, 169, 98, 0.45);
  color: var(--gold-bright);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.carousel--testimonials .carousel__btn--outer.carousel__btn--testimonials:hover {
  background: rgba(201, 169, 98, 0.12);
  border-color: var(--gold-bright);
  color: var(--cream);
}

.carousel__dots--testimonials {
  position: relative;
  z-index: 2;
  padding: 0.85rem 1rem 0.15rem;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.carousel__dots--testimonials .carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.25);
  transition: width 0.35s var(--ease-out), background 0.25s, border-radius 0.35s;
}

.carousel__dots--testimonials .carousel__dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-bright));
}

@media (max-width: 640px) {
  .carousel--testimonials .carousel__frame {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.6rem 1rem;
  }

  .carousel--testimonials .carousel__frame .carousel__viewport {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .carousel--testimonials .carousel__frame [data-carousel-prev] {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }

  .carousel--testimonials .carousel__frame [data-carousel-next] {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .carousel--testimonials .carousel__slide {
    min-height: 0;
  }

  .carousel--testimonials::before {
    font-size: 3.5rem;
    left: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel--testimonials .carousel__track {
    transition-duration: 0.01ms;
  }
}

/* Article card share */
.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
}

.btn--small {
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
}

/* Footer */
.site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(201, 169, 98, 0.18);
  background: linear-gradient(180deg, #0a0908 0%, #050504 100%);
  box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.35);
}

.site-footer__main {
  padding: clamp(2.5rem, 6vw, 3.75rem) 0 clamp(2rem, 4vw, 2.75rem);
  position: relative;
}

.site-footer__main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 40%);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.55), transparent);
  opacity: 0.85;
  pointer-events: none;
}

.site-footer__grid--top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  gap: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  align-items: start;
}

@media (max-width: 1024px) {
  .site-footer__grid--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-footer__grid--top {
    grid-template-columns: 1fr;
  }
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 0.85rem;
}

.site-footer__tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 28rem;
  margin: 0;
}

.site-footer__pay-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.site-footer__pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  padding: 0.4rem 0.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 98, 0.22);
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out);
}

.site-footer__pay-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 169, 98, 0.42);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 169, 98, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.site-footer__pay-svg {
  display: block;
  width: auto;
  height: 2rem;
  max-width: 3.65rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  vertical-align: middle;
}

.site-footer__pay-badge--mc .site-footer__pay-svg {
  height: 2.15rem;
  max-width: 4.1rem;
}

.site-footer__pay-badge--visa .site-footer__pay-svg {
  border-radius: 6px;
}

.site-footer__pay-badge--paypal .site-footer__pay-svg {
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__pay-badge:hover {
    transform: none;
  }
}

.site-footer__heading {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0 0 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.site-footer__address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--cream-muted);
  margin: 0 0 1rem;
}

.site-footer__phone {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-footer__phone a {
  color: var(--gold-bright);
}

.site-footer__phone a:hover {
  color: var(--cream);
}

.site-footer__hours {
  font-size: 0.82rem;
  margin: 0;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__links a {
  font-size: 0.94rem;
  color: var(--cream-muted);
  transition: color 0.2s var(--ease-out), padding-left 0.2s var(--ease-out);
}

.site-footer__links a:hover {
  color: var(--gold-bright);
  padding-left: 0.25rem;
}

.site-footer__map-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-top: clamp(1.75rem, 3vw, 2.25rem);
  margin-top: clamp(0.25rem, 1vw, 0.5rem);
  border-top: 1px solid rgba(201, 169, 98, 0.12);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.site-footer__map-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.85);
  margin: 0 auto 1rem;
  text-align: center;
  width: 100%;
  max-width: 36rem;
}

.site-footer__map {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.22);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  /* Responsive height from width (no max-height — it broke alignment with aspect-ratio) */
  aspect-ratio: 21 / 9;
  min-height: 11.5rem;
  background: rgba(0, 0, 0, 0.35);
}

.site-footer__map iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.site-footer__map-note {
  font-size: 0.82rem;
  margin: 0.85rem 0 0;
  text-align: center;
  width: 100%;
}

.site-footer__map-note a {
  color: var(--gold);
}

.site-footer__map-note a:hover {
  color: var(--gold-bright);
}

@media (max-width: 560px) {
  .site-footer__map {
    aspect-ratio: 4 / 3;
    min-height: 13rem;
  }
}

/* Strip before <footer> (Taste Game): same tone as footer */
.pre-footer-rg {
  background: linear-gradient(180deg, #0a0908 0%, #050504 100%);
  border-top: 1px solid rgba(201, 169, 98, 0.18);
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.28);
}

.pre-footer-rg .site-footer__rg {
  border-top: none;
  padding-top: 0.35rem;
}

.taste-game-legal {
  padding: clamp(1.35rem, 4vw, 2rem) 0 clamp(1rem, 2.5vw, 1.35rem);
}

.taste-game-disclaimer {
  max-width: 52rem;
  margin: 0 auto;
  padding: 1rem 1.15rem 1.25rem;
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
}

.taste-game-disclaimer__title {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.3;
}

.taste-game-disclaimer__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.62);
}

.taste-game-disclaimer__text strong {
  color: rgba(245, 240, 232, 0.82);
  font-weight: 600;
}

.site-footer__rg {
  padding: 1.25rem 0 1.35rem;
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-bottom {
  padding: 1.35rem 0 1.75rem;
  border-top: 1px solid rgba(201, 169, 98, 0.12);
  background: rgba(4, 3, 2, 0.85);
}

.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
}

.footer-bottom__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.footer-bottom__copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.42);
}

.footer-bottom__contact {
  margin: 0;
  font-size: 0.85rem;
}

.footer-bottom__contact a {
  color: rgba(245, 240, 232, 0.55);
}

.footer-bottom__contact a:hover {
  color: var(--gold-bright);
}

.footer-rg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
}

.footer-rg__label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 240, 232, 0.38);
}

.footer-rg__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.75rem 1rem;
}

.rg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.45rem 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: rgba(245, 240, 232, 0.92);
  font-size: 0.8125rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

.rg-badge--gamcare {
  border-color: rgba(0, 168, 107, 0.45);
  background: linear-gradient(
    165deg,
    rgba(0, 168, 107, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 55%,
    rgba(4, 3, 2, 0.4) 100%
  );
}

.rg-badge--bga {
  border-color: rgba(230, 126, 34, 0.5);
  background: linear-gradient(
    165deg,
    rgba(230, 126, 34, 0.14) 0%,
    rgba(255, 255, 255, 0.04) 55%,
    rgba(4, 3, 2, 0.4) 100%
  );
}

.rg-badge--age {
  cursor: default;
  border-color: rgba(200, 60, 70, 0.55);
  background: linear-gradient(
    165deg,
    rgba(200, 60, 70, 0.18) 0%,
    rgba(255, 255, 255, 0.04) 55%,
    rgba(4, 3, 2, 0.4) 100%
  );
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.875rem;
}

.rg-badge--age:hover {
  transform: none;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.rg-badge:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.rg-badge--gamcare:hover {
  border-color: rgba(0, 212, 130, 0.65);
  background: linear-gradient(
    165deg,
    rgba(0, 168, 107, 0.22) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.rg-badge--bga:hover {
  border-color: rgba(241, 160, 72, 0.75);
  background: linear-gradient(
    165deg,
    rgba(230, 126, 34, 0.24) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.rg-badge:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .footer-bottom__row {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .footer-rg__badges {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .rg-badge {
    width: min(100%, 16rem);
  }
}

.nowrap {
  white-space: nowrap;
}

/* Social — FB / Instagram / LinkedIn plates (network / site /) */
.social-plates {
  list-style: none;
  margin: 1.5rem auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.75rem 1rem;
  max-width: 720px;
}

.social-plates li {
  margin: 0;
}

.social-plate {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 3.15rem;
  padding: 0.55rem 1.1rem 0.55rem 0.55rem;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(145deg, rgba(28, 25, 22, 0.98) 0%, rgba(14, 12, 10, 0.99) 100%);
  border: 1px solid rgba(201, 169, 98, 0.32);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 10px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    border-color 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
}

.social-plate:hover {
  border-color: rgba(201, 169, 98, 0.55);
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.12),
    0 14px 36px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.social-plate:focus-visible {
  outline: none;
  border-color: rgba(232, 213, 163, 0.55);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.2);
}

.social-plate__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.85rem;
  height: 2.85rem;
  padding: 0.5rem;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold-bright) 0%, var(--gold) 55%, #9a7f3f 100%);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.social-plate__badge svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
  flex-shrink: 0;
}

.social-plate__badge--instagram {
  background: linear-gradient(145deg, #2a2520 0%, #1a1815 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 2px 10px rgba(0, 0, 0, 0.35);
}

.social-plate:hover .social-plate__badge:not(.social-plate__badge--instagram) {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 4px 14px rgba(201, 169, 98, 0.25);
  transform: scale(1.04);
}

.social-plate:hover .social-plate__badge--instagram {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 18px rgba(225, 48, 108, 0.2);
  transform: scale(1.04);
}

.social-plate__text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.35rem;
  font-size: 0.88rem;
  line-height: 1.35;
  text-align: left;
}

.social-plate__network {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 232, 0.92);
}

.social-plate__slash {
  color: rgba(201, 169, 98, 0.55);
  font-weight: 500;
  user-select: none;
}

.social-plate__site {
  font-weight: 500;
  color: var(--gold-bright);
  word-break: break-word;
}

@media (max-width: 520px) {
  .social-plates {
    flex-direction: column;
    align-items: center;
  }

  .social-plate {
    width: 100%;
    max-width: 340px;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-plate:hover {
    transform: none;
  }

  .social-plate:hover .social-plate__badge,
  .social-plate:hover .social-plate__badge--instagram {
    transform: none;
  }
}

/* Utilities */
.muted {
  color: var(--cream-muted);
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.bg-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #12100d 50%, var(--bg-deep) 100%);
}

.bg-elevated-section {
  background: var(--bg-elevated);
}

/* Page hero inner (subpages) */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 98, 0.08), transparent 60%);
}

.page-hero p {
  max-width: 560px;
  margin-inline: auto;
}

/* Article single — editorial layout */
.article-page {
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(16, 14, 12, 0.98) 42%, var(--bg-deep) 100%);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
}

.article-layout--solo {
  max-width: 720px;
  margin-inline: auto;
}

.article-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.28);
  margin-bottom: 2.25rem;
  position: relative;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.article-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.article-cover img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  margin-top: 2rem;
}

.legal-prose {
  max-width: 42rem;
  margin-inline: auto;
}

.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.legal-prose p,
.legal-prose li {
  margin-bottom: 0.75rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.legal-prose ul {
  margin: 0 0 1rem 1.25rem;
}

.legal-prose .legal-updated {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.prose--article {
  max-width: 680px;
}

.article-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  position: relative;
}

.article-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: min(88px, 28%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 169, 98, 0.2), transparent);
  border-radius: 2px;
}

.article-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.article-header .section__eyebrow {
  margin-bottom: 0.75rem;
}

.prose--article .article-lede {
  font-size: 1.13rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.93);
  margin-bottom: 1.85rem;
}

.prose--article > h2 {
  font-size: clamp(1.32rem, 2.4vw, 1.62rem);
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(201, 169, 98, 0.55);
  letter-spacing: 0.03em;
  color: var(--cream);
}

.article-callout {
  margin: 2rem 0;
  padding: 1.35rem 1.5rem 1.35rem 1.25rem;
  border-left: 3px solid var(--gold);
  background: linear-gradient(125deg, rgba(201, 169, 98, 0.1) 0%, rgba(22, 20, 18, 0.75) 55%, rgba(18, 16, 14, 0.9) 100%);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.55;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.article-note {
  margin: 1.85rem 0;
  padding: 1.2rem 1.35rem;
  background: rgba(20, 18, 16, 0.9);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: var(--radius);
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--cream-muted);
}

.article-note__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.article-note ul {
  margin: 0.35rem 0 0;
  padding-left: 1.2rem;
}

.article-note li {
  margin-bottom: 0.4rem;
  color: var(--cream-muted);
}

.article-pair {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .article-pair {
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
  }
}

.article-pair__card {
  padding: 1.25rem 1.35rem;
  background: linear-gradient(160deg, rgba(30, 27, 24, 0.9) 0%, rgba(16, 14, 12, 0.95) 100%);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.article-pair__card h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.article-pair__card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--cream-muted);
}

.article-aside {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  padding: 1.5rem 1.6rem 1.6rem;
  background: linear-gradient(165deg, rgba(36, 32, 28, 0.96) 0%, rgba(18, 16, 14, 0.98) 100%);
  border: 1px solid rgba(201, 169, 98, 0.26);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 20px 50px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.article-aside__title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.article-aside nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-aside a {
  display: block;
  padding: 0.55rem 0;
  font-size: 0.94rem;
  color: var(--cream-muted);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  transition: color 0.2s var(--ease-out), padding-left 0.2s var(--ease-out);
}

.article-aside a:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.article-aside a:hover {
  color: var(--gold-bright);
  padding-left: 0.35rem;
}

.article-footer-actions {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.prose--article .article-footer-actions {
  margin-bottom: 0;
}

.prose--article ul,
.prose--article ol {
  margin: 0 0 1.35rem;
  padding-left: 1.4rem;
  color: var(--cream-muted);
}

.prose--article li {
  margin-bottom: 0.55rem;
  padding-left: 0.25rem;
}

.prose--article li::marker {
  color: rgba(201, 169, 98, 0.7);
}

.prose--article strong {
  color: rgba(245, 240, 232, 0.92);
  font-weight: 600;
}

.prose--article ul ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.taste-game-machine {
  background: #110f0d;
  border: 4px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 0 40px rgba(0,0,0,0.8);
  position: relative;
}

.taste-game-machine::before {
  content: '';
  position: absolute;
  top: 10px; right: 10px; bottom: 10px; left: 10px;
  border: 1px dashed rgba(201, 169, 98, 0.3);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}

.taste-game-slots {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.slot {
  width: 120px;
  height: 360px;
  background: #f5f0e8;
  border: 4px solid var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 10px 20px rgba(0,0,0,0.5);
}

.slot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.slot-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.slot-item {
  width: 100%;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.taste-game-controls {
  position: relative;
  z-index: 2;
}

.text-gold {
  color: var(--gold-bright);
}

@media (max-width: 600px) {
  .taste-game-machine {
    padding: 2rem 1rem;
  }
  
  .taste-game-slots {
    gap: 0.75rem;
  }
  
  .slot {
    width: 90px;
    height: 270px;
    border-width: 3px;
  }
  
  .slot-item {
    height: 90px;
    font-size: 3.5rem;
  }
}

@media (max-width: 360px) {
  .taste-game-machine {
    padding: 1.5rem 0.5rem;
  }
  
  .taste-game-slots {
    gap: 0.5rem;
  }
  
  .slot {
    width: 80px;
    height: 240px;
  }
  
  .slot-item {
    height: 80px;
    font-size: 3rem;
  }
}

/* Hidden for filter */
[data-filter-item].is-hidden,
[data-tasting-item].is-hidden {
  display: none !important;
}

.tastings-grid__empty {
  margin: 2rem 0 0;
  text-align: center;
}

.tastings-grid__empty[hidden] {
  display: none !important;
}

/* Restaurant finder chat widget */
.tc-chat {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 1090;
  font-family: var(--font-sans);
}

.tc-chat__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(201, 169, 98, 0.45);
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(145deg, rgba(34, 30, 26, 0.98) 0%, rgba(14, 12, 10, 1) 100%);
  color: var(--gold-bright);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 10px 36px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(201, 169, 98, 0.12);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.25s;
}

.tc-chat__toggle:hover {
  border-color: rgba(232, 213, 163, 0.55);
  color: var(--cream);
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.2),
    0 14px 44px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(201, 169, 98, 0.18);
  transform: scale(1.05);
}

.tc-chat__toggle svg {
  width: 26px;
  height: 26px;
  display: block;
}

.tc-chat__toggle.is-active {
  background: linear-gradient(145deg, rgba(201, 169, 98, 0.22) 0%, rgba(26, 22, 18, 1) 100%);
  border-color: rgba(201, 169, 98, 0.65);
}

.tc-chat__panel {
  position: absolute;
  right: 0;
  bottom: calc(56px + 0.75rem);
  width: min(100vw - 2rem, 380px);
  max-height: min(72vh, 520px);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.28);
  background: linear-gradient(165deg, rgba(22, 19, 16, 0.99) 0%, rgba(10, 9, 8, 0.99) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 24px 64px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 0.35s var(--ease-out),
    visibility 0.35s,
    transform 0.35s var(--ease-out);
  pointer-events: none;
}

.tc-chat.is-open .tc-chat__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.tc-chat__header {
  position: relative;
  padding: 1.1rem 2.75rem 1rem 1.15rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(201, 169, 98, 0.08), transparent 55%);
}

.tc-chat__header h2 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--cream);
}

.tc-chat__subtitle {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.85);
}

.tc-chat__close {
  position: absolute;
  top: 0.65rem;
  right: 0.55rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(245, 240, 232, 0.65);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.tc-chat__close:hover {
  color: var(--cream);
  background: rgba(201, 169, 98, 0.12);
}

.tc-chat__messages {
  flex: 1;
  min-height: 200px;
  max-height: 340px;
  overflow-y: auto;
  padding: 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tc-chat__msg {
  max-width: 92%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.9);
}

.tc-chat__msg--bot {
  align-self: flex-start;
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.15);
}

.tc-chat__msg--user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 98, 0.12);
  color: var(--cream);
}

.tc-chat__hint {
  margin: 0;
  padding: 0.55rem 1.05rem;
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.45);
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.tc-chat__hint a {
  color: var(--gold);
}

.tc-chat__hint a:hover {
  color: var(--gold-bright);
}

.tc-chat__form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid rgba(201, 169, 98, 0.12);
}

.tc-chat__input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--cream);
  background: rgba(4, 3, 2, 0.65);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tc-chat__input::placeholder {
  color: rgba(245, 240, 232, 0.35);
}

.tc-chat__input:focus {
  border-color: rgba(201, 169, 98, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
}

.tc-chat__send {
  flex-shrink: 0;
  white-space: nowrap;
}

.tc-chat__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 420px) {
  .tc-chat__panel {
    width: calc(100vw - 1.5rem);
    right: max(0px, calc(env(safe-area-inset-right, 0px) - 0.25rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .tc-chat__panel,
  .tc-chat__toggle {
    transition-duration: 0.01ms;
  }

  .tc-chat__toggle:hover {
    transform: none;
  }
}
