:root {
  --ink: #18202b;
  --muted: #69707a;
  --paper: #f5f0e7;
  --white: #fffdf8;
  --charcoal: #15202c;
  --clay: #b48a62;
  --olive: #66734b;
  --wine: #7d3436;
  --line: rgba(24, 32, 43, 0.16);
  --shadow: 0 24px 70px rgba(24, 32, 43, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
button,
input {
  letter-spacing: 0;
}

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

svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.topbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  padding: 14px 18px;
  transition: background 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
}

.topbar.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 14px 40px rgba(24, 32, 43, 0.12);
  backdrop-filter: blur(16px);
  padding-block: 10px;
}

.nav {
  width: min(1180px, calc(100% - 36px));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  width: 130px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
}

.brand img {
  width: 100%;
}

.nav-links,
.nav-actions,
.hero-actions,
.reserve-actions,
.location-actions,
.footer div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.topbar.is-scrolled .nav-links a {
  color: var(--ink);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.topbar.is-scrolled .nav-links a:hover {
  background: rgba(180, 138, 98, 0.14);
}

.language {
  min-width: 88px;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.18);
  border: 1px solid rgba(255, 253, 248, 0.28);
}

.topbar.is-scrolled .language {
  background: rgba(24, 32, 43, 0.06);
  border-color: var(--line);
}

.language button {
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}

.topbar.is-scrolled .language button {
  color: var(--ink);
}

.language button.is-active {
  background: var(--white);
  color: var(--charcoal);
}

.topbar.is-scrolled .language button.is-active {
  background: var(--charcoal);
  color: var(--white);
}

.icon-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.18);
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.28);
}

.topbar.is-scrolled .icon-link {
  color: var(--ink);
  background: rgba(24, 32, 43, 0.06);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 24, 32, 0.9), rgba(18, 24, 32, 0.56) 48%, rgba(18, 24, 32, 0.12)),
    linear-gradient(0deg, rgba(18, 24, 32, 0.72), rgba(18, 24, 32, 0) 44%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 148px 0 58px;
}

.hero-inner > * {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e8c392;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.16;
}

.hero p:not(.eyebrow),
.intro > p,
.proof p,
.reserve-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.intro > p,
.proof p,
.reserve-copy p {
  color: var(--muted);
}

.hero-actions,
.reserve-actions,
.location-actions {
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(180, 138, 98, 0.32);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.42);
}

.quick {
  width: min(1180px, calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick div,
.hours div {
  min-height: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.quick div:last-child {
  border-right: 0;
}

.quick span,
.hours span {
  color: var(--muted);
  font-size: 13px;
}

.quick strong,
.hours strong {
  color: var(--olive);
  text-align: right;
}

.section,
.proof,
.location,
.footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding-top: 94px;
}

.intro,
.section-head,
.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 30px;
  align-items: end;
}

.menu-layout {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.54fr);
  gap: 22px;
  align-items: start;
}

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.tab {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.tab.is-active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

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

.dish-grid.is-hidden {
  display: none;
}

.dish-grid article,
.proof-cards article,
.planner {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(24, 32, 43, 0.07);
}

.dish-grid article {
  min-height: 174px;
  padding: 18px;
}

.dish-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--wine);
  font-weight: 900;
}

.dish-grid p {
  margin: 0;
  color: var(--muted);
}

.inline-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--wine);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

figure img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(21, 32, 44, 0.78);
  color: var(--white);
  font-size: 13px;
}

.proof {
  padding-top: 94px;
}

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

.proof-cards article {
  min-height: 130px;
  padding: 18px;
  display: grid;
  align-content: space-between;
}

.proof-cards strong {
  font-size: 22px;
  color: var(--charcoal);
}

.proof-cards span {
  color: var(--clay);
  font-weight: 900;
}

.reserve {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.48fr) minmax(260px, 0.38fr);
  gap: 22px;
  align-items: start;
}

.planner {
  padding: 22px;
}

.planner fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  display: grid;
  gap: 8px;
}

.planner legend,
.planner label > span {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.planner fieldset label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 11px;
  cursor: pointer;
}

.planner input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--wine);
}

.planner input[type="text"] {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.output {
  min-height: 96px;
  margin: 16px 0;
  padding: 14px;
  border-radius: 8px;
  background: rgba(102, 115, 75, 0.12);
  color: var(--olive);
  font-weight: 800;
}

.bar-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location {
  margin-top: 94px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
}

.location .eyebrow {
  color: #e8c392;
}

.hours {
  margin-top: 24px;
  display: grid;
  gap: 9px;
}

.hours div {
  min-height: 52px;
  border-right: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hours span {
  color: rgba(255, 255, 255, 0.7);
}

.hours strong {
  color: var(--white);
}

.map {
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: #d8d2c8;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.footer {
  margin-top: 42px;
  margin-bottom: 88px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
}

.footer p {
  max-width: 760px;
  margin: 0;
}

.footer a {
  color: var(--wine);
  font-weight: 900;
}

.mobile-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 14px 44px rgba(24, 32, 43, 0.22);
  transform: translateY(140%);
  transition: transform 0.22s ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta a {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 900;
}

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

  .quick,
  .intro,
  .section-head,
  .menu-layout,
  .proof,
  .reserve,
  .location {
    grid-template-columns: 1fr;
  }

  .quick div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick div:last-child {
    border-bottom: 0;
  }

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

  .proof-cards {
    grid-template-columns: 1fr;
  }

  .bar-img {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 10px 12px;
  }

  .brand {
    width: 104px;
  }

  .icon-link {
    display: none;
  }

  .language {
    min-width: 76px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-inner,
  .quick,
  .section,
  .proof,
  .location,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .hero-inner {
    padding-top: 114px;
    padding-bottom: 38px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .hero p:not(.eyebrow),
  .intro > p,
  .proof p,
  .reserve-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .reserve-actions,
  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .section,
  .proof {
    padding-top: 72px;
  }

  figure img {
    height: 330px;
  }

  .location {
    margin-top: 72px;
    padding: 22px;
  }

  .map,
  .map iframe {
    min-height: 330px;
  }

  .footer {
    flex-direction: column;
    margin-bottom: 104px;
  }

  .footer div {
    flex-wrap: wrap;
  }

  .mobile-cta {
    display: grid;
  }
}
