/* Global design tokens used across the site. Adjust these first when changing the brand palette,
   shadows, shared spacing, or animation feel. */
:root {
  --paper: #0b0e0c;
  --paper-soft: #151812;
  --cream: #f2dfbd;
  --forest: #0f4633;
  --forest-deep: #06291f;
  --sage: #dce5c7;
  --gold: #c78d24;
  --gold-bright: #e8b84e;
  --orange: #dc7a25;
  --charcoal: #181918;
  --muted: rgba(255, 250, 240, 0.72);
  --line: rgba(232, 184, 78, 0.18);
  --gold-line: rgba(199, 141, 36, 0.42);
  --white: #fffaf0;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  --shadow-dark: 0 32px 80px rgba(0, 0, 0, 0.38);
  --section-pad: clamp(40px, 5.2vw, 100px);
  --header-pad: clamp(28px, 3vw, 84px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: auto;
  background: var(--paper);
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 184, 78, 0.13), transparent 30rem),
    radial-gradient(circle at 92% 14%, rgba(15, 70, 51, 0.34), transparent 34rem),
    linear-gradient(180deg, #080a09 0%, #11150f 44%, #08100d 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

/* Subtle fixed grid texture behind all sections. It stays pointer-events:none so it never blocks links. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.018) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(0deg, rgba(255, 250, 240, 0.014) 0 1px, transparent 1px 74px);
  opacity: 0.58;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
.branch-card[data-href] {
  touch-action: manipulation;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border: 1px solid rgba(232, 184, 78, 0.44);
  border-radius: 8px;
  color: #211507;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateY(-140%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-icon {
  transition: transform 180ms var(--ease);
}

.button:hover .button-icon,
.button:focus-visible .button-icon {
  transform: translateX(3px);
}

/* Sticky header: desktop uses a two-column grid so the nav can breathe beside the full logo. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: clamp(96px, 6vw, 112px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(42px, 5vw, 96px);
  align-items: center;
  padding: clamp(10px, 1vw, 16px) clamp(40px, 4.4vw, 78px);
  color: var(--white);
  border-bottom: 1px solid rgba(232, 184, 78, 0.2);
  background: rgba(5, 9, 7, 0.94);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.3);
  will-change: transform;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
}

.brand img,
.footer-brand img {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.brand img {
  width: clamp(190px, 14vw, 235px);
  height: auto;
}

.brand strong,
.brand small,
.footer-brand strong,
.footer-brand span,
.footer-brand small {
  display: block;
}

.brand strong,
.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 0.94vw, 1.22rem);
  line-height: 1;
  text-transform: uppercase;
}

.brand small,
.footer-brand span {
  color: var(--gold);
  font-size: clamp(0.7rem, 0.62vw, 0.82rem);
  font-weight: 900;
  text-transform: uppercase;
}

.site-header .brand img {
  width: clamp(190px, 14vw, 235px);
  height: auto;
}

.site-header .brand strong {
  font-size: clamp(1.12rem, 1.08vw, 1.38rem);
  letter-spacing: 0;
}

.site-header .brand small {
  font-size: clamp(0.78rem, 0.72vw, 0.92rem);
  letter-spacing: 0.03em;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
  border: 1px solid rgba(232, 184, 78, 0.3);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 250, 240, 0.055);
  cursor: pointer;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  color: var(--gold-bright);
  border-color: rgba(232, 184, 78, 0.62);
  background: rgba(232, 184, 78, 0.1);
}

.nav-toggle-line {
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.site-header.nav-open .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand img.brand-logo-lockup {
  aspect-ratio: 540 / 240;
  background: transparent;
  object-position: left center;
}

.footer-brand img.footer-logo-lockup {
  width: min(100%, 270px);
  height: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

.site-nav {
  width: min(100%, 1220px);
  min-width: 0;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 2.4vw, 42px);
  font-size: clamp(0.96rem, 0.92vw, 1.08rem);
  font-weight: 800;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  position: relative;
  padding: 18px 0 16px;
  color: rgba(255, 250, 240, 0.78);
  transition: color 180ms var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  border-radius: 999px;
  transition: transform 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--gold);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  min-width: max-content;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown-toggle .icon {
  width: 0.72em;
  height: 0.72em;
  transition: transform 180ms var(--ease);
}

.nav-dropdown:hover .nav-dropdown-toggle .icon,
.nav-dropdown:focus-within .nav-dropdown-toggle .icon {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% - 3px);
  right: 0;
  z-index: 80;
  min-width: 168px;
  padding: 10px;
  border: 1px solid rgba(232, 184, 78, 0.24);
  border-radius: 8px;
  background: rgba(4, 8, 6, 0.98);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.44);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-panel a {
  width: 100%;
  display: flex;
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255, 250, 240, 0.84);
  font-size: 0.9rem;
}

.nav-dropdown-panel a::after {
  display: none;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible,
.nav-dropdown-panel a[aria-current="page"] {
  color: var(--gold-bright);
  background: rgba(232, 184, 78, 0.1);
}

/* Desktop-specific normalization for the header after the earlier mobile-first pass. */
@media (min-width: 900px) {
  .site-header {
    min-height: 100px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(52px, 6vw, 118px);
    padding: 4px clamp(48px, 5vw, 96px);
  }

  .site-header .brand {
    align-self: center;
  }

  .site-header .brand img {
    width: clamp(205px, 12vw, 230px);
    height: auto;
  }

  .site-header .brand strong {
    font-size: clamp(1rem, 1.05vw, 1.18rem);
  }

  .site-header .brand small {
    font-size: clamp(0.68rem, 0.72vw, 0.8rem);
  }

  .site-nav {
    gap: clamp(30px, 2.8vw, 54px);
    font-size: clamp(1.02rem, 0.88vw, 1.12rem);
    font-weight: 800;
  }

  .site-nav a {
    padding: 24px 0 20px;
  }

}

/* Desktop-specific hero sizing keeps the first viewport compact on larger screens. */
@media (min-width: 900px) {
  .hero {
    min-height: clamp(520px, 62vh, 640px);
    max-height: 660px;
    padding: clamp(44px, 5vh, 64px) clamp(48px, 5vw, 88px);
    display: grid;
    align-items: center;
    background-size: cover;
    background-position: center 52%;
  }

  .hero-content {
    width: min(100%, 1440px);
    margin: 0 auto;
  }

  .hero-copy {
    max-width: clamp(330px, 28vw, 460px);
  }

  .hero .eyebrow {
    font-size: clamp(0.72rem, 0.62vw, 0.88rem);
    margin-bottom: clamp(12px, 1.1vw, 18px);
  }

  .hero h1 {
    font-size: clamp(3.4rem, 4.4vw, 5rem);
    line-height: 0.88;
    margin: 0 0 clamp(20px, 2vw, 30px);
  }

  .hero h1::after {
    width: clamp(56px, 4.8vw, 76px);
    margin-top: clamp(16px, 1.5vw, 24px);
  }

  .hero-lede {
    max-width: 460px;
    font-size: clamp(0.9rem, 0.82vw, 1.05rem);
    line-height: 1.5;
  }

  .hero-meta {
    gap: clamp(16px, 1.55vw, 26px);
    margin-top: clamp(20px, 1.8vw, 28px);
    font-size: clamp(0.78rem, 0.72vw, 0.9rem);
  }

  .hero-actions {
    gap: clamp(12px, 1.1vw, 18px);
    margin-top: clamp(22px, 1.9vw, 30px);
  }

  .hero .btn {
    min-height: 48px;
    padding: 0 clamp(20px, 1.8vw, 28px);
    font-size: clamp(0.78rem, 0.72vw, 0.9rem);
  }
}

/* Shared section defaults keep anchor scrolling from hiding content underneath the sticky header. */
.page-section,
.split-section,
.menu-section,
.reservation-band,
.about-section,
.branches-section,
.site-footer {
  position: relative;
  width: 100%;
  margin-inline: 0;
  scroll-margin-top: 110px;
}

/* Hero uses the food tabletop image as a full-bleed background; the overlay keeps text readable. */
.hero {
  min-height: clamp(1248px, calc(195vh - 273px), 1482px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 6vw, 92px) var(--section-pad);
  background:
    url("./assets/hero-tabletop-wide-v1.jpg") center center / cover no-repeat,
    #050706;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 5, 4, 0.78) 0%, rgba(3, 5, 4, 0.5) 23%, rgba(3, 5, 4, 0.1) 47%, rgba(3, 5, 4, 0) 76%),
    radial-gradient(circle at 16% 32%, rgba(232, 184, 78, 0.12), transparent 23rem);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, clamp(460px, 32vw, 560px));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: clamp(0.78rem, 0.78vw, 0.98rem);
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-bright);
  margin-bottom: clamp(10px, 1vw, 16px);
  font-size: clamp(1.17rem, 1.23vw, 1.5rem);
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--white);
}

