@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #071411;
  --ink-soft: #0f2420;
  --emerald: #145c4c;
  --emerald-deep: #0d3d34;
  --gold: #c9a45c;
  --gold-soft: #e2c98a;
  --cream: #f6f1e8;
  --mist: #d9d2c6;
  --stone: #8a8378;
  --line: rgba(201, 164, 92, 0.28);
  --glass: rgba(7, 20, 17, 0.72);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--cream);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(20, 92, 76, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(201, 164, 92, 0.12), transparent 45%),
    linear-gradient(180deg, #071411 0%, #0b1c18 40%, #0a1613 100%);
  line-height: 1.65;
  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,
a:focus-visible {
  color: var(--gold-soft);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0;
}

p {
  margin: 0;
}

.container-narrow {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.topbar {
  background: linear-gradient(90deg, #06110e 0%, #0d2a24 50%, #06110e 100%);
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--mist);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-disclaimer {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.topbar-disclaimer i {
  color: var(--gold);
  font-size: 0.95rem;
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--stone);
}

.topbar-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-meta i {
  color: var(--gold);
  font-size: 0.85rem;
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(7, 20, 17, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 164, 92, 0.16);
}

.navbar-bl {
  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.75rem;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(226, 201, 138, 0.35), transparent 45%),
    linear-gradient(145deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-size: 1.15rem;
  box-shadow: 0 0 0 4px rgba(201, 164, 92, 0.08);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(20, 92, 76, 0.25);
  color: var(--cream);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(201, 164, 92, 0.15);
  border-color: var(--gold);
  outline: none;
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(201, 164, 92, 0.2);
  border-color: var(--gold);
}

.nav-toggle .fa-times {
  display: none;
}

.nav-toggle[aria-expanded="true"] .fa-bars {
  display: none;
}

.nav-toggle[aria-expanded="true"] .fa-times {
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  position: relative;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mist);
  border-radius: 999px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--cream);
  background: rgba(201, 164, 92, 0.08);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 0.35rem;
  padding: 0.65rem 1.15rem !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--gold) 0%, #a8843d 100%) !important;
  color: var(--ink) !important;
  font-weight: 600 !important;
  box-shadow: 0 10px 24px rgba(201, 164, 92, 0.25);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  filter: brightness(1.08);
  color: var(--ink) !important;
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(7, 20, 17, 0.92) 0%, rgba(7, 20, 17, 0.78) 42%, rgba(7, 20, 17, 0.45) 100%),
    linear-gradient(180deg, rgba(7, 20, 17, 0.35) 0%, rgba(7, 20, 17, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.5rem 0 4.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
}

.hero-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  max-width: 14ch;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  color: #fff;
  margin-bottom: 1.15rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero-lead {
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #f0ebe3;
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-bl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-bl:hover,
.btn-bl:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary-bl {
  background: linear-gradient(135deg, var(--gold) 0%, #b89245 100%);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(201, 164, 92, 0.28);
}

.btn-primary-bl:hover,
.btn-primary-bl:focus-visible {
  color: var(--ink);
  filter: brightness(1.06);
}

.btn-ghost-bl {
  background: rgba(246, 241, 232, 0.06);
  border-color: rgba(246, 241, 232, 0.28);
  color: var(--cream);
  backdrop-filter: blur(8px);
}

.btn-ghost-bl:hover,
.btn-ghost-bl:focus-visible {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 0.9rem;
}

.section-lead {
  color: var(--mist);
  font-weight: 300;
  font-size: 1.05rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.experience-item {
  position: relative;
  padding: 1.85rem 1.6rem;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(20, 92, 76, 0.28), rgba(7, 20, 17, 0.55)),
    rgba(15, 36, 32, 0.85);
  border: 1px solid rgba(201, 164, 92, 0.18);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.experience-item::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.18), transparent 70%);
  pointer-events: none;
}

.experience-item:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 92, 0.45);
  box-shadow: var(--shadow);
}

.experience-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  background: rgba(201, 164, 92, 0.12);
  border: 1px solid rgba(201, 164, 92, 0.28);
  color: var(--gold-soft);
  font-size: 1.2rem;
}

.experience-item h3 {
  font-size: 1.55rem;
  margin-bottom: 0.65rem;
  color: var(--cream);
}

