@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --emerald-deep: #0b3d2e;
  --emerald: #145a45;
  --emerald-soft: #1e6b52;
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --ivory: #f7f3eb;
  --sand: #ebe4d6;
  --charcoal: #141414;
  --ink: #1f1f1f;
  --muted: #6b6b6b;
  --white: #ffffff;
  --overlay: rgba(11, 28, 22, 0.72);
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --shadow-soft: 0 18px 50px rgba(11, 61, 46, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--gold);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

.container-narrow {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.topbar {
  background: var(--emerald-deep);
  color: var(--sand);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.55rem 1rem;
  font-weight: 400;
}

.topbar i {
  color: var(--gold-light);
  margin-right: 0.4rem;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
  position: relative;
  z-index: 100;
}

.navbar-culina {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--emerald-deep);
}

.brand:hover {
  color: var(--emerald-deep);
  opacity: 0.9;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--emerald-deep);
}

.brand-tag {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 0.28rem;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(11, 61, 46, 0.2);
  background: transparent;
  color: var(--emerald-deep);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--transition), border-color var(--transition);
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: var(--emerald-deep);
  color: var(--gold-light);
  border-color: var(--emerald-deep);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-menu a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding: 0.35rem 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--emerald);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.nav-cta {
  background: var(--emerald-deep);
  color: var(--ivory);
  padding: 0.55rem 1.1rem;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.nav-menu a.nav-cta::after {
  display: none;
}

.nav-menu a.nav-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(6, 22, 18, 0.92) 0%, rgba(8, 36, 28, 0.82) 42%, rgba(12, 24, 20, 0.7) 100%),
    url('../images/hero-bg.jpg') center / cover no-repeat;
  color: var(--ivory);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 14, 0.35) 0%, transparent 40%, rgba(6, 18, 14, 0.45) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4.5rem 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero-eyebrow span {
  width: 36px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  max-width: 34rem;
  color: rgba(247, 243, 235, 0.92);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-gold,
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(247, 243, 235, 0.45);
  color: var(--ivory);
}

.btn-outline-light:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.hero-ornament {
  position: absolute;
  right: 6%;
  bottom: 18%;
  width: min(220px, 28vw);
  aspect-ratio: 1;
  border: 1px solid rgba(232, 212, 139, 0.28);
  display: none;
  place-items: center;
}

.hero-ornament i {
  font-size: 2.4rem;
  color: var(--gold-light);
}

@media (min-width: 992px) {
  .hero-ornament {
    display: grid;
  }
}

.section {
  padding: 5.5rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--muted);
  max-width: 36rem;
  font-weight: 300;
}

.section-dark {
  background: var(--emerald-deep);
  color: var(--sand);
}

.section-dark .section-title,
.section-dark h3 {
  color: var(--white);
}

.section-dark .section-lead {
  color: rgba(247, 243, 235, 0.72);
}

.section-sand {
  background: var(--sand);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .split-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.feature-panel {
  background: var(--white);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--gold);
  height: 100%;
  transition: transform var(--transition);
}

.feature-panel:hover {
  transform: translateY(-6px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(11, 61, 46, 0.08);
  color: var(--emerald);
  font-size: 1.25rem;
  margin-bottom: 1.15rem;
}

.feature-panel h3 {
  font-size: 1.55rem;
  margin-bottom: 0.65rem;
}

.feature-panel p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.experience-list {
  display: grid;
  gap: 1.25rem;
}

.experience-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(247, 243, 235, 0.12);
}

.experience-item:last-child {
  border-bottom: none;
}

.experience-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  min-width: 2rem;
}

.experience-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.experience-item p {
  margin: 0;
  color: rgba(247, 243, 235, 0.7);
  font-size: 0.92rem;
}

