:root {
  --ink: #18201c;
  --muted: #5d665f;
  --paper: #f6f2e8;
  --sand: #dfd0b8;
  --sea: #007f91;
  --blue: #0069aa;
  --lime: #b8d85d;
  --coral: #ee7352;
  --white: #fffdf8;
  --shadow: 0 22px 70px rgba(24, 32, 28, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: var(--white);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 10px 35px rgba(24, 32, 28, .12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: .75;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-switch,
.icon-link {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 118px clamp(18px, 5vw, 72px) 42px;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 24, 20, .76), rgba(15, 24, 20, .38) 46%, rgba(15, 24, 20, .14)),
    linear-gradient(0deg, rgba(15, 24, 20, .66), rgba(15, 24, 20, .04) 54%);
}

.hero-content {
  width: min(820px, 100%);
}

.hero-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rating {
  padding: 6px 10px;
  border: 1px solid rgba(255, 253, 248, .5);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 253, 248, .14);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: .88;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, .9);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions,
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  text-decoration: none;
}

.btn.primary {
  color: var(--ink);
  background: var(--lime);
}

.btn.secondary {
  color: inherit;
  border-color: currentColor;
  background: rgba(255, 253, 248, .1);
}

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 42px;
  display: grid;
  width: min(330px, calc(100% - 36px));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, .26);
  border-radius: 8px;
  background: rgba(255, 253, 248, .16);
  backdrop-filter: blur(12px);
}

.hero-card div {
  padding: 16px 18px;
  background: rgba(24, 32, 28, .24);
}

.hero-card span {
  display: block;
  color: rgba(255, 253, 248, .72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 3px;
  font-size: 19px;
}

.intro-band,
.split-section,
.drinks-section,
.gallery-section,
.visit-section,
.map-section {
  padding: clamp(58px, 8vw, 118px) clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  background: var(--white);
}

.intro-copy h2,
.section-heading h2,
.feature-copy h2,
.map-copy h2 {
  max-width: 850px;
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .98;
  letter-spacing: 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.proof-strip article {
  min-height: 142px;
  padding: 18px;
  border-radius: 8px;
  background: var(--paper);
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sea);
  font-size: 36px;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-weight: 750;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.feature-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--sand);
}

.feature-image.tall {
  aspect-ratio: 4 / 5;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

blockquote {
  margin: 0;
  padding: 18px;
  border-left: 5px solid var(--coral);
  border-radius: 0 8px 8px 0;
  background: var(--white);
  font-weight: 850;
}

.drinks-section {
  background: #0d6f83;
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
}

.section-heading p {
  max-width: 670px;
  color: rgba(255, 253, 248, .78);
  font-size: 18px;
}

.drink-layout {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.menu-photo,
.drink-tabs,
.visit-cards article {
  border-radius: 8px;
}

.menu-photo {
  overflow: hidden;
  min-height: 520px;
  background: #005b95;
}

.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drink-tabs {
  display: grid;
  align-content: start;
  min-height: 520px;
  padding: clamp(22px, 4vw, 44px);
  color: var(--ink);
  background: var(--white);
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.tab-buttons button {
  min-height: 44px;
  border: 1px solid rgba(24, 32, 28, .2);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.tab-buttons button.active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.tab-panel p {
  max-width: 560px;
  color: var(--muted);
  font-size: 20px;
}

.gallery-section {
  background: var(--ink);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #26322c;
  cursor: zoom-in;
}

.gallery-item.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.visit-section {
  background: var(--white);
}

.visit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.visit-cards article {
  min-height: 255px;
  padding: 24px;
  background: var(--paper);
}

.visit-cards span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--sea);
  font-weight: 900;
}

.visit-cards h3 {
  font-size: 26px;
  line-height: 1.05;
}

.visit-cards p {
  color: var(--muted);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: stretch;
  background: var(--sand);
}

.map-copy {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: var(--white);
}

.map-copy p {
  color: var(--muted);
  font-size: 18px;
}

.map-card {
  min-height: 480px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.site-footer span {
  display: block;
  color: rgba(255, 253, 248, .66);
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 900;
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(10, 14, 12, .9);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, .5);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 253, 248, .08);
  font-size: 32px;
  cursor: pointer;
}

.mobile-cta {
  position: fixed;
  z-index: 50;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 12px 34px rgba(24, 32, 28, .24);
}

.mobile-cta a {
  display: grid;
  min-height: 46px;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--sea);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.mobile-cta a:last-child {
  color: var(--ink);
  background: var(--lime);
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .hero-card {
    position: static;
    margin-top: 34px;
  }

  .intro-band,
  .split-section,
  .section-heading,
  .drink-layout,
  .map-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 168px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 92vh;
    padding: 92px 16px 26px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .hero-content p,
  .tab-panel p,
  .feature-copy p,
  .map-copy p,
  .section-heading p {
    font-size: 17px;
  }

  .proof-strip,
  .quote-grid,
  .visit-cards {
    grid-template-columns: 1fr;
  }

  .menu-photo,
  .drink-tabs,
  .map-card {
    min-height: 420px;
  }

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

  .gallery-item,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 330px;
  }

  .site-footer {
    display: block;
    padding-bottom: 90px;
  }

  .footer-links {
    margin-top: 16px;
  }

  .mobile-cta.visible {
    display: grid;
  }
}