h1 {
  max-width: 560px;
  margin-bottom: clamp(16px, 1.8vw, 24px);
  font-size: clamp(4.65rem, 5.8vw, 6.8rem);
  line-height: 0.86;
}

.hero h1 {
  max-width: 610px;
  margin-bottom: clamp(18px, 1.9vw, 28px);
  color: var(--white);
  font-size: clamp(7.125rem, 9.825vw, 12.525rem);
  line-height: 0.84;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

h1::after,
.split-copy h2::after,
.menu-copy h2::after,
.about-section h2::after {
  content: "";
  display: block;
  width: 78px;
  height: 2px;
  margin-top: 20px;
  background: var(--gold);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 3.35vw, 4.5rem);
  line-height: 0.98;
}

p {
  color: var(--muted);
  overflow-wrap: break-word;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: clamp(22px, 2.1vw, 34px);
  font-size: clamp(1rem, 1.02vw, 1.24rem);
}

.hero .hero-lead {
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(1.5rem, 1.53vw, 1.86rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 1.8vw, 32px);
  margin-bottom: clamp(24px, 2.4vw, 38px);
  color: var(--charcoal);
  font-size: clamp(0.9rem, 0.88vw, 1.06rem);
}

.hero .hero-meta {
  display: grid;
  justify-items: start;
  gap: clamp(12px, 1.1vw, 18px);
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(1.35rem, 1.32vw, 1.59rem);
}

.hero .button-row {
  flex-wrap: nowrap;
  gap: clamp(32px, 2.6vw, 48px);
}

.hero .button {
  flex: 0 0 auto;
  min-height: clamp(78px, 4.8vw, 93px);
  gap: 21px;
  padding: 0 clamp(42px, 3.3vw, 63px);
  font-size: clamp(1.26rem, 1.17vw, 1.47rem);
  white-space: nowrap;
}

.hero-meta a,
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero-meta a {
  color: inherit;
  transition: color 180ms var(--ease), text-shadow 180ms var(--ease);
}

.hero .hero-meta a:hover,
.hero .hero-meta a:focus-visible {
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(232, 184, 78, 0.34);
}

.hero-meta .icon {
  color: var(--forest);
}

.hero .hero-meta .icon {
  color: var(--gold-bright);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 1.2vw, 22px);
}

.button {
  min-height: clamp(52px, 3.2vw, 62px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 clamp(28px, 2.2vw, 42px);
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-size: clamp(0.84rem, 0.78vw, 0.98rem);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.button .icon {
  width: 1.1em;
  height: 1.1em;
  font-size: 1.1em;
  line-height: 1;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px rgba(199, 141, 36, 0.18), 0 18px 40px rgba(44, 31, 14, 0.18);
}

.button.primary {
  background: var(--forest);
}

.hero .button.primary {
  color: #170f05;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.button.gold {
  color: #211507;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.button.outline {
  color: var(--forest);
  border-color: var(--gold-line);
  background: rgba(255, 250, 240, 0.62);
}

.hero .button.outline {
  color: var(--white);
  border-color: rgba(15, 70, 51, 0.88);
  background: rgba(15, 70, 51, 0.86);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 250, 240, 0.32);
  background: transparent;
}

@media (hover: none) {
  .button:hover {
    transform: none;
    box-shadow: none;
  }

  .button:hover .button-icon,
  .image-frame:hover img,
  .feature-card:hover img,
  .branch-card:hover,
  .branch-card:hover .branch-media img,
  .branch-map-art:hover img,
  .embakasi-showcase-grid figure:hover img,
  .map-contact-card li a:hover {
    transform: none;
  }

  .button:active,
  .branch-card[data-href]:active {
    transform: translateY(1px);
  }
}

.hero > *,
.features > *,
.split-section > *,
.menu-section > *,
.reservation-band > *,
.site-footer > * {
  min-width: 0;
}

/* Shared image treatment for the non-hero sections. */
.image-frame {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 70, 51, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease), filter 520ms var(--ease);
}

.image-frame:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.03);
}

/* Legacy feature-card styles kept for possible card sections; current branch cards use their own system. */
.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.3vw, 44px);
  padding: clamp(24px, 3vw, 44px) var(--section-pad) clamp(66px, 6vw, 104px);
  border-top: 1px solid rgba(232, 184, 78, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 184, 78, 0.1), transparent 28rem),
    linear-gradient(180deg, #0a0c0b, #12160f);
}