.menu-preview {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .menu-preview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dish {
  background: var(--white);
  padding: 1.75rem 1.5rem 1.6rem;
  border-left: 2px solid var(--gold);
  transition: box-shadow var(--transition);
}

.dish:hover {
  box-shadow: var(--shadow-soft);
}

.dish-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.dish h3 {
  font-size: 1.35rem;
  margin: 0;
}

.dish-price {
  font-family: var(--font-display);
  color: var(--emerald);
  font-size: 1.15rem;
  white-space: nowrap;
}

.dish p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.games-strip {
  display: grid;
  gap: 1px;
  background: rgba(201, 162, 39, 0.25);
}

@media (min-width: 768px) {
  .games-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.game-cell {
  background: var(--emerald);
  padding: 2rem 1.35rem;
  text-align: center;
  transition: background var(--transition);
}

.game-cell:hover {
  background: var(--emerald-soft);
}

.game-cell i {
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
  display: block;
}

.game-cell h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.game-cell p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(247, 243, 235, 0.7);
}

.cta-banner {
  position: relative;
  padding: 4.5rem 0;
  background:
    linear-gradient(120deg, rgba(11, 61, 46, 0.94), rgba(20, 90, 69, 0.88)),
    url('../images/hero-bg.jpg') center / cover no-repeat;
  color: var(--ivory);
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.85rem;
}

.cta-banner p {
  max-width: 32rem;
  margin: 0 auto 1.75rem;
  color: rgba(247, 243, 235, 0.8);
  font-weight: 300;
}

.media-frame {
  position: relative;
  overflow: hidden;
  background: var(--emerald-deep);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  max-height: 420px;
}

.media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 162, 39, 0.35);
  pointer-events: none;
  margin: 0.75rem;
}

.dual-media {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .dual-media {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.25rem;
  }

  .dual-media .media-frame:first-child img {
    min-height: 360px;
    max-height: 460px;
  }

  .dual-media .media-frame:last-child {
    align-self: end;
  }

  .dual-media .media-frame:last-child img {
    min-height: 280px;
    max-height: 340px;
  }
}

.journey-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .journey-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.journey-step {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
}