.experience-item p {
  color: var(--mist);
  font-weight: 300;
  font-size: 0.98rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split-panel {
  padding: 2.2rem;
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(145deg, rgba(20, 92, 76, 0.35), rgba(7, 20, 17, 0.8)),
    var(--ink-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.split-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 164, 92, 0.12);
}

.split-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.split-list i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 164, 92, 0.12);
  color: var(--gold);
  margin-top: 0.1rem;
}

.split-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.split-list span {
  color: var(--mist);
  font-weight: 300;
  font-size: 0.95rem;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 420px;
}

.mosaic-tile {
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(201, 164, 92, 0.2);
  position: relative;
  overflow: hidden;
  min-height: 180px;
  background: #0d1f1b;
}

.mosaic-tile:first-child {
  grid-row: 1 / span 2;
}

.mosaic-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.mosaic-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 20, 17, 0.2) 0%, rgba(7, 20, 17, 0.88) 100%);
  pointer-events: none;
}

.mosaic-tile i {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.4rem;
  color: rgba(226, 201, 138, 0.75);
  z-index: 2;
}

.mosaic-tile h3,
.mosaic-tile p {
  position: relative;
  z-index: 2;
}

.mosaic-tile h3 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
  color: #fff;
}

.mosaic-tile p {
  color: #f0ebe3;
  font-weight: 300;
  font-size: 0.95rem;
}

.cta-band {
  margin: 1rem 0 0;
  padding: 3.2rem 2rem;
  border-radius: calc(var(--radius) + 8px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 164, 92, 0.22), transparent 55%),
    linear-gradient(135deg, #0f2f29 0%, #071411 55%, #12362f 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.8rem;
}

.cta-band p {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  color: var(--mist);
  font-weight: 300;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.is-reverse .feature-copy {
  order: 2;
}

.feature-row.is-reverse .feature-media {
  order: 1;
}

.feature-media {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, 0.2);
  box-shadow: var(--shadow);
  min-height: 280px;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.feature-copy h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
  margin-bottom: 0.85rem;
}

.feature-copy p {
  color: var(--mist);
  font-weight: 300;
  margin-bottom: 1.35rem;
}

.feature-points {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}

.feature-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--cream);
  font-weight: 400;
  font-size: 0.96rem;
}

.feature-points i {
  color: var(--gold);
  margin-top: 0.2rem;
}

.event-spotlight {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(201, 164, 92, 0.22);
  box-shadow: var(--shadow);
}

.event-spotlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.event-spotlight-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 20, 17, 0.25) 0%, rgba(7, 20, 17, 0.88) 100%);
}

.event-spotlight-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  max-width: 38rem;
}

.event-spotlight-content h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 0.75rem;
  color: #fff;
}

.event-spotlight-content p {
  color: #f0ebe3;
  font-weight: 300;
  margin-bottom: 1.4rem;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.journey-step {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 164, 92, 0.18);
  background: rgba(15, 36, 32, 0.75);
  position: relative;
}

.journey-step .step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.85rem;
  display: block;
}

.journey-step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.journey-step p {
  color: var(--mist);
  font-weight: 300;
  font-size: 0.92rem;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.signature-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, 0.18);
  background: rgba(15, 36, 32, 0.8);
}

.signature-card .sig-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 164, 92, 0.14);
  background: #0d1f1b;
}

.signature-card .sig-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-card .sig-body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.signature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
}

.signature-card p {
  color: var(--mist);
  font-weight: 300;
  font-size: 0.94rem;
}

.visit-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.visit-item {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 164, 92, 0.18);
  background: linear-gradient(160deg, rgba(20, 92, 76, 0.22), rgba(7, 20, 17, 0.7));
}

.visit-item i {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
  display: inline-block;
}

.visit-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.visit-item p {
  color: var(--mist);
  font-weight: 300;
  font-size: 0.94rem;
}

.disclaimer-box {
  padding: 1.75rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 164, 92, 0.25);
  background: rgba(10, 24, 21, 0.9);
}

.disclaimer-box h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--gold-soft);
}

.disclaimer-box p {
  color: var(--mist);
  font-weight: 300;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(201, 164, 92, 0.12);
}

.footer-links-row a {
  color: var(--stone);
  font-size: 0.88rem;
}

.footer-links-row a:hover,
.footer-links-row a:focus-visible {
  color: var(--gold-soft);
}

.site-footer {
  margin-top: 2rem;
  padding: 3.5rem 0 1.75rem;
  border-top: 1px solid rgba(201, 164, 92, 0.16);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--mist);
  font-weight: 300;
  max-width: 28rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--gold-soft);
}