.feature-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 78, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(12, 15, 13, 0.92);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.26);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(232, 184, 78, 0.14), transparent 42%);
  opacity: 0;
  transition: opacity 240ms var(--ease);
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(199, 141, 36, 0.52);
  background: rgba(17, 22, 18, 0.96);
  box-shadow: 0 0 0 2px rgba(232, 184, 78, 0.12), 0 28px 76px rgba(0, 0, 0, 0.36);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card img {
  width: 100%;
  height: clamp(230px, 17vw, 330px);
  object-fit: cover;
  transition: transform 560ms var(--ease), filter 560ms var(--ease);
}

.feature-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.feature-card div {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 2vw, 34px);
  background: linear-gradient(180deg, rgba(9, 12, 10, 0.78), rgba(9, 12, 10, 0.98));
}

.feature-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.72rem, 1.65vw, 2.34rem);
  line-height: 1.08;
  color: var(--cream);
  transition: color 200ms var(--ease);
}

.feature-card:hover h2 {
  color: var(--gold);
}

.feature-card p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(0.96rem, 0.9vw, 1.08rem);
}

/* Reusable two-column editorial section used by Drinks and Games. */
.split-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(480px, 1.14fr);
  gap: clamp(52px, 5.2vw, 108px);
  align-items: center;
  padding: clamp(96px, 8vw, 142px) var(--section-pad);
}

.drinks-section {
  color: var(--white);
  grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(38px, 4vw, 76px);
  padding-top: clamp(64px, 5vw, 92px);
  padding-bottom: clamp(64px, 5vw, 92px);
  background:
    radial-gradient(circle at 82% 20%, rgba(232, 184, 78, 0.15), transparent 24rem),
    linear-gradient(135deg, #151713, #080a09);
}

.drinks-section h2,
.drinks-section .eyebrow {
  color: var(--gold-bright);
}

.drinks-section p {
  color: rgba(255, 250, 240, 0.78);
}

.drinks-section .highlight-grid {
  grid-template-columns: max-content max-content;
  justify-content: start;
  width: max-content;
  max-width: 100%;
  gap: clamp(34px, 3vw, 52px);
  margin: 32px 0 34px;
}

.games-section {
  color: var(--white);
  grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(38px, 4vw, 76px);
  padding-top: clamp(64px, 5vw, 92px);
  padding-bottom: clamp(64px, 5vw, 92px);
  background:
    radial-gradient(circle at 88% 18%, rgba(232, 184, 78, 0.14), transparent 22rem),
    linear-gradient(135deg, #113d2d, #06150f);
}

.games-section h2,
.games-section .eyebrow {
  color: var(--gold-bright);
}

.games-section p {
  color: rgba(255, 250, 240, 0.78);
}

.games-section .highlight-grid {
  gap: clamp(18px, 1.6vw, 28px);
  margin: 32px 0 34px;
}

.split-copy p {
  max-width: 640px;
  font-size: 1.1rem;
}

/* Compact feature lists inside each offer section. */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 36px);
  margin: 40px 0;
}

.highlight-grid article {
  min-width: 0;
  padding-left: 15px;
  border-left: 1px solid var(--gold-line);
}

.highlight-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.line-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
}

.highlight-grid strong,
.highlight-grid small {
  display: block;
}

.highlight-grid strong {
  color: inherit;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.highlight-grid small {
  color: inherit;
  opacity: 0.78;
  font-size: 0.98rem;
}

.split-frame {
  aspect-ratio: 1.18;
}

.drinks-section .split-frame {
  width: 100%;
  height: clamp(340px, 32vw, 480px);
  aspect-ratio: auto;
  border-color: rgba(232, 184, 78, 0.16);
  box-shadow: var(--shadow-dark);
}

.drinks-section .split-frame img {
  object-fit: cover;
  object-position: center;
  background: #050706;
}

.games-section .split-frame {
  width: 100%;
  height: clamp(340px, 32vw, 480px);
  aspect-ratio: auto;
  border-color: rgba(232, 184, 78, 0.16);
  box-shadow: var(--shadow-dark);
}

/* Menu/grill section flips the split layout so the food image leads on desktop. */
.menu-section {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(38px, 4vw, 76px);
  align-items: center;
  padding: clamp(64px, 5vw, 92px) var(--section-pad);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(232, 184, 78, 0.14), transparent 22rem),
    linear-gradient(135deg, #113d2d, #06150f);
}

.menu-section h2,
.menu-section .eyebrow {
  color: var(--gold-bright);
}

.menu-section p {
  color: rgba(255, 250, 240, 0.78);
}

.menu-frame {
  width: 100%;
  height: clamp(340px, 32vw, 480px);
  aspect-ratio: auto;
  border-color: rgba(232, 184, 78, 0.18);
  box-shadow: var(--shadow-dark);
}

.menu-section .highlight-grid {
  gap: clamp(18px, 1.6vw, 28px);
  margin: 32px 0 34px;
}

.menu-copy p {
  max-width: 640px;
  font-size: 1.1rem;
}

/* High-intent CTA band placed after the main offer sections. */
.reservation-band {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(38px, 4vw, 76px);
  align-items: center;
  padding: 68px var(--section-pad);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(232, 184, 78, 0.14), transparent 20rem),
    linear-gradient(135deg, #113d2d, #07120e);
}

.reservation-band h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 3rem;
}

.reservation-band p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.78);
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

/* Short brand story section before showing the individual locations. */
.about-section {
  padding: 84px var(--section-pad);
  text-align: center;
  color: var(--white);
  border-top: 1px solid rgba(232, 184, 78, 0.14);
  border-bottom: 1px solid rgba(232, 184, 78, 0.14);
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 184, 78, 0.12), transparent 26rem),
    linear-gradient(135deg, #10130f, #080b09);
}

.about-section h2 {
  max-width: 980px;
  margin-inline: auto;
  font-size: 3.18rem;
  color: var(--white);
}

.about-section h2::after {
  margin-inline: auto;
}

.about-section p:last-child {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(255, 250, 240, 0.76);
}

/* Branch directory cards: these hold location-specific facts, maps, and social links. */
.branches-section {
  padding: clamp(76px, 7.4vw, 124px) var(--section-pad);
  color: var(--white);
  border-bottom: 1px solid rgba(232, 184, 78, 0.14);
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 184, 78, 0.1), transparent 22rem),
    radial-gradient(circle at 88% 8%, rgba(15, 70, 51, 0.36), transparent 30rem),
    linear-gradient(135deg, #090d0b, #06130f);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto clamp(30px, 4vw, 54px);
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2.4rem, 3.2vw, 4rem);
}

.section-heading p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 250, 240, 0.76);
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.8vw, 42px);
}

/* Branch cards share the site palette but are intentionally more data-dense than marketing sections. */
.branch-card {
  contain: layout paint;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 78, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.045), rgba(255, 250, 240, 0.02)),
    rgba(8, 12, 10, 0.84);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.branch-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 184, 78, 0.42);
  box-shadow: 0 0 0 2px rgba(232, 184, 78, 0.08), 0 34px 88px rgba(0, 0, 0, 0.36);
}

