/* Saint Tropez — Mediterranean coastal elegance */

:root {
  --cream: #f5e6d3;
  --cream-dark: #e8d5c0;
  --cream-light: #faf3ea;
  --forest: #1a3c34;
  --forest-deep: #103020;
  --forest-light: #2d5a4a;
  --burgundy: #631b1b;
  --burgundy-light: #8a2e2e;
  --gold: #c4a574;
  --text: #2c2824;
  --text-muted: #6b6358;
  --white: #ffffff;
  --shadow: rgba(26, 60, 52, 0.12);
  --shadow-lg: rgba(26, 60, 52, 0.2);
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Jost", "Helvetica Neue", sans-serif;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --nav-height: 64px;
  --strip-height: 40px;
  --mobile-bar-height: 60px;
  --header-offset: calc(var(--nav-height) + var(--strip-height));
  --menu-sticky-height: 96px;
  --whatsapp-float-size: 52px;
  --touch-min: 44px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.45s var(--ease-out);
  --transition-slow: 0.65s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream-light);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom, 0px));
}

body.nav-open {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--forest);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 1rem;
}

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

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

ul {
  list-style: none;
}

:focus {
  outline: none;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  padding-inline: var(--space-2);
  margin-inline: auto;
}

/* Striped accent — from menu border design */
.striped-accent {
  position: relative;
}

.striped-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    var(--cream) 0,
    var(--cream) 3px,
    var(--forest) 3px,
    var(--forest) 6px
  );
}

/* Info strip — hours & phone */
.info-strip {
  position: fixed;
  top: 0;
  left: env(safe-area-inset-left, 0px);
  right: env(safe-area-inset-right, 0px);
  z-index: 1001;
  background: var(--forest);
  color: var(--cream);
  font-size: clamp(0.68rem, 2.8vw, 0.75rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: env(safe-area-inset-top, 0px);
}

.info-strip__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  min-height: var(--strip-height);
  padding: 0.3rem 0;
  text-align: center;
  flex-wrap: nowrap;
}

.info-strip__hours {
  opacity: 0.88;
}

.info-strip__phone {
  color: var(--gold);
  font-weight: 600;
  transition: opacity var(--transition);
}

.info-strip__phone:hover {
  opacity: 0.85;
}

/* Navigation */
.nav {
  position: fixed;
  top: var(--strip-height);
  left: env(safe-area-inset-left, 0px);
  right: env(safe-area-inset-right, 0px);
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(250, 243, 234, 0.84);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  border-bottom: 1px solid rgba(26, 60, 52, 0.08);
  transition:
    background var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition),
    border-color var(--transition);
}

.nav.scrolled {
  background: rgba(250, 243, 234, 0.94);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: rgba(26, 60, 52, 0.06);
  box-shadow: 0 1px 0 rgba(26, 60, 52, 0.06), 0 4px 24px var(--shadow);
}

.nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  padding-inline: var(--space-2);
  height: 100%;
  margin-inline: auto;
  gap: 1rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  line-height: 1;
  flex: 1 1 auto;
  min-width: 0;
  flex-shrink: 0;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav__lang {
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  padding: 0.4rem 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.45);
  border: 1.5px solid rgba(26, 60, 52, 0.42);
  color: var(--forest-deep);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.nav__lang:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.nav__lang:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav__logo-icon {
  width: auto;
  height: 1.3em;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  /* Fan glyph visual weight sits above geometric center */
  transform: translateY(0.2em);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-deep);
  line-height: 1;
  white-space: nowrap;
}

.nav__logo-dot {
  margin: 0 0.28em;
  opacity: 0.65;
}

.nav__links {
  position: fixed;
  top: var(--header-offset);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  padding: 1.75rem var(--space-2) 2rem;
  max-height: calc(100dvh - var(--header-offset));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(250, 243, 234, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(calc(-100% - 1rem));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform var(--transition),
    opacity var(--transition),
    visibility var(--transition);
  box-shadow: 0 8px 32px var(--shadow);
  border-bottom: 1px solid rgba(26, 60, 52, 0.08);
  order: 4;
  width: 100%;
  z-index: 999;
}

.nav__divider {
  width: min(200px, 60%);
  height: 1px;
  background: rgba(26, 60, 52, 0.1);
  margin: 0.15rem 0;
  list-style: none;
  flex-shrink: 0;
}

.nav__lang-item {
  list-style: none;
  margin-top: 0.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(26, 60, 52, 0.1);
  width: 100%;
  display: flex;
  justify-content: center;
}

.nav__lang--drawer {
  min-width: 120px;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-deep);
  position: relative;
  padding: 0.35rem 0;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  transition:
    color var(--transition),
    opacity var(--transition);
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest);
  transition: width var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--forest);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  background: rgba(255, 255, 255, 0.45);
  border: 1.5px solid rgba(26, 60, 52, 0.35);
  border-radius: 2px;
  cursor: pointer;
  padding: 9px 8px;
  transition:
    background var(--transition),
    border-color var(--transition);
}

