:root {
  --ink: #0a1612;
  --forest: #0b1f1a;
  --emerald: #134e3a;
  --jade: #1a6b4f;
  --mint-mist: #d8ebe2;
  --champagne: #c9a227;
  --gold-soft: #e8d5a3;
  --ivory: #f7f3ea;
  --cream: #efe8d8;
  --muted: #8a9a92;
  --white: #ffffff;
  --glass: rgba(11, 31, 26, 0.72);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", sans-serif;
  --shadow-soft: 0 18px 40px rgba(10, 22, 18, 0.28);
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(26, 107, 79, 0.18), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(201, 162, 39, 0.12), transparent 50%),
    linear-gradient(180deg, #f4f7f5 0%, var(--ivory) 45%, #eef3f0 100%);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section-wide {
  width: 100%;
}

.site-header {
  position: relative;
  z-index: 40;
  width: 100%;
  background: linear-gradient(180deg, rgba(247, 243, 234, 0.96), rgba(247, 243, 234, 0.88));
  border-bottom: 1px solid rgba(19, 78, 58, 0.12);
  backdrop-filter: blur(10px);
}

.nav-inner {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  filter: drop-shadow(0 6px 14px rgba(11, 31, 26, 0.25));
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--forest);
  line-height: 1;
}

.brand-tld {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--champagne);
  letter-spacing: 0.04em;
}

.brand-footer .brand-name {
  color: var(--ivory);
}

.primary-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  display: inline-block;
  padding: 0.55rem 0.7rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--forest);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--jade);
  background: rgba(26, 107, 79, 0.08);
  outline: none;
}

.nav-link.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  box-shadow: 0 8px 18px rgba(19, 78, 58, 0.25);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(19, 78, 58, 0.18);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  padding: 0;
  flex-direction: column;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--forest);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-wide {
  position: relative;
  width: 100%;
  margin: 0;
  min-height: clamp(300px, 44vw, 460px);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  display: grid;
  align-items: end;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 20, 16, 0.88) 0%, rgba(8, 20, 16, 0.55) 48%, rgba(8, 20, 16, 0.28) 100%),
    linear-gradient(180deg, transparent 35%, rgba(8, 20, 16, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(1.75rem, 4vw, 3.5rem) 0;
  max-width: 720px;
  margin-right: auto;
  color: var(--ivory);
}

.hero-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jade);
}

.eyebrow.gold,
.hero-eyebrow {
  color: var(--gold-soft);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin-bottom: 0.85rem;
  color: var(--white);
}

.hero h2 {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(247, 243, 234, 0.88);
  margin-bottom: 1.35rem;
  max-width: 36rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--champagne), #b8901c);
  color: var(--forest);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #d4af37, var(--champagne));
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ivory);
  border-color: rgba(232, 213, 163, 0.45);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--gold-soft);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--forest);
  border-color: rgba(19, 78, 58, 0.28);
}

.btn-ghost-dark:hover,
.btn-ghost-dark:focus-visible {
  background: rgba(19, 78, 58, 0.08);
}

.btn-dark {
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(232, 213, 163, 0.45);
}

.cookie-consent .btn-outline,
.gate-card .btn-outline {
  color: var(--forest);
  border-color: rgba(19, 78, 58, 0.25);
  background: var(--white);
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2,
.split-content h2,
.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: 0.85rem;
}

.section-head .lead {
  max-width: 46rem;
  margin: 0 auto;
  color: #3d524a;
  font-size: 1.02rem;
}

.section-head.light h2 {
  color: var(--ivory);
}

.lead.light-lead {
  color: rgba(247, 243, 234, 0.78);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.game-card {
  background: linear-gradient(165deg, #ffffff, #eef4f0);
  border: 1px solid rgba(19, 78, 58, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
}

.game-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #0b1f1a, #1a6b4f);
  color: var(--gold-soft);
  font-size: 1.2rem;
}

.game-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.game-card p {
  color: #44584f;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.game-card ul {
  display: grid;
  gap: 0.4rem;
}

.game-card li {
  position: relative;
  padding-left: 1rem;
  color: #3d524a;
  font-size: 0.88rem;
}

.game-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--champagne);
}