.branch-card[data-href] {
  cursor: pointer;
}

.branch-card[data-href]:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

.branch-card[data-href] a,
.branch-card[data-href] button {
  position: relative;
  z-index: 2;
}

.branch-media {
  height: clamp(220px, 24vw, 360px);
  margin: 0;
  overflow: hidden;
  background: #07100c;
}

.branch-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms var(--ease), filter 560ms var(--ease);
}

.branch-card:hover .branch-media img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

.branch-body {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 2.5vw, 38px);
}

.branch-kicker {
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.branch-body h3 {
  margin: 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 2.1vw, 2.7rem);
  font-weight: 500;
  line-height: 1.05;
}

.branch-location {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-bright);
  font-weight: 800;
}

.branch-location:hover,
.branch-location:focus-visible {
  color: var(--cream);
}

.branch-body p:not(.branch-kicker) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
}

.branch-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 0;
}

.branch-details div {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(232, 184, 78, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.045);
}

.branch-details dt {
  color: rgba(255, 250, 240, 0.52);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.branch-details dd {
  margin: 3px 0 0;
  color: var(--white);
  font-weight: 800;
}

.branch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.branch-map {
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.82rem;
}

.branch-socials,
.socials {
  align-items: center;
}

.branch-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.branch-socials a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 184, 78, 0.54);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(255, 250, 240, 0.035);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.branch-socials a:hover,
.branch-socials a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-bright);
  color: var(--white);
  background: rgba(232, 184, 78, 0.12);
}

/* Footer repeats branch/contact/social links for users who scroll to the end. */
.site-footer {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) repeat(4, minmax(160px, 1fr));
  gap: clamp(28px, 4vw, 70px);
  padding: 56px var(--section-pad) 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(232, 184, 78, 0.12), transparent 18rem),
    linear-gradient(135deg, #0f2f24, #050c09);
}

.footer-brand {
  display: grid;
  gap: 4px;
  align-content: start;
}

.footer-brand small {
  margin-top: 8px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
}

.footer-column a,
.footer-column span,
.footer-column p {
  color: rgba(255, 250, 240, 0.86);
  font-size: 0.9rem;
}

.footer-column a,
.footer-column span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-column .icon {
  min-width: 1.1em;
  color: var(--gold-bright);
  text-align: center;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gold-bright);
}

.socials {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-weight: 900;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-2px);
  background: rgba(232, 184, 78, 0.1);
  box-shadow: 0 0 0 2px rgba(199, 141, 36, 0.16);
}

.socials span {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.copyright {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 250, 240, 0.18);
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.8rem;
  text-align: center;
}

/* Branch page system for Wamunyu.
   These sections reuse the homepage palette but switch the layout toward resort,
   accommodation and event storytelling rather than the broad two-branch directory. */
.branch-page-main {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 2%, rgba(232, 184, 78, 0.12), transparent 28rem),
    linear-gradient(180deg, #080a09 0%, #0b100d 42%, #050807 100%);
}

.branch-page-main h1,
.branch-page-main h2,
.branch-page-main h3 {
  color: var(--white);
}

.branch-page-main p {
  color: rgba(255, 250, 240, 0.76);
}

.branch-page-section,
.wamunyu-feature,
.branch-hero,
.wamunyu-contact-map {
  position: relative;
  width: 100%;
  scroll-margin-top: 110px;
}

.branch-hero {
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(72px, 7vw, 120px) var(--section-pad);
  background: #050706 center / cover no-repeat;
}

.wamunyu-hero {
  background-image:
    linear-gradient(90deg, rgba(3, 5, 4, 0.86) 0%, rgba(3, 5, 4, 0.62) 33%, rgba(3, 5, 4, 0.16) 69%, rgba(3, 5, 4, 0.08) 100%),
    radial-gradient(circle at 18% 40%, rgba(232, 184, 78, 0.18), transparent 22rem),
    url("./assets/wamunyu-gate.jpeg");
  background-position: center;
}

.branch-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 7, 0.94));
}

.branch-hero-copy {
  width: min(100%, 560px);
}

.branch-hero h1 {
  max-width: 640px;
  margin-bottom: clamp(18px, 2vw, 28px);
  font-size: clamp(3.25rem, 5.2vw, 6rem);
  line-height: 0.94;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.48);
}

.branch-hero p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: clamp(26px, 3vw, 42px);
  font-size: clamp(1rem, 1.08vw, 1.24rem);
}

.branch-hero-actions,
.branch-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.branch-hero-actions .button,
.branch-button-row .button {
  min-height: 52px;
  padding-inline: clamp(22px, 2vw, 34px);
}

.wamunyu-about {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(42px, 5vw, 92px);
  align-items: center;
  padding: clamp(84px, 7vw, 128px) var(--section-pad);
  background:
    radial-gradient(circle at 88% 10%, rgba(232, 184, 78, 0.12), transparent 24rem),
    linear-gradient(135deg, #09100d, #06291f 58%, #050706);
}

.wamunyu-about .eyebrow {
  color: var(--gold-bright);
}

.wamunyu-about h2 {
  color: var(--white);
}

.wamunyu-about p {
  color: rgba(255, 250, 240, 0.76);
}

.branch-about-copy h2,
.wamunyu-feature-copy h2,
.branch-section-heading h2,
.map-contact-card h2 {
  font-size: clamp(2.45rem, 3.6vw, 4.55rem);
  line-height: 1;
}

.branch-collage {
  position: relative;
  min-height: clamp(420px, 38vw, 620px);
}

.branch-collage figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-dark);
}

.branch-collage img,
.wamunyu-feature-media img,
.accommodation-media-grid img,
.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-main {
  position: absolute;
  inset: 0 8% 12% 0;
}

.collage-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 54%;
  border: 7px solid #06120e;
}

.collage-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 8px;
  color: #171006;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.wamunyu-feature {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(42px, 5vw, 92px);
  align-items: center;
  padding: clamp(76px, 6.4vw, 116px) var(--section-pad);
  border-top: 1px solid rgba(232, 184, 78, 0.14);
  background:
    radial-gradient(circle at 88% 18%, rgba(232, 184, 78, 0.12), transparent 22rem),
    linear-gradient(135deg, #0a0d0b, #06120e);
}