.nav__toggle:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(26, 60, 52, 0.5);
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--forest-deep);
  border-radius: 1px;
  transition: var(--transition);
}

.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero — mobile-first, premium editorial */
.hero {
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  background-color: var(--forest-deep);
  overflow: hidden;
  padding-top: var(--header-offset);
  padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
}

.hero__bg {
  position: absolute;
  inset: -5%;
  background-image: url("../assets/hero-sunset.jpeg");
  background-image: image-set(
    url("../assets/hero-sunset.webp") type("image/webp"),
    url("../assets/hero-sunset.jpeg") type("image/jpeg")
  );
  background-size: cover;
  background-position: center 42%;
  will-change: transform;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(16, 48, 32, 0.92) 0%,
    rgba(16, 48, 32, 0.55) 26%,
    transparent 52%
  );
  z-index: 1;
}

.hero__watermark {
  display: none;
}

.hero__stripes {
  display: none;
}

.hero__content {
  text-align: center;
  position: relative;
  z-index: 3;
  padding: 0 var(--space-2) 0.25rem;
  max-width: 420px;
  width: 100%;
  margin-inline: auto;
}

.hero__anim {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out) var(--delay, 0s) forwards;
}

.hero__logo-wrap {
  margin-bottom: 0;
}

.hero__logo-mark {
  width: min(52px, 13vw);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  opacity: 0.92;
}

.hero__logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 7.5vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 1rem;
  line-height: 1.05;
  margin-right: -0.28em;
}

.hero__logo-dot {
  margin: 0 0.35em;
  color: var(--gold);
  opacity: 0.85;
}

.hero__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(245, 230, 211, 0.62);
  margin-top: 0.55rem;
}

.hero__rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 1.25rem;
  opacity: 0.7;
}

.hero__meta {
  display: block;
  margin-bottom: 1.85rem;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 230, 211, 0.5);
  line-height: 1.5;
}

.hero__meta-divider,
.hero__hours {
  display: none;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 4.2vw, 1.12rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(245, 230, 211, 0.92);
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 340px;
  margin-inline: auto;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
}

.hero__cta .btn {
  width: 100%;
  max-width: none;
  min-height: 48px;
  padding: 0.95rem 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

.hero__cta .hero__cta-secondary {
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  border-width: 1px;
}

.hero__cta .hero__cta-reserve {
  display: none;
}

.hero__cta .btn--primary {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.hero__cta .btn--primary:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch-min);
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--forest);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.btn--primary {
  background: var(--forest);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
}

.btn--outline {
  background: rgba(250, 243, 234, 0.65);
  color: var(--forest);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn--burgundy {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--cream);
}

.btn--burgundy:hover {
  background: var(--burgundy-light);
  border-color: var(--burgundy-light);
}

.btn--burgundy-outline {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.btn--burgundy-outline:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--cream);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(245, 230, 211, 0.38);
  color: var(--cream);
}

.btn--ghost:hover {
  background: rgba(245, 230, 211, 0.08);
  border-color: rgba(245, 230, 211, 0.55);
  color: var(--cream);
}

.btn--light.btn--primary {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}

.btn--light.btn--primary:hover {
  background: var(--white);
  border-color: var(--white);
}

.btn--light.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 230, 211, 0.45);
}

.btn--light.btn--outline:hover {
  background: rgba(245, 230, 211, 0.12);
  color: var(--cream);
  border-color: var(--cream);
}

.hero__scroll {
  display: flex;
  position: absolute;
  bottom: calc(0.75rem + var(--mobile-bar-height) + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}

.hero__scroll-label {
  display: none;
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(196, 165, 116, 0.7), transparent);
  animation: scrollPulse 2.8s var(--ease-out) infinite;
}