.section-casino-highlights {
  background:
    linear-gradient(135deg, rgba(8, 20, 16, 0.97), rgba(19, 78, 58, 0.9)),
    radial-gradient(800px 320px at 10% 80%, rgba(201, 162, 39, 0.16), transparent 60%);
}

.highlight-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.highlight-item {
  padding: 1.4rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(232, 213, 163, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.highlight-item i {
  color: var(--champagne);
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.highlight-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.highlight-item p {
  color: rgba(247, 243, 234, 0.78);
  font-size: 0.92rem;
}

.evening-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.evening-step {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(216, 235, 226, 0.55));
  border: 1px solid rgba(19, 78, 58, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem 1.35rem;
}

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.evening-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.evening-step h3 i {
  color: var(--jade);
  font-size: 0.95rem;
}

.evening-step p {
  color: #44584f;
  font-size: 0.93rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-item {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(232, 235, 230, 0.7));
  border: 1px solid rgba(19, 78, 58, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  color: var(--gold-soft);
  font-size: 1.15rem;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
  color: var(--forest);
}

.feature-item p {
  color: #44584f;
  font-size: 0.95rem;
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  min-height: 480px;
}

.section-split-reverse .split-media {
  order: 2;
}

.section-split-reverse .split-content {
  order: 1;
}

.split-media {
  min-height: 320px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--ivory);
}

.section-dark .split-content {
  background: linear-gradient(160deg, #0b1f1a, #12352b);
  color: rgba(247, 243, 234, 0.9);
}

.section-dark .split-content h2 {
  color: var(--white);
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0 1.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.96rem;
}

.check-list i {
  color: var(--champagne);
  margin-top: 0.2rem;
}

.section-band {
  background:
    linear-gradient(135deg, rgba(11, 31, 26, 0.96), rgba(19, 78, 58, 0.92)),
    radial-gradient(700px 300px at 80% 20%, rgba(201, 162, 39, 0.18), transparent 60%);
  color: var(--ivory);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stat-item {
  padding: 1.4rem 1.1rem;
  border: 1px solid rgba(232, 213, 163, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.stat-item i {
  color: var(--champagne);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.stat-item p {
  color: rgba(247, 243, 234, 0.78);
  font-size: 0.93rem;
}

.section-cta {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(216, 235, 226, 0.75));
  border: 1px solid rgba(19, 78, 58, 0.12);
  box-shadow: var(--shadow-soft);
}

.cta-copy {
  max-width: 640px;
}

.cta-copy p:last-child {
  color: #3d524a;
}

.site-footer {
  background: #081411;
  color: rgba(247, 243, 234, 0.82);
  padding: 3.5rem 0 1.5rem;
  margin-top: 1rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(232, 213, 163, 0.12);
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 213, 163, 0.25);
  color: var(--gold-soft);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(201, 162, 39, 0.15);
  outline: none;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--champagne);
  outline: none;
}

.footer-col li {
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-col i {
  color: var(--champagne);
  width: 1rem;
}

.footer-disclaimer {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 213, 163, 0.14);
}

.footer-disclaimer h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-disclaimer p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: rgba(247, 243, 234, 0.75);
}

.footer-disclaimer a {
  color: var(--champagne);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(247, 243, 234, 0.6);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--champagne);
  outline: none;
}

.overlay-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(800px 400px at 50% 20%, rgba(26, 107, 79, 0.35), transparent 55%),
    rgba(6, 14, 12, 0.92);
}

.overlay-gate[hidden],
.site-shell[hidden],
.cookie-consent[hidden] {
  display: none !important;
}

.gate-card {
  width: min(100%, 480px);
  background: linear-gradient(165deg, #f7f3ea, #e8efe9);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.gate-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  color: var(--gold-soft);
  font-size: 1.4rem;
}

.gate-icon-warn {
  background: linear-gradient(135deg, #7a1f1f, #a33a3a);
  color: #fff;
}

.gate-card h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.gate-card p {
  color: #3d524a;
  margin-bottom: 0.75rem;
}

.gate-question {
  font-weight: 700;
  color: var(--forest) !important;
  margin-top: 0.5rem !important;
}

.gate-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.restriction-gate {
  z-index: 1001;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(8, 20, 16, 0.96);
  border-top: 1px solid rgba(201, 162, 39, 0.28);
  padding: 1rem 0;
  color: var(--ivory);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-copy {
  flex: 1;
  font-size: 0.92rem;
}

.cookie-copy a {
  color: var(--champagne);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.policy-page {
  padding: 3rem 0 4rem;
}

.policy-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.policy-page .meta {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.policy-page h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--emerald);
  margin: 1.75rem 0 0.65rem;
}

.policy-page p,
.policy-page li {
  color: #3d524a;
  margin-bottom: 0.75rem;
}

.policy-page ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.page-hero {
  width: 100%;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background:
    linear-gradient(120deg, rgba(11, 31, 26, 0.96), rgba(19, 78, 58, 0.88)),
    radial-gradient(700px 280px at 90% 10%, rgba(201, 162, 39, 0.2), transparent 55%);
  color: var(--ivory);
}

.page-hero .eyebrow {
  color: var(--gold-soft);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.page-hero p {
  max-width: 40rem;
  color: rgba(247, 243, 234, 0.85);
  font-size: 1.02rem;
}

.page-content {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.content-block {
  margin-bottom: 2rem;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.content-block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--emerald);
  margin: 1.25rem 0 0.5rem;
}

.content-block p,
.content-block li {
  color: #3d524a;
  margin-bottom: 0.7rem;
}

.content-block ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.menu-grid,
.info-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.menu-card,
.info-card {
  background: linear-gradient(165deg, #fff, #eef4f0);
  border: 1px solid rgba(19, 78, 58, 0.12);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
}

.menu-card h3,
.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--forest);
  margin: 0.7rem 0 0.45rem;
}

.menu-card .price {
  color: var(--champagne);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.menu-card p,
.info-card p {
  color: #44584f;
  font-size: 0.94rem;
}

.info-card i {
  color: var(--jade);
  font-size: 1.25rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(19, 78, 58, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(165deg, #fff, #eef4f0);
  border: 1px solid rgba(19, 78, 58, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 0.45rem;
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.faq-item h3 i {
  color: var(--champagne);
  margin-top: 0.2rem;
}

.faq-item p {
  color: #44584f;
  font-size: 0.96rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-email-box {
  background: linear-gradient(145deg, #0b1f1a, #134e3a);
  color: var(--ivory);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.contact-email-box h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.contact-email-box p {
  color: rgba(247, 243, 234, 0.82);
  margin-bottom: 1.25rem;
}

.contact-email-box a.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-soft);
  font-size: 1.15rem;
  font-weight: 700;
  word-break: break-all;
}

.contact-email-box a.email-link:hover,
.contact-email-box a.email-link:focus-visible {
  color: var(--champagne);
  outline: none;
}

.timeline-list {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(19, 78, 58, 0.1);
}

.timeline-item .when {
  font-weight: 700;
  color: var(--champagne);
  font-size: 0.92rem;
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 0.3rem;
}

.timeline-item p {
  color: #44584f;
  font-size: 0.94rem;
}

@media (max-width: 1100px) {
  .feature-grid,
  .stat-row,
  .highlight-row,
  .evening-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-grid,
  .menu-grid,
  .info-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: rgba(247, 243, 234, 0.98);
    border-bottom: 1px solid rgba(19, 78, 58, 0.12);
    padding: 0.75rem 1.25rem 1.1rem;
    display: none;
    box-shadow: 0 16px 30px rgba(10, 22, 18, 0.12);
  }

  .primary-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .nav-link {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
  }

  .section-split,
  .section-split-reverse {
    grid-template-columns: 1fr;
  }

  .section-split-reverse .split-media,
  .section-split-reverse .split-content {
    order: initial;
  }

  .split-media {
    min-height: 260px;
    max-height: 340px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    min-height: 68px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .hero-wide {
    min-height: 380px;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .cookie-actions .btn,
  .gate-actions .btn {
    width: 100%;
  }

  .feature-grid,
  .stat-row,
  .footer-cols,
  .game-grid,
  .highlight-row,
  .evening-steps,
  .menu-grid,
  .info-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