.journey-step .step-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--emerald-deep);
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.journey-step h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.journey-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.event-feature {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .event-feature {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.event-feature .media-frame img {
  min-height: 300px;
  max-height: 400px;
}

.event-meta {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.event-meta-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.event-meta-item i {
  color: var(--gold);
  margin-top: 0.2rem;
}

.event-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.event-meta-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.vip-band {
  display: grid;
  gap: 0;
  background: var(--ink);
  color: var(--sand);
  overflow: hidden;
}

@media (min-width: 992px) {
  .vip-band {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.vip-band .media-frame {
  min-height: 320px;
}

.vip-band .media-frame img {
  min-height: 320px;
  max-height: 480px;
}

.vip-band .media-frame::after {
  border-color: rgba(201, 162, 39, 0.25);
}

.vip-copy {
  padding: 3rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 992px) {
  .vip-copy {
    padding: 3.5rem 3.25rem;
  }
}

.vip-copy .section-title {
  color: var(--white);
}

.vip-copy .section-lead {
  color: rgba(247, 243, 235, 0.72);
}

.vip-perks {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 1.75rem;
}

.vip-perks li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  font-size: 0.92rem;
  color: rgba(247, 243, 235, 0.82);
}

.vip-perks i {
  color: var(--gold);
  margin-top: 0.2rem;
}

.quote-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.quote-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border-left: 2px solid var(--emerald);
}

.quote-card i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: block;
}

.quote-card blockquote {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.35;
  color: var(--charcoal);
  font-style: italic;
}

.quote-card cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.visit-strip {
  display: grid;
  gap: 1px;
  background: rgba(11, 61, 46, 0.12);
}

@media (min-width: 768px) {
  .visit-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.visit-cell {
  background: var(--ivory);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.visit-cell i {
  color: var(--emerald);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  display: block;
}

.visit-cell h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.visit-cell p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  background: var(--charcoal);
  color: rgba(247, 243, 235, 0.7);
  padding: 3.5rem 0 1.75rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
  }
}

.site-footer .brand-name {
  color: var(--ivory);
}

.site-footer .brand-tag {
  color: rgba(247, 243, 235, 0.45);
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: rgba(247, 243, 235, 0.7);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-disclaimer {
  border-top: 1px solid rgba(247, 243, 235, 0.1);
  border-bottom: 1px solid rgba(247, 243, 235, 0.1);
  padding: 1.35rem 0;
  margin-bottom: 1.35rem;
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(247, 243, 235, 0.55);
}

.footer-disclaimer strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  font-weight: 600;
}

.footer-disclaimer p {
  margin: 0 0 0.55rem;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.page-hero {
  background:
    linear-gradient(115deg, rgba(6, 22, 18, 0.92), rgba(11, 61, 46, 0.78)),
    url('/assets/images/hero-bg.jpg') center / cover no-repeat;
  color: var(--ivory);
  padding: 4.5rem 0 3.5rem;
}

.page-hero .section-label {
  color: var(--gold-light);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 18ch;
  margin-bottom: 0.85rem;
}

.page-hero p {
  max-width: 36rem;
  margin: 0;
  color: rgba(247, 243, 235, 0.85);
  font-weight: 300;
}

.page-section {
  padding: 4.5rem 0;
}

.legal-block h2 {
  font-size: 1.65rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-block h2:first-child {
  margin-top: 0;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-block ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.4rem;
}

.menu-list {
  display: grid;
  gap: 1rem;
}

.menu-category {
  margin-bottom: 2.5rem;
}

.menu-category h2 {
  font-size: 1.85rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(11, 61, 46, 0.12);
}

.info-tiles {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .info-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-tile {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
}

.info-tile i {
  color: var(--emerald);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  display: block;
}

.info-tile h3 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.info-tile p,
.info-tile a {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.info-tile a:hover {
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-grid .media-frame img {
  min-height: 220px;
  max-height: 280px;
}

.contact-lines {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.5rem;
}

.contact-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.contact-line i {
  color: var(--gold);
  margin-top: 0.25rem;
}

.contact-line strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.contact-line span,
.contact-line a {
  color: var(--muted);
  font-size: 0.92rem;
}

.age-gate,
.age-restricted {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 18, 14, 0.92);
}

.age-gate.is-open,
.age-restricted.is-open {
  display: flex;
}

.age-card {
  width: min(420px, 100%);
  background: var(--ivory);
  padding: 2rem 1.75rem;
  text-align: center;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
}

.age-card i {
  font-size: 1.75rem;
  color: var(--emerald);
  margin-bottom: 0.85rem;
  display: block;
}

.age-card h2 {
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
}

.age-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.age-actions {
  display: grid;
  gap: 0.65rem;
}

.age-actions button,
.cookie-banner button {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-age-yes,
.btn-cookie-accept {
  background: var(--emerald-deep);
  color: var(--ivory);
}

.btn-age-yes:hover,
.btn-cookie-accept:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-age-no,
.btn-cookie-decline {
  background: transparent;
  border-color: rgba(11, 61, 46, 0.25);
  color: var(--ink);
}

.btn-age-no:hover,
.btn-cookie-decline:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

body.age-locked {
  overflow: hidden;
}

body.age-locked > *:not(.age-gate):not(.age-restricted) {
  filter: blur(2px);
  pointer-events: none;
  user-select: none;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
  display: none;
  background: var(--charcoal);
  color: rgba(247, 243, 235, 0.85);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-soft);
  max-width: 720px;
  margin: 0 auto;
}

.cookie-banner.is-open {
  display: block;
}

@media (min-width: 768px) {
  .cookie-banner {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(720px, calc(100% - 2rem));
  }

  .cookie-banner-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
  }
}

.cookie-banner p {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .cookie-banner p {
    margin: 0;
  }
}

.cookie-banner a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

@media (max-width: 991.98px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border: 1px solid rgba(11, 61, 46, 0.1);
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.85rem 1.15rem;
    border-bottom: 1px solid rgba(11, 61, 46, 0.06);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a.nav-cta {
    margin: 0.75rem 1.15rem 0;
    text-align: center;
    justify-content: center;
  }

  .hero {
    min-height: min(78vh, 680px);
  }

  .hero-inner {
    padding: 3.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .brand-name {
    font-size: 1.35rem;
  }

  .brand-tag {
    letter-spacing: 0.14em;
  }

  .topbar {
    font-size: 0.7rem;
    line-height: 1.45;
  }

  .section {
    padding: 4rem 0;
  }
}