/* Section shared */
.section {
  padding: clamp(3rem, 6vw, 6.5rem) 0;
}

.section--cream {
  background: var(--cream);
}

.section--light {
  background: var(--cream-light);
}

.section--forest {
  background: var(--forest);
  color: var(--cream);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.section--forest .section__label {
  color: var(--cream-dark);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--forest);
  line-height: 1.2;
}

.section--forest .section__title {
  color: var(--cream);
}

.section__divider {
  width: 56px;
  height: 1px;
  background: var(--forest);
  margin: 1.15rem auto 0;
  opacity: 0.35;
}

.section--forest .section__divider {
  background: var(--cream);
}

.section--lounge {
  background: linear-gradient(165deg, #faf3ea 0%, #f0ddd0 48%, rgba(99, 27, 27, 0.06) 100%);
  position: relative;
}

.section--lounge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--burgundy);
}

.section__divider--burgundy {
  background: var(--burgundy);
  opacity: 0.45;
}

.section--lounge .section__title {
  color: var(--burgundy);
}

.section--lounge .section__label {
  color: var(--burgundy-light);
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: start;
}

.about__text p {
  margin-bottom: 1.15rem;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.about__text p:first-of-type {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--forest);
  line-height: 1.7;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

.about__groups {
  margin-top: 1.15rem;
  padding: 0.85rem 1rem;
  background: rgba(26, 60, 52, 0.06);
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
  font-style: italic;
}

.about__feature--burgundy {
  border-left-color: var(--burgundy);
}

.about__feature {
  padding: 1.35rem;
  background: var(--cream-light);
  border-left: 3px solid var(--forest);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about__feature:hover {
  box-shadow: 0 8px 24px var(--shadow);
}

.about__feature h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.35rem;
}

.about__feature p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
}

.about__visual {
  position: relative;
  top: auto;
  align-self: start;
  padding-bottom: 1.5rem;
}

.about__visual.reveal {
  transform: none;
  transition: opacity 0.75s var(--ease-out);
}

.about__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 60px var(--shadow-lg);
}

.about__badge {
  position: absolute;
  bottom: 0;
  left: 1rem;
  background: var(--forest);
  color: var(--cream);
  padding: 1.15rem 1.35rem;
  text-align: center;
}

.about__badge-number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
}

.about__badge-text {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  opacity: 0.85;
}

/* Lounge */
.lounge__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}

.lounge__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.3rem);
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.lounge__content > p:not(.lounge__lead) {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.lounge__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.lounge__card {
  display: block;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(99, 27, 27, 0.12);
  border-top: 3px solid var(--burgundy);
  transition: transform var(--transition), box-shadow var(--transition);
}

.lounge__card:active {
  transform: scale(0.99);
  background: rgba(255, 255, 255, 0.72);
}

.lounge__card-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy-light);
  margin-bottom: 0.35rem;
}

.lounge__card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.35rem;
}

.lounge__card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.lounge__card-price {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest);
}

.lounge__visual {
  align-self: center;
  max-width: 480px;
  margin-inline: auto;
  width: 100%;
  overflow: hidden;
}

.lounge__menu-panel {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(99, 27, 27, 0.15);
}

.lounge__menu-panel picture {
  display: block;
}

.lounge__menu-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.lounge__menu-img--primary {
  aspect-ratio: 3 / 4;
}

.lounge__menu-img--secondary {
  position: absolute;
  bottom: -6%;
  right: -3%;
  width: 36%;
  border: 4px solid var(--cream-dark);
  box-shadow: 0 12px 40px var(--shadow-lg);
  transform: rotate(4deg);
}

.lounge__menu-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(99, 27, 27, 0.72) 0%, transparent 52%);
  pointer-events: none;
}

.lounge__menu-overlay p {
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.lounge__cta .btn {
  width: 100%;
  max-width: 300px;
}

/* Signatures */
.signatures__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 420px;
  margin-inline: auto;
}

.signatures__card {
  display: block;
  background: var(--cream-light);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  color: inherit;
}

.signatures__card:active {
  transform: scale(0.98);
  box-shadow: 0 8px 24px var(--shadow);
}

.signatures__card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform var(--transition-slow);
}


.signatures__body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.signatures__body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.45rem;
}