.wamunyu-events {
  background:
    radial-gradient(circle at 84% 14%, rgba(232, 184, 78, 0.12), transparent 24rem),
    linear-gradient(135deg, #07100d, #0f3025);
}

.wamunyu-accommodation {
  grid-template-columns: minmax(460px, 1.05fr) minmax(340px, 0.95fr);
  background:
    radial-gradient(circle at 14% 12%, rgba(232, 184, 78, 0.1), transparent 22rem),
    linear-gradient(135deg, #090b0a, #06100d);
}

.wamunyu-food {
  background:
    radial-gradient(circle at 86% 22%, rgba(232, 184, 78, 0.13), transparent 22rem),
    linear-gradient(135deg, #11130f, #060907);
}

.wamunyu-feature-copy {
  min-width: 0;
}

.wamunyu-feature-copy p {
  max-width: 660px;
  font-size: clamp(1rem, 0.98vw, 1.12rem);
}

.wamunyu-feature-copy p + p {
  margin-top: -6px;
}

.wamunyu-feature-media {
  height: clamp(360px, 34vw, 560px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-dark);
}

.accommodation-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 12px;
}

.accommodation-media-grid figure {
  height: clamp(360px, 34vw, 560px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #090d0b;
  box-shadow: var(--shadow-dark);
}

.accommodation-media-grid figure:first-child img {
  object-position: center top;
}

.wamunyu-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0;
}

.wamunyu-mini-grid article {
  min-width: 0;
  display: grid;
  gap: 8px;
  justify-items: start;
  padding: 0 14px 0 0;
  border-right: 1px solid var(--gold-line);
}

.wamunyu-mini-grid article:last-child {
  border-right: 0;
}

.wamunyu-mini-grid .icon,
.amenity-grid .icon {
  width: 1.55rem;
  height: 1.55rem;
  color: var(--gold-bright);
  font-size: 1.55rem;
}

.wamunyu-mini-grid strong {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 0.96vw, 1.2rem);
  line-height: 1.12;
}

.wamunyu-amenities,
.wamunyu-gallery {
  padding: clamp(72px, 6vw, 108px) var(--section-pad);
  color: var(--white);
  border-top: 1px solid rgba(232, 184, 78, 0.14);
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 184, 78, 0.1), transparent 22rem),
    linear-gradient(135deg, #090d0b, #040706);
}

.branch-section-heading {
  max-width: 860px;
  margin: 0 auto clamp(30px, 3vw, 46px);
  text-align: center;
}

.branch-section-heading h2 {
  margin-bottom: 0;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.amenity-grid article {
  min-width: 0;
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(22px, 2vw, 32px);
  border: 1px solid rgba(232, 184, 78, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.035);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
}

.amenity-grid h3 {
  margin: 0;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.45vw, 1.8rem);
  line-height: 1.05;
}

.amenity-grid p {
  margin: 0;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-color: var(--gold) rgba(255, 250, 240, 0.08);
}

.gallery-strip figure {
  min-width: 0;
  height: clamp(150px, 14vw, 230px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 78, 0.16);
  border-radius: 8px;
  background: #0a0d0b;
}

.wamunyu-contact-map {
  min-height: clamp(560px, 66vh, 760px);
  display: grid;
  align-items: center;
  padding: clamp(44px, 5vw, 86px) var(--section-pad);
  overflow: hidden;
  background: #080a09;
}

.branch-map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  background: #d7d2af;
}

.branch-map-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(0.98);
  transition: transform 700ms var(--ease), filter 300ms var(--ease);
}

.branch-map-art:hover img {
  transform: scale(1.025);
  filter: saturate(1.03) contrast(1.02);
}

.wamunyu-contact-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.82), rgba(5, 8, 7, 0.34) 46%, rgba(5, 8, 7, 0.08)),
    radial-gradient(circle at 24% 48%, rgba(232, 184, 78, 0.14), transparent 24rem);
}

.map-contact-card {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(232, 184, 78, 0.3);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 184, 78, 0.12), transparent 16rem),
    rgba(6, 41, 31, 0.94);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
}

.map-contact-card h2 {
  margin-bottom: 18px;
}

.map-contact-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.map-contact-card li {
  color: rgba(255, 250, 240, 0.84);
}

.map-contact-card li a,
.map-contact-card li span {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: rgba(255, 250, 240, 0.84);
}

.map-contact-card li a {
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.map-contact-card li a:hover {
  color: var(--gold-bright);
  transform: translateX(3px);
}

.map-contact-card .icon {
  color: var(--gold-bright);
}

.map-contact-card .button.gold .icon,
.button.gold .icon {
  color: #211507;
  opacity: 1;
  stroke-width: 2.6;
}

.branch-footer {
  border-top: 1px solid rgba(232, 184, 78, 0.2);
}

/* Embakasi branch page.
   This keeps the shared branch-page system but gives Embakasi a darker lounge,
   grill and nightlife character than the quieter Wamunyu resort page. */
.embakasi-page-main {
  background:
    radial-gradient(circle at 82% 4%, rgba(232, 184, 78, 0.12), transparent 28rem),
    radial-gradient(circle at 8% 22%, rgba(15, 70, 51, 0.28), transparent 32rem),
    linear-gradient(180deg, #050807 0%, #0a0f0c 44%, #050706 100%);
}

.embakasi-hero {
  background-image:
    linear-gradient(90deg, rgba(3, 5, 4, 0.88) 0%, rgba(3, 5, 4, 0.64) 36%, rgba(3, 5, 4, 0.24) 72%, rgba(3, 5, 4, 0.1) 100%),
    radial-gradient(circle at 18% 40%, rgba(232, 184, 78, 0.2), transparent 22rem),
    url("./assets/embakasi-hero-lounge.jpg");
  background-position: center;
}

@media (max-width: 899px) {
  .embakasi-hero {
    background-image:
      linear-gradient(90deg, rgba(3, 5, 4, 0.88) 0%, rgba(3, 5, 4, 0.64) 36%, rgba(3, 5, 4, 0.24) 72%, rgba(3, 5, 4, 0.1) 100%),
      radial-gradient(circle at 18% 40%, rgba(232, 184, 78, 0.2), transparent 22rem),
      url("./assets/embakasi-hero-lounge-mobile.jpg");
  }
}

.wamunyu-about.embakasi-about {
  background:
    radial-gradient(circle at 88% 10%, rgba(232, 184, 78, 0.12), transparent 24rem),
    linear-gradient(135deg, #09100d, #06291f 58%, #050706);
}

.wamunyu-about.embakasi-about .eyebrow {
  color: var(--gold-bright);
}

.wamunyu-about.embakasi-about h2 {
  color: var(--white);
}

.wamunyu-about.embakasi-about p {
  color: rgba(255, 250, 240, 0.76);
}

.embakasi-about .branch-collage figure {
  box-shadow: var(--shadow-dark);
}

.embakasi-about .collage-float {
  border-color: #06120e;
}

.embakasi-about .collage-badge {
  color: #171006;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.embakasi-showcase {
  position: relative;
  width: 100%;
  scroll-margin-top: 110px;
  padding: clamp(40px, 4.2vw, 72px) var(--section-pad);
  border-top: 1px solid rgba(232, 184, 78, 0.14);
  background:
    radial-gradient(circle at 84% 16%, rgba(232, 184, 78, 0.08), transparent 24rem),
    linear-gradient(135deg, #070b09, #040706);
}

.embakasi-ui-module {
  width: min(100%, 1500px);
  margin-inline: auto;
  display: grid;
  gap: clamp(20px, 2.4vw, 34px);
  padding: clamp(22px, 2.6vw, 42px);
  border: 1px solid rgba(232, 184, 78, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(232, 184, 78, 0.13), transparent 22rem),
    radial-gradient(circle at 92% 10%, rgba(20, 82, 60, 0.22), transparent 24rem),
    linear-gradient(135deg, #101511, #050807 74%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.embakasi-showcase-copy {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: end;
  justify-content: space-between;
  gap: clamp(22px, 3vw, 52px);
  min-width: 0;
}

.embakasi-showcase h2 {
  max-width: 660px;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 3.35vw, 4.35rem);
  line-height: 0.98;
}

.embakasi-showcase-copy p {
  max-width: 620px;
  font-size: clamp(1.02rem, 1.04vw, 1.18rem);
}

.embakasi-showcase-copy .branch-button-row {
  align-self: end;
  justify-content: flex-end;
  margin-top: 0;
  min-width: max-content;
}

.embakasi-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 22px);
}

.embakasi-showcase-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 78, 0.18);
  border-radius: 8px;
  background: #080a09;
  aspect-ratio: 4 / 3;
  min-height: clamp(190px, 16.5vw, 290px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.embakasi-showcase-grid figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(3, 5, 4, 0.82));
}