.footer-col a,
.footer-col span {
  display: block;
  color: var(--mist);
  font-weight: 300;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(201, 164, 92, 0.12);
  color: var(--stone);
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 0.5rem 0.65rem;
    font-size: 0.84rem;
  }

  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }

  .signature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(8, 22, 19, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem 1rem;
    border-radius: 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
    justify-content: center;
  }

  .split,
  .mosaic,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row.is-reverse .feature-copy,
  .feature-row.is-reverse .feature-media {
    order: initial;
  }

  .mosaic {
    grid-template-rows: auto;
    min-height: 0;
  }

  .mosaic-tile:first-child {
    grid-row: auto;
    min-height: 220px;
  }
}

@media (max-width: 767.98px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-meta {
    display: none;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 4rem 0 3.25rem;
  }

  .experience-grid,
  .footer-grid,
  .journey-grid,
  .signature-grid,
  .visit-strip {
    grid-template-columns: 1fr;
  }

  .signature-grid .signature-card:nth-child(3) {
    grid-column: auto;
  }

  .event-spotlight {
    min-height: 360px;
  }

  .event-spotlight-content {
    padding: 1.75rem 1.35rem;
  }

  .section {
    padding: 4rem 0;
  }

  .cta-band {
    padding: 2.4rem 1.25rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links-row {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

.page-hero {
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid rgba(201, 164, 92, 0.16);
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(20, 92, 76, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 20%, rgba(201, 164, 92, 0.12), transparent 50%);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.85rem;
  color: #fff;
}

.page-hero p {
  max-width: 40rem;
  color: var(--mist);
  font-weight: 300;
  font-size: 1.05rem;
}

.page-content {
  padding: 3.5rem 0 4.5rem;
}

.content-block {
  margin-bottom: 2.5rem;
}

.content-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.content-block p,
.content-block li {
  color: var(--mist);
  font-weight: 300;
  margin-bottom: 0.85rem;
}

.content-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.content-block li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.content-block li i {
  color: var(--gold);
  margin-top: 0.25rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.info-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 164, 92, 0.18);
  background: rgba(15, 36, 32, 0.8);
}

.info-card i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  display: inline-block;
}

.info-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.info-card p {
  color: var(--mist);
  font-weight: 300;
  font-size: 0.95rem;
  margin: 0;
}

.menu-list {
  display: grid;
  gap: 1rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(201, 164, 92, 0.14);
}

.menu-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.menu-item p {
  color: var(--mist);
  font-weight: 300;
  font-size: 0.94rem;
  margin: 0;
  grid-column: 1 / -1;
}

.menu-item .price {
  font-family: var(--font-display);
  color: var(--gold-soft);
  font-size: 1.25rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, 0.18);
  min-height: 220px;
  position: relative;
  background: #0d1f1b;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-item .gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(7, 20, 17, 0.92));
}

.gallery-item h3 {
  font-size: 1.25rem;
  color: #fff;
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

.contact-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 164, 92, 0.16);
  background: rgba(15, 36, 32, 0.7);
}

.contact-list i {
  color: var(--gold);
  margin-top: 0.2rem;
}

.contact-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.15rem;
}

.contact-list span {
  color: var(--mist);
  font-weight: 300;
  font-size: 0.95rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(4, 12, 10, 0.92);
  backdrop-filter: blur(10px);
}

.age-gate[hidden],
.cookie-banner[hidden],
.age-gate-panel[hidden] {
  display: none !important;
}

.age-gate-panel {
  width: min(440px, 100%);
  padding: 2rem 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(201, 164, 92, 0.35);
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 164, 92, 0.16), transparent 55%),
    linear-gradient(160deg, #12352e, #071411);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-gate-panel i.gate-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
  display: inline-block;
}

.age-gate-panel h2 {
  font-size: 1.85rem;
  margin-bottom: 0.65rem;
}

.age-gate-panel p {
  color: var(--mist);
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.age-actions .btn-bl {
  min-width: 150px;
}

body.age-locked {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9990;
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 164, 92, 0.3);
  background: rgba(8, 22, 19, 0.96);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p {
  flex: 1 1 280px;
  color: var(--mist);
  font-weight: 300;
  font-size: 0.9rem;
  margin: 0;
}

.cookie-banner a {
  color: var(--gold-soft);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-actions .btn-bl {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
}

@media (max-width: 991.98px) {
  .info-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .info-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }
}