.signatures__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Menu */
.menu-sticky-sentinel {
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.menu-sticky-bar {
  position: sticky;
  top: var(--header-offset);
  z-index: 50;
  margin-bottom: 1.5rem;
  background: rgba(245, 230, 211, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 60, 52, 0.08);
  transition: box-shadow var(--transition);
}

.menu-sticky-bar.is-stuck {
  box-shadow: 0 4px 16px var(--shadow);
}

.menu-tabs {
  display: flex;
  justify-content: stretch;
  gap: 0.5rem;
  padding: 0.65rem var(--space-2) 0.5rem;
  flex-wrap: nowrap;
}

.menu-tab {
  flex: 1;
  min-height: var(--touch-min);
  padding: 0.6rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--forest);
  color: var(--cream);
}

.menu-tab--cocktail.active,
.menu-tab--cocktail:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--cream);
}

.menu-jump {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0.5rem var(--space-2) 0.65rem;
  scroll-padding-inline: var(--space-2);
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: box-shadow var(--transition);
}

.menu-jump:not([hidden]) {
  border-top: 1px solid rgba(26, 60, 52, 0.06);
}

.menu-jump::-webkit-scrollbar {
  display: none;
}

.menu-jump[hidden] {
  display: none;
}

.menu-jump__link {
  flex-shrink: 0;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid transparent;
  border-radius: 2px;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition);
  white-space: nowrap;
}

.menu-jump__link:hover,
.menu-jump__link.active {
  color: var(--forest);
  background: rgba(26, 60, 52, 0.06);
  border-color: rgba(26, 60, 52, 0.12);
}

.menu-panels {
  position: relative;
}

.menu-panels > .menu-panel {
  display: none;
}

.menu-panels > .menu-panel.active {
  display: block;
}

.menu-category {
  margin-bottom: 2.75rem;
  scroll-margin-top: calc(var(--header-offset) + var(--menu-sticky-height));
}

.menu-item {
  scroll-margin-top: calc(var(--header-offset) + var(--menu-sticky-height));
}

.menu-category__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(26, 60, 52, 0.18);
  margin-bottom: 1.25rem;
}

.menu-category__title--burgundy {
  color: var(--burgundy);
  border-bottom-color: rgba(99, 27, 27, 0.2);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-item__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  width: 100%;
}

.menu-item__name {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
}

.menu-item__leaders {
  display: none;
  flex: 1;
  min-width: 1.5rem;
  border-bottom: 1px dotted rgba(26, 60, 52, 0.22);
  margin-bottom: 0.2em;
  align-self: flex-end;
}

.menu-item__price {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
  margin-top: 0.1rem;
}

.menu-category--burgundy .menu-item__price {
  color: var(--burgundy);
}

.menu-item__desc {
  display: block;
  font-size: 0.86rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.15rem;
  padding-right: 0.5rem;
}

.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.35rem 1.5rem;
  background: var(--cream-light);
  font-size: 0.86rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
}

/* Gallery */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  border-radius: 2px;
  border: none;
  padding: 0;
  background: none;
  font: inherit;
  text-align: left;
  width: 100%;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}


.gallery__item--wide {
  grid-column: span 1;
  aspect-ratio: 3 / 4;
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 60, 52, 0.72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.15rem;
  opacity: 1;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__caption {
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Reviews */
.reviews__intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
}

.reviews__google {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.reviews__google-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(26, 60, 52, 0.1);
  box-shadow: 0 4px 20px var(--shadow);
}

.reviews__google-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.reviews__google-score {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.reviews__google-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
}

.reviews__google-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.reviews__stars {
  display: inline-flex;
  gap: 2px;
}

.reviews__stars--card {
  margin-bottom: 0.75rem;
}

.reviews__star {
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.25;
}

.reviews__star--full {
  opacity: 1;
}

.reviews__star--partial {
  opacity: 1;
  background: linear-gradient(90deg, var(--gold) 80%, rgba(196, 165, 116, 0.25) 80%);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.reviews__card {
  background: var(--cream-light);
  padding: 1.75rem;
  border-left: 3px solid var(--forest);
  margin: 0;
  position: relative;
}

.reviews__card::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
}

.reviews__quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.reviews__card p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.reviews__card footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.reviews__card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--forest);
}