.embakasi-showcase-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease);
}

.embakasi-showcase-grid figure:nth-child(1) img {
  object-position: center center;
}

.embakasi-showcase-grid figure:nth-child(2) img {
  object-position: center 42%;
}

.embakasi-showcase-grid figure:nth-child(3) img {
  object-position: center 58%;
}

.embakasi-showcase-grid figure:hover img {
  transform: scale(1.035);
}

.embakasi-showcase-grid figcaption {
  position: absolute;
  left: clamp(16px, 1.4vw, 22px);
  bottom: clamp(14px, 1.2vw, 20px);
  z-index: 1;
  color: var(--gold-bright);
  font-size: clamp(0.82rem, 0.9vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.embakasi-games {
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 184, 78, 0.1), transparent 22rem),
    linear-gradient(135deg, #090d0b, #040706);
}

.embakasi-gallery {
  background:
    radial-gradient(circle at 74% 6%, rgba(232, 184, 78, 0.1), transparent 22rem),
    linear-gradient(135deg, #040706, #070b09);
}

.embakasi-contact-map::after {
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.86), rgba(5, 8, 7, 0.42) 50%, rgba(5, 8, 7, 0.12)),
    radial-gradient(circle at 24% 48%, rgba(232, 184, 78, 0.16), transparent 24rem);
}

/* Hidden by default; mobile breakpoints turn this into a fixed quick-action bar. */
.mobile-dock {
  display: none;
}

/* Reveal animation states. The script adds .motion-ready and then .is-visible as items enter view. */
.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.motion-ready .reveal.is-visible {
  animation: revealUp 660ms var(--ease) both;
  animation-delay: var(--delay, 0ms);
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet/narrow desktop breakpoint: collapse major grids before text and image columns get cramped. */
@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero,
  .split-section,
  .menu-section,
  .reservation-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 28px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .branch-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) 1fr;
  }

  .feature-card img {
    height: 100%;
    min-height: 220px;
  }

  .reservation-actions {
    justify-content: flex-start;
  }

  .wamunyu-about,
  .wamunyu-feature,
  .wamunyu-accommodation,
  .embakasi-showcase {
    grid-template-columns: 1fr;
  }

  .embakasi-ui-module {
    grid-template-columns: 1fr;
  }

  .embakasi-showcase-copy {
    grid-template-columns: 1fr;
  }

  .embakasi-showcase-copy .branch-button-row {
    justify-content: flex-start;
    min-width: 0;
  }

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

  .branch-collage {
    min-height: 520px;
  }

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

/* Tablet landscape and small laptop widths still have enough room for a real navbar.
   Keep this band from inheriting the stacked narrow-desktop header. */