.reviews__source {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(196, 165, 116, 0.35);
  border-radius: 2px;
}

.reviews__cta {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Location & Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact__card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 230, 211, 0.15);
}

.contact__card--hours {
  margin-top: 1.25rem;
}

.contact__card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
  color: var(--cream);
}

.contact__detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.15rem;
  align-items: flex-start;
}

.contact__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.contact__detail strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.2rem;
}

.contact__detail span,
.contact__detail a {
  font-size: 0.98rem;
  color: var(--cream);
  transition: color var(--transition);
}

.contact__detail a:hover {
  color: var(--gold);
}

.contact__hours {
  display: grid;
  gap: 0.45rem;
}

.contact__hour-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.35rem 1rem;
  font-size: 0.85rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.contact__hour-row span:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.contact__hour-row span:last-child {
  opacity: 0.85;
  white-space: nowrap;
  flex-shrink: 0;
}

.contact__map {
  border-radius: 2px;
  overflow: hidden;
  height: auto;
  min-height: 260px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  filter: grayscale(30%) sepia(20%);
}

.visit__cta {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(245, 230, 211, 0.12);
}

.visit__cta-text {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-style: italic;
  margin-bottom: 1.5rem;
  opacity: 0.92;
  max-width: 520px;
  margin-inline: auto;
}

.visit__cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.visit__cta-buttons .btn {
  width: 100%;
}

/* Footer */
.footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 2.5rem 0;
  text-align: center;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.footer__logo-icon {
  width: auto;
  height: 1.3em;
  object-fit: contain;
  opacity: 0.9;
  flex-shrink: 0;
  display: block;
  transform: translateY(0.2em);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.footer__text {
  font-size: 0.8rem;
  opacity: 0.65;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.15rem;
  flex-wrap: wrap;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  padding: 0.35rem 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
}

.footer__social a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer__social-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}

.footer__copy {
  font-size: 0.78rem;
  opacity: 0.5;
  margin-top: 1.35rem;
}

/* WhatsApp floating action button */
.whatsapp-float {
  position: fixed;
  right: calc(1.15rem + env(safe-area-inset-right, 0px));
  bottom: calc(var(--mobile-bar-height) + 3.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--whatsapp-float-size);
  height: var(--whatsapp-float-size);
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow:
    0 2px 10px rgba(16, 48, 32, 0.14),
    0 6px 20px rgba(37, 211, 102, 0.22);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.whatsapp-float:hover {
  background: #1ebe5d;
  box-shadow:
    0 4px 14px rgba(16, 48, 32, 0.16),
    0 8px 28px rgba(37, 211, 102, 0.32);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.whatsapp-float__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: whatsappPulse 2.5s var(--ease-out) infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }
  70% {
    transform: scale(1.45);
    opacity: 0;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(16, 48, 32, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  visibility: hidden;
  pointer-events: none;
  transition:
    background 0.5s var(--ease-out),
    visibility 0.5s var(--ease-out);
}

.lightbox.open {
  visibility: visible;
  pointer-events: auto;
  background: rgba(16, 48, 32, 0.92);
}

.lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  margin: 0;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}

.lightbox.open .lightbox__img {
  opacity: 1;
  transform: scale(1);
}

.lightbox__caption {
  margin-top: 1rem;
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.85;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(250, 243, 234, 0.1);
  border: 1px solid rgba(245, 230, 211, 0.2);
  color: var(--cream);
  cursor: pointer;
  line-height: 1;
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.lightbox__close {
  top: calc(1rem + env(safe-area-inset-top, 0px));
  right: calc(1rem + env(safe-area-inset-right, 0px));
  font-size: 2rem;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  padding: 0.25rem 0.6rem;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  padding: 0.75rem 1rem;
}

.lightbox__prev {
  left: 1rem;
}

.lightbox__next {
  right: 1rem;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  opacity: 1;
  background: rgba(250, 243, 234, 0.18);
}

.lightbox__prev:hover,
.lightbox__next:hover {
  transform: translateY(-50%);
}

/* Animations */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.35; transform: scaleY(0.65); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile bottom bar */
.mobile-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(250, 243, 234, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(26, 60, 52, 0.1);
  box-shadow: 0 -4px 24px var(--shadow);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: var(--mobile-bar-height);
  padding: 0.65rem 0.5rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  transition: background var(--transition);
}

.mobile-bar__item:hover,
.mobile-bar__item:focus-visible {
  background: rgba(26, 60, 52, 0.05);
}

/* Mobile refinements */
@media (max-width: 479px) {
  .info-strip__phone {
    display: none;
  }

  .info-strip__hours {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .lounge__menu-img--secondary {
    display: none;
  }
}

@media (min-width: 390px) {
  .gallery__item--wide {
    aspect-ratio: 16 / 10;
  }
}

@media (min-width: 480px) {
  .reviews__google-badge {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .lounge__menu-img--secondary {
    width: 28%;
    bottom: -4%;
    right: -2%;
    border-width: 3px;
  }
}

@media (max-width: 767px) {
  .hero {
    align-items: center;
    justify-content: flex-end;
  }

  .hero__logo-wrap.hero__anim {
    --delay: 0s;
  }

  .hero__rule.hero__anim {
    --delay: 0.05s;
  }

  .hero__tagline.hero__anim {
    --delay: 0.1s;
  }

  .hero__meta.hero__anim {
    --delay: 0.15s;
  }

  .hero__cta.hero__anim {
    --delay: 0.25s;
  }

  .hero__scroll.hero__anim {
    --delay: 0.35s;
  }

  .whatsapp-float__pulse {
    animation: none;
    opacity: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--shadow-lg);
  }

  .btn--outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
  }

  .btn--burgundy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(99, 27, 27, 0.28);
  }

  .btn--ghost:hover {
    transform: translateY(-1px);
  }

  .about__feature:hover {
    transform: translateY(-2px);
  }

  .lounge__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 27, 27, 0.12);
  }

  .signatures__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px var(--shadow-lg);
  }

  .signatures__card:hover img {
    transform: scale(1.04);
  }

  .gallery__item:hover img {
    transform: scale(1.05);
  }

  .menu-tab:hover {
    transform: translateY(-1px);
  }

  .whatsapp-float:hover {
    transform: translateY(-2px);
  }

  .lightbox__close:hover {
    transform: scale(1.08);
  }

  .lightbox__prev:hover,
  .lightbox__next:hover {
    transform: translateY(-50%) scale(1.05);
  }
}