@media (min-width: 900px) and (max-width: 1240px) {
  .site-header {
    min-height: 92px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(24px, 3vw, 40px);
    padding: 6px clamp(24px, 3vw, 42px);
  }

  .site-header .brand img {
    width: clamp(178px, 17vw, 212px);
  }

  .site-nav {
    grid-column: auto;
    order: initial;
    justify-content: space-between;
    overflow: visible;
    gap: clamp(16px, 1.8vw, 28px);
    padding-bottom: 0;
    font-size: clamp(0.88rem, 0.95vw, 1rem);
  }

  .site-nav a,
  .nav-dropdown-toggle {
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .hero {
    min-height: clamp(500px, 62vh, 620px);
    max-height: 660px;
    padding: clamp(44px, 5vh, 64px) clamp(36px, 4vw, 64px);
    display: grid;
    align-items: center;
  }

  .split-section,
  .menu-section {
    grid-template-columns: minmax(300px, 0.92fr) minmax(380px, 1.08fr);
    gap: clamp(32px, 4vw, 58px);
  }

  .reservation-band {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

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

  .site-footer {
    grid-template-columns: minmax(230px, 1.15fr) repeat(2, minmax(150px, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .wamunyu-about,
  .wamunyu-feature,
  .wamunyu-accommodation {
    grid-template-columns: minmax(320px, 0.95fr) minmax(380px, 1.05fr);
  }

  .embakasi-showcase {
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  }
}

/* Tablet portrait needs the compact menu behavior, but not the compressed phone layout. */
@media (min-width: 721px) and (max-width: 899px) {
  .site-header {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 18px;
    padding: 14px clamp(24px, 4vw, 40px);
  }

  .site-header .brand img {
    width: clamp(218px, 30vw, 260px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
    align-items: stretch;
    justify-content: start;
    display: grid;
    gap: 0;
    font-size: 0.9rem;
  }

  .js .site-header .site-nav {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0 solid transparent;
    opacity: 0;
    pointer-events: none;
    transition: max-height 240ms var(--ease), opacity 180ms var(--ease), padding 180ms var(--ease), border-color 180ms var(--ease);
  }

  .js .site-header.nav-open .site-nav {
    max-height: 560px;
    padding: 8px;
    border: 1px solid rgba(232, 184, 78, 0.2);
    border-radius: 8px;
    background: rgba(3, 7, 5, 0.98);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 6px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.active {
    color: var(--gold-bright);
    background: rgba(232, 184, 78, 0.1);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
  }

  .nav-dropdown-panel {
    position: static;
    min-width: 0;
    padding: 0 0 6px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-panel a {
    min-height: 38px;
    padding: 8px 12px;
    color: rgba(255, 250, 240, 0.72);
    font-size: 0.84rem;
  }

  .hero {
    padding: 64px clamp(38px, 6vw, 64px) 72px;
    background-position: center center;
  }

  .hero-copy {
    max-width: 540px;
  }

  .hero h1 {
    font-size: clamp(4.25rem, 10vw, 5.4rem);
  }

  .hero-lead {
    width: min(100%, 520px);
    max-width: 520px;
    font-size: 1.12rem;
  }

  .hero-meta {
    font-size: 1rem;
  }

  .hero .button-row {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero .button-row .button {
    width: auto;
    min-width: 170px;
    max-width: none;
    height: 56px;
    min-height: 56px;
    padding: 0 26px;
    font-size: 0.92rem;
  }

  .split-section,
  .menu-section,
  .reservation-band,
  .about-section,
  .branches-section,
  .branch-hero,
  .wamunyu-about,
  .wamunyu-feature,
  .wamunyu-amenities,
  .wamunyu-gallery,
  .wamunyu-contact-map,
  .embakasi-showcase,
  .site-footer {
    padding-left: clamp(34px, 5vw, 52px);
    padding-right: clamp(34px, 5vw, 52px);
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .branch-hero {
    min-height: 620px;
  }

  .branch-hero-actions,
  .branch-button-row {
    display: flex;
    width: auto;
  }

  .branch-hero-actions .button,
  .branch-button-row .button {
    width: auto;
  }
}

/* Mobile breakpoint: tighten spacing, stack CTAs, and enable the fixed bottom action dock. */
@media (max-width: 720px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    width: 100%;
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 14px;
    padding: 12px 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand img {
    width: min(220px, 68vw);
    height: auto;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.76rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
    align-items: stretch;
    justify-content: start;
    display: grid;
    gap: 0;
    font-size: 0.84rem;
  }

  .js .site-header .site-nav {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0 solid transparent;
    opacity: 0;
    pointer-events: none;
    transition: max-height 240ms var(--ease), opacity 180ms var(--ease), padding 180ms var(--ease), border-color 180ms var(--ease);
  }

  .js .site-header.nav-open .site-nav {
    max-height: 560px;
    padding: 8px;
    border: 1px solid rgba(232, 184, 78, 0.2);
    border-radius: 8px;
    background: rgba(3, 7, 5, 0.98);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 6px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.active {
    color: var(--gold-bright);
    background: rgba(232, 184, 78, 0.1);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
  }

  .nav-dropdown-toggle .icon,
  .nav-dropdown:hover .nav-dropdown-toggle .icon,
  .nav-dropdown:focus-within .nav-dropdown-toggle .icon {
    transform: rotate(180deg);
  }

  .nav-dropdown-panel {
    position: static;
    min-width: 0;
    padding: 0 0 6px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-panel a {
    min-height: 38px;
    padding: 8px 12px;
    color: rgba(255, 250, 240, 0.72);
    font-size: 0.8rem;
  }

  .hero,
  .features,
  .split-section,
  .menu-section,
  .reservation-band,
  .about-section,
  .branches-section,
  .branch-hero,
  .wamunyu-about,
  .wamunyu-feature,
  .wamunyu-amenities,
  .wamunyu-gallery,
  .wamunyu-contact-map,
  .embakasi-showcase,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 4.05rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-meta {
    display: grid;
    gap: 10px;
  }

  .button-row,
  .reservation-actions {
    display: grid;
  }

  .button,
  .button.primary,
  .button.gold,
  .button.outline,
  .button.ghost {
    width: 100%;
  }

  .feature-card {
    display: block;
  }

  .feature-card img {
    height: 190px;
    min-height: 0;
  }

  .highlight-grid,
  .highlight-grid.compact {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .highlight-grid article,
  .highlight-grid article:first-child {
    padding: 0 0 12px;
    border-left: 0;
    border-bottom: 1px solid var(--gold-line);
  }

  .drinks-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .games-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .menu-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .drinks-section .highlight-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 26px 0 28px;
  }

  .games-section .highlight-grid {
    margin: 26px 0 28px;
  }

  .menu-section .highlight-grid {
    margin: 26px 0 28px;
  }

  .split-frame {
    aspect-ratio: 0.95;
  }

  .drinks-section .split-frame,
  .games-section .split-frame {
    width: 100%;
    height: 240px;
    aspect-ratio: auto;
  }

  .menu-frame {
    width: 100%;
    height: 240px;
    aspect-ratio: auto;
  }

  .about-section {
    text-align: left;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading p:last-child {
    margin-inline: 0;
  }

  .branch-media {
    height: 214px;
  }

  .branch-body {
    padding: 22px 18px;
  }

  .branch-details {
    grid-template-columns: 1fr;
  }

  .branch-actions,
  .branch-map {
    width: 100%;
  }

  .branch-socials {
    width: 100%;
    justify-content: space-between;
  }

  .branch-socials a {
    width: 44px;
    height: 44px;
  }

  .branch-hero {
    min-height: 560px;
    padding-top: 64px;
    padding-bottom: 70px;
    background-position: center;
  }

  .branch-hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.6rem);
  }

  .branch-hero-actions,
  .branch-button-row {
    display: grid;
    width: 100%;
  }

  .branch-hero-actions .button,
  .branch-button-row .button {
    width: 100%;
  }

  .wamunyu-about,
  .wamunyu-feature,
  .wamunyu-amenities,
  .wamunyu-gallery,
  .embakasi-showcase {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .branch-about-copy h2,
  .wamunyu-feature-copy h2,
  .embakasi-showcase h2,
  .branch-section-heading h2,
  .map-contact-card h2 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .branch-collage {
    min-height: 380px;
  }

  .collage-main {
    inset: 0 0 16% 0;
  }

  .collage-float {
    width: 62%;
    height: 46%;
    border-width: 5px;
  }

  .collage-badge {
    left: 14px;
    bottom: 14px;
    max-width: 190px;
    font-size: 0.68rem;
  }

  .wamunyu-feature-media,
  .accommodation-media-grid figure {
    height: 280px;
  }

  .accommodation-media-grid {
    grid-template-columns: 1fr;
  }

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

  .wamunyu-mini-grid article:nth-child(2n) {
    border-right: 0;
  }

  .embakasi-showcase-copy {
    padding: 0;
  }

  .embakasi-showcase-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .embakasi-showcase-grid figure {
    min-height: 0;
    height: 190px;
    aspect-ratio: auto;
  }

  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .amenity-grid article {
    min-height: 0;
  }

  .gallery-strip {
    grid-template-columns: repeat(7, minmax(180px, 74vw));
  }

  .wamunyu-contact-map {
    min-height: auto;
    align-items: start;
    gap: 0;
    padding-top: 52px;
    padding-bottom: 64px;
    background:
      radial-gradient(circle at 50% 0%, rgba(232, 184, 78, 0.12), transparent 18rem),
      linear-gradient(180deg, #050807, #06291f);
  }

  .wamunyu-contact-map::after {
    display: none;
  }

  .branch-map-art {
    position: relative;
    inset: auto;
    z-index: 1;
    height: clamp(220px, 58vw, 310px);
    border: 1px solid rgba(232, 184, 78, 0.28);
    border-radius: 8px;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
  }

  .branch-map-art img {
    filter: saturate(0.94) contrast(0.98);
  }

  .map-contact-card {
    z-index: 2;
    width: 100%;
    margin-top: -22px;
    padding: 24px 18px;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.38);
  }

  .about-section h2::after {
    margin-inline: 0;
  }

  .copyright {
    text-align: left;
  }

  .mobile-dock {
    position: fixed;
    left: 12px;
    right: auto;
    bottom: 12px;
    z-index: 70;
    width: calc(100vw - 24px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--gold-line);
    border-radius: 8px;
    background: rgba(6, 41, 31, 0.95);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
    will-change: transform;
  }

  .mobile-dock a {
    min-width: 0;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 6px;
    color: var(--white);
    background: rgba(255, 250, 240, 0.08);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-dock a.mobile-primary {
    color: #211507;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  }
}

/* Integrated hero/header normalization.
   Keeping it here removes an extra render-blocking stylesheet request while preserving the tuned hero sizing. */
@media (min-width: 900px) {
  .hero {
    min-height: clamp(520px, 62vh, 640px);
    max-height: 660px;
    padding: clamp(44px, 5vh, 64px) clamp(48px, 5vw, 88px);
    display: grid;
    align-items: center;
    background-size: cover;
    background-position: center 52%;
  }

  .hero-content {
    width: min(100%, 1440px);
    margin: 0 auto;
  }

  .hero-copy {
    max-width: clamp(330px, 28vw, 460px);
  }

  .hero .eyebrow {
    font-size: clamp(0.72rem, 0.62vw, 0.88rem);
    margin-bottom: clamp(12px, 1.1vw, 18px);
  }

  .hero h1 {
    font-size: clamp(3.4rem, 4.4vw, 5rem);
    line-height: 0.88;
    margin: 0 0 clamp(20px, 2vw, 30px);
  }

  .hero h1::after {
    width: clamp(56px, 4.8vw, 76px);
    margin-top: clamp(16px, 1.5vw, 24px);
  }

  .hero-lede {
    max-width: 460px;
    font-size: clamp(0.9rem, 0.82vw, 1.05rem);
    line-height: 1.5;
  }

  .hero-meta {
    gap: clamp(16px, 1.55vw, 26px);
    margin-top: clamp(20px, 1.8vw, 28px);
    font-size: clamp(0.78rem, 0.72vw, 0.9rem);
  }

  .hero .button-row {
    gap: clamp(12px, 1.1vw, 18px);
    margin-top: clamp(22px, 1.9vw, 30px);
  }

  .hero .button-row .button {
    box-sizing: border-box;
    width: auto;
    flex: 0 0 auto;
    min-width: clamp(132px, 9.5vw, 158px);
    max-width: 174px;
    height: 44px;
    min-height: 44px;
    padding: 0 clamp(16px, 1.3vw, 22px);
    gap: 10px;
    font-size: clamp(0.76rem, 0.68vw, 0.86rem);
    line-height: 1;
    letter-spacing: 0;
  }

  .hero .button-row .button-icon,
  .hero .button-row .button .icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }
}

.image-frame,
.split-frame,
.menu-frame {
  border: 0;
  outline: 0;
}

.not-found-page {
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
  padding: 120px 7vw;
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.66) 45%, rgba(0, 0, 0, 0.34) 100%),
    url("./assets/hero-tabletop-wide-v1.jpg") center / cover no-repeat;
  border-bottom: 1px solid rgba(220, 164, 38, 0.22);
}

.not-found-content {
  width: min(760px, 100%);
  text-align: center;
}

.not-found-content h1 {
  margin: 0 auto 24px;
}

.not-found-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.not-found-content .button-row {
  justify-content: center;
}

@media (max-width: 899px) {
  html,
  body {
    overflow-x: hidden;
  }

  .hero {
    min-height: auto;
    padding: 40px 14px 56px;
    background-image: url("./assets/hero-tabletop-mobile.jpg");
    background-position: 66% 42%;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero .eyebrow {
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 18vw, 5.6rem);
    line-height: 0.88;
    margin-bottom: 24px;
  }

  .hero-lead {
    width: min(100%, 350px);
    max-width: 350px;
    font-size: 1rem;
    line-height: 1.45;
    overflow-wrap: break-word;
  }

  .hero-meta {
    gap: 14px;
    font-size: 0.9rem;
  }

  .hero .button-row {
    width: 100%;
    gap: 12px;
    margin-top: 60px;
  }

  .hero .button-row .button {
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 54px;
    min-height: 54px;
    padding: 0 22px;
    font-size: 0.9rem;
  }

  .mobile-dock {
    left: 12px;
    right: auto;
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    box-sizing: border-box;
    transform: none;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 4px;
    padding: 5px;
  }

  .mobile-dock a {
    min-width: 0;
    gap: 3px;
    padding-inline: 3px;
    font-size: 0.58rem;
  }

  .mobile-dock .icon {
    width: 12px;
    height: 12px;
  }

  .mobile-dock .icon {
    font-size: 12px;
  }
}

/* Very narrow screens need smaller display type so headings do not overflow. */
@media (max-width: 420px) {
  h1 {
    font-size: 3.45rem;
  }

  h2,
  .reservation-band h2,
  .about-section h2 {
    font-size: 2.12rem;
  }
}

/* Final tablet portrait pass: this appears after the mobile hero rules so iPad-sized
   screens do not inherit phone-only spacing and full-width CTAs. */
@media (min-width: 721px) and (max-width: 899px) {
  .hero {
    padding: 64px clamp(38px, 6vw, 64px) 72px;
    background-position: center center;
  }

  .hero-copy {
    max-width: 540px;
  }

  .hero h1 {
    font-size: clamp(4.25rem, 10vw, 5.4rem);
    line-height: 0.88;
    margin-bottom: 24px;
  }

  .hero-lead {
    width: min(100%, 520px);
    max-width: 520px;
    font-size: 1.12rem;
  }

  .hero-meta {
    font-size: 1rem;
  }

  .hero .button-row {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero .button-row .button {
    width: auto;
    min-width: 170px;
    max-width: none;
    height: 56px;
    min-height: 56px;
    padding: 0 26px;
    font-size: 0.92rem;
  }
}

/* Respect reduced-motion preferences while keeping all content visible. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