/* Progressive enhancement — min-width breakpoints */

/* Tablet */
@media (min-width: 768px) {
  :root {
    --nav-height: 80px;
    --strip-height: 36px;
    --menu-sticky-height: 110px;
  }

  body {
    padding-bottom: 0;
  }

  .info-strip__inner {
    flex-direction: row;
    justify-content: center;
    gap: 1.25rem;
    padding: 0.35rem 0;
    text-align: center;
  }

  .info-strip__phone {
    display: inline;
  }

  .nav__divider,
  .nav__lang-item {
    display: none;
  }

  .nav__links {
    max-height: none;
    overflow-y: visible;
    padding: 0;
  }

  .nav__inner {
    flex-wrap: nowrap;
  }

  .nav__logo {
    flex: 0 1 auto;
    font-size: 1.05rem;
  }

  .nav__logo-text {
    letter-spacing: 0.18em;
  }

  .nav__links {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-bottom: none;
    order: unset;
    width: auto;
    z-index: auto;
  }

  .nav__links a {
    font-size: 0.72rem;
    padding-bottom: 4px;
    min-height: auto;
    display: inline;
  }

  .nav__toggle {
    display: none;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    align-items: center;
    padding-bottom: 0;
    background-color: var(--cream);
  }

  .hero::before {
    background: linear-gradient(
      to top,
      rgba(16, 48, 32, 0.55) 0%,
      rgba(16, 48, 32, 0.18) 28%,
      rgba(250, 243, 234, 0.12) 55%,
      rgba(250, 243, 234, 0.2) 100%
    );
  }

  .hero__watermark {
    display: flex;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0.035;
    z-index: 1;
  }

  .hero__watermark img {
    width: min(50vw, 420px);
    height: auto;
  }

  .hero__stripes {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 100%;
    z-index: 2;
    background: var(--forest);
    background-image: repeating-linear-gradient(
      to bottom,
      var(--cream) 0,
      var(--cream) 4px,
      var(--forest) 4px,
      var(--forest) 8px
    );
    opacity: 0.92;
  }

  .hero__content {
    padding: 2rem 1.5rem 3.5rem;
    max-width: 720px;
  }

  .hero__logo-wrap {
    margin-bottom: 0;
  }

  .hero__logo-mark {
    width: min(88px, 18vw);
    filter: none;
  }

  .hero__logo-text {
    font-size: clamp(2.15rem, 5.5vw, 3.25rem);
    font-weight: 400;
    letter-spacing: 0.26em;
    margin-top: 1.15rem;
    margin-right: -0.26em;
    color: var(--forest);
  }

  .hero__logo-dot {
    color: var(--gold);
    opacity: 0.8;
  }

  .hero__logo-sub {
    font-size: clamp(0.62rem, 1.4vw, 0.72rem);
    letter-spacing: 0.36em;
    margin-top: 0.6rem;
    color: var(--text-muted);
  }

  .hero__rule {
    width: 48px;
    margin: 1.65rem auto 1.35rem;
  }

  .hero__tagline {
    font-size: clamp(1.08rem, 3.2vw, 1.4rem);
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 1.15rem;
    max-width: 560px;
    color: var(--forest-deep);
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }

  .hero__meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: var(--text-muted);
  }

  .hero__meta-divider {
    display: inline;
    opacity: 0.35;
  }

  .hero__hours {
    display: inline;
    color: var(--text-muted);
    font-weight: 500;
  }

  .hero__cta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: auto;
    max-width: none;
  }

  .hero__cta .btn {
    width: auto;
    max-width: none;
    min-height: var(--touch-min);
    padding: 0.9rem 1.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .hero__cta .btn--primary {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--cream);
  }

  .hero__cta .btn--ghost {
    border-color: rgba(26, 60, 52, 0.35);
    color: var(--forest);
  }

  .hero__cta .btn--ghost:hover {
    background: rgba(26, 60, 52, 0.06);
    border-color: var(--forest);
    color: var(--forest);
  }

  .hero__cta .hero__cta-reserve {
    display: inline-flex;
  }

  .hero__scroll {
    bottom: 2rem;
    gap: 0.65rem;
    color: var(--forest);
    opacity: 0.45;
  }

  .hero__scroll-label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .hero__scroll-line {
    height: 36px;
    background: linear-gradient(to bottom, rgba(26, 60, 52, 0.5), transparent);
  }

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

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

  .signatures__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    margin-inline: 0;
  }

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

  .gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }

  .menu-tabs {
    justify-content: center;
    max-width: 420px;
    margin-inline: auto;
  }

  .menu-tab {
    flex: 0 1 auto;
    padding: 0.6rem 1.5rem;
  }

  .menu-item__header {
    flex-direction: row;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 0.35rem;
  }

  .menu-item__leaders {
    display: block;
    order: unset;
    flex-basis: auto;
    margin-top: 0;
  }

  .menu-item__price {
    margin-top: 0;
  }

  .contact__map,
  .contact__map iframe {
    min-height: 340px;
  }

  .contact__hour-row {
    font-size: 0.92rem;
  }

  .visit__cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .visit__cta-buttons .btn {
    width: auto;
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 140px;
  }

  .mobile-bar {
    display: none;
  }

  .whatsapp-float {
    right: calc(1.25rem + env(safe-area-inset-right, 0px));
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Small desktop — two-column layouts */
@media (min-width: 900px) {
  .about__grid,
  .lounge__grid,
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .about__grid {
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .about__visual {
    position: sticky;
    top: calc(var(--header-offset) + 1.5rem);
  }

  .about__badge {
    bottom: -1.25rem;
    left: -1.25rem;
    padding: 1.35rem 1.75rem;
  }

  .lounge__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .lounge__cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .lounge__visual {
    max-width: none;
    margin-inline: 0;
  }

  .lounge__cta .btn {
    width: auto;
  }

  .contact__map {
    min-height: 100%;
  }

  .contact__map iframe {
    min-height: 100%;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .container {
    max-width: 1160px;
  }

  .info-strip {
    font-size: 0.72rem;
  }

  .info-strip__inner {
    justify-content: space-between;
    text-align: left;
    gap: 1.5rem;
  }

  .nav__inner {
    max-width: 1160px;
    gap: 1.25rem;
  }

  .nav__links {
    flex: 1 1 auto;
    justify-content: center;
    gap: 0.2rem 1rem;
  }

  .nav__links a {
    font-size: 0.68rem;
    padding: 0.35rem 0.5rem;
    display: inline-flex;
  }

  .hero__stripes {
    width: 48px;
  }

  .hero__watermark img {
    width: min(40vw, 500px);
  }

  .hero__content {
    max-width: 900px;
    padding: 2.5rem 2rem 4rem;
  }

  .hero__logo-mark {
    width: 100px;
  }

  .hero__logo-text {
    font-size: clamp(2.75rem, 4vw, 4rem);
    letter-spacing: 0.28em;
    margin-right: -0.28em;
  }

  .hero__logo-sub {
    font-size: 0.72rem;
    letter-spacing: 0.38em;
  }

  .hero__rule {
    width: 52px;
    margin: 1.85rem auto 1.5rem;
  }

  .hero__tagline {
    font-size: clamp(1.25rem, 1.5vw, 1.55rem);
    max-width: 620px;
    margin-bottom: 1.25rem;
  }

  .hero__meta {
    margin-bottom: 2.25rem;
  }

  .hero__cta {
    gap: 0.85rem 1rem;
  }

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

  .signatures__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
  }

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

  .gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }

  .gallery__item:not(.gallery__item--wide) {
    aspect-ratio: 4 / 5;
  }

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

  .lounge__menu-img--secondary {
    bottom: -10%;
    right: -6%;
    width: 42%;
  }

  .menu-panels {
    max-width: 880px;
    margin-inline: auto;
  }

  .menu-tabs {
    max-width: 400px;
  }

  .contact__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 3vw, 3rem);
    align-items: stretch;
  }

  .contact__map iframe {
    min-height: 440px;
  }

  .visit__cta-buttons .btn {
    flex: 0 1 auto;
  }

  .footer {
    padding: 2rem 0;
    text-align: left;
  }

  .footer .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem 2rem;
  }

  .footer__brand {
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .footer__text {
    text-align: center;
    margin: 0;
  }

  .footer__social {
    justify-content: flex-end;
    margin-top: 0;
  }

  .footer__copy {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0.25rem;
  }

  .whatsapp-float {
    right: calc(1.5rem + env(safe-area-inset-right, 0px));
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 1024px) and (hover: hover) {
  .gallery__overlay {
    opacity: 0;
  }

  .gallery__item:hover .gallery__overlay {
    opacity: 1;
  }
}

/* Large desktop */
@media (min-width: 1200px) {
  .container,
  .nav__inner {
    max-width: 1180px;
  }

  .nav__links {
    gap: 0.2rem 1.25rem;
  }

  .nav__links a {
    font-size: 0.68rem;
    padding: 0.35rem 0.55rem;
  }

  .hero__content {
    max-width: 940px;
    padding: 3rem 2rem 4.5rem;
  }

  .hero__logo-mark {
    width: 110px;
  }

  .hero__logo-text {
    font-size: 4.25rem;
    letter-spacing: 0.3em;
    margin-right: -0.3em;
  }

  .hero__tagline {
    font-size: 1.55rem;
    max-width: 680px;
  }

  .section__title {
    font-size: clamp(2.25rem, 2.8vw, 3rem);
  }

  .about__grid {
    gap: clamp(3.5rem, 5vw, 5rem);
  }

  .lounge__grid {
    gap: clamp(3.5rem, 5vw, 5rem);
  }

  .menu-panels {
    max-width: 920px;
  }

  .contact__grid {
    gap: clamp(2.5rem, 4vw, 3.5rem);
  }
}

/* Wide desktop */
@media (min-width: 1440px) {
  .section {
    padding: 7rem 0;
  }

  .hero__logo-text {
    font-size: 4.5rem;
    letter-spacing: 0.3em;
    margin-right: -0.3em;
  }

  .hero__tagline {
    font-size: 1.65rem;
    max-width: 700px;
  }

  .signatures__grid {
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about__image {
    transform: none !important;
  }

  .hero__bg {
    inset: 0;
    will-change: auto;
  }

  .hero__anim {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero__scroll-line {
    animation: none;
  }

  .whatsapp-float__pulse {
    animation: none;
    opacity: 0;
  }

  .whatsapp-float:hover {
    transform: none;
  }

  .gallery__item:hover img,
  .signatures__card:hover img {
    transform: none;
  }

  .gallery__item:hover .gallery__overlay {
    opacity: 1;
  }
}
