@font-face {
  font-family: "Galano";
  src:
    local("Galano Grotesque"),
    url("fonts/GalanoGrotesque-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Galano";
  src:
    local("Galano Grotesque Medium"),
    url("fonts/GalanoGrotesque-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Galano";
  src:
    local("Galano Grotesque SemiBold"),
    url("fonts/GalanoGrotesque-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Galano";
  src:
    local("Galano Grotesque Bold"),
    url("fonts/GalanoGrotesque-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f8f7f2;
  --cream-dark: #ede8df;
  --espresso: #4b3621;
  --espresso-soft: #5c4330;
  --copper: #c18e69;
  --copper-hover: #a87652;
  --copper-light: rgba(193, 142, 105, 0.18);
  --ember: #e8572a;
  --ember-hover: #cf4a22;
  --text: var(--espresso);
  --text-muted: rgba(75, 54, 33, 0.72);
  --font-family: "Galano", "Galano Grotesque", system-ui, sans-serif;
  --max: 1080px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--espresso);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

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

.btn--primary {
  background: var(--copper);
  color: #fff;
}

.btn--primary:hover {
  background: var(--copper-hover);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--espresso);
  border-color: rgba(75, 54, 33, 0.25);
}

.btn--ghost:hover {
  border-color: var(--espresso);
}

.btn--landing {
  min-width: 9.5rem;
  padding: 0.9rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
}

.btn--on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

.hero .btn--primary {
  background: var(--ember);
}

.hero .btn--primary:hover {
  background: var(--ember-hover);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem var(--gutter);
  background: rgba(248, 247, 242, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header--over-hero:not(.site-header--scrolled) {
  padding: 0.85rem var(--gutter);
  background: linear-gradient(180deg, rgba(18, 12, 8, 0.42) 0%, rgba(18, 12, 8, 0) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

.site-header--scrolled,
.site-header:not(.site-header--over-hero) {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
  padding: 0.75rem var(--gutter);
}

.nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  transition: max-width 0.35s ease, padding 0.35s ease, border-radius 0.35s ease,
    background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header--scrolled .nav,
.site-header:not(.site-header--over-hero) .nav {
  max-width: min(56rem, calc(100% - 0.5rem));
  padding: 0.45rem 0.6rem 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(18, 12, 8, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.08);
}

.site-header--over-hero:not(.site-header--scrolled) .nav__logo,
.site-header--over-hero:not(.site-header--scrolled) .nav__wordmark {
  color: #fff;
}

.site-header--scrolled .nav__logo,
.site-header--scrolled .nav__wordmark,
.site-header:not(.site-header--over-hero) .nav__logo,
.site-header:not(.site-header--over-hero) .nav__wordmark {
  color: #fff;
}

.site-header--over-hero:not(.site-header--scrolled) .nav-toggle__bar {
  background: #fff;
}

.site-header--scrolled .nav-toggle__bar,
.site-header:not(.site-header--over-hero) .nav-toggle__bar {
  background: #fff;
}

.site-header--over-hero:not(.site-header--scrolled) .nav__link {
  color: rgba(255, 255, 255, 0.82);
}

.site-header--over-hero:not(.site-header--scrolled) .nav__link:hover,
.site-header--over-hero:not(.site-header--scrolled) .nav__link--active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.site-header--scrolled .nav__link,
.site-header:not(.site-header--over-hero) .nav__link {
  color: rgba(255, 255, 255, 0.78);
}

.site-header--scrolled .nav__link:hover,
.site-header--scrolled .nav__link--active,
.site-header:not(.site-header--over-hero) .nav__link:hover,
.site-header:not(.site-header--over-hero) .nav__link--active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.site-header--over-hero:not(.site-header--scrolled) .nav__cta {
  background: var(--copper);
  color: #fff;
}

.site-header--over-hero:not(.site-header--scrolled) .nav__cta:hover {
  background: var(--copper-hover);
  color: #fff;
}

.site-header--scrolled .nav__cta,
.site-header:not(.site-header--over-hero) .nav__cta {
  background: var(--cream);
  color: var(--espresso);
}

.site-header--scrolled .nav__cta:hover,
.site-header:not(.site-header--over-hero) .nav__cta:hover {
  background: #fff;
  color: var(--espresso);
}

.site-header--over-hero:not(.site-header--scrolled) .nav-toggle {
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-header--scrolled .nav-toggle,
.site-header:not(.site-header--over-hero) .nav-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.nav__logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--espresso);
  transition: opacity 0.2s, color 0.25s;
}

.nav__logo:hover {
  opacity: 0.85;
}

.nav__logo img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav__wordmark {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.25s;
}

.nav__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(75, 54, 33, 0.05);
}

.site-header--over-hero:not(.site-header--scrolled) .nav__links {
  background: rgba(255, 255, 255, 0.1);
}

.site-header--scrolled .nav__links,
.site-header:not(.site-header--over-hero) .nav__links {
  gap: 0.2rem;
  padding: 0;
  background: transparent;
}

.nav__link {
  padding: 0.5rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover,
.nav__link--active {
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.72);
}

.site-header--scrolled .nav__link--active,
.site-header:not(.site-header--over-hero) .nav__link--active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.nav__cta {
  justify-self: end;
  padding: 0.6rem 1.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--espresso);
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.nav__cta:hover {
  background: var(--espresso-soft);
  color: #fff;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 6.5rem var(--gutter) 4rem;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("images/hero-bg.webp") type("image/webp"),
    url("images/hero-bg.jpg") type("image/jpeg")
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero--video-ready .hero__bg {
  opacity: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 12, 8, 0.55) 0%,
    rgba(18, 12, 8, 0.72) 55%,
    rgba(18, 12, 8, 0.82) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(44rem, 100%);
  margin: 0 auto;
}

.hero__brand {
  margin: 0 auto 1.75rem;
}

.hero__brand-logo {
  width: min(7.5rem, 22vw);
  height: auto;
  margin: 0 auto 0.85rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.hero__brand-name {
  margin: 0;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
}

.hero__title {
  font-size: clamp(2.75rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: #fff;
}

.hero__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  margin: 0 auto 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.about {
  background: var(--espresso);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--gutter);
  overflow: hidden;
}

.about__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  min-height: clamp(40rem, 75vh, 58rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.5rem) 0;
}

.about__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 50% 42% at 50% 48%,
    rgba(42, 30, 19, 0.5) 0%,
    rgba(42, 30, 19, 0.18) 45%,
    transparent 72%
  );
  pointer-events: none;
}

.about .section-heading {
  color: #fff;
}

.about__content {
  position: relative;
  z-index: 2;
  width: min(36rem, 100%);
  margin: 0 auto;
  text-align: center;
}

.about__content .section-heading,
.about__content p {
  text-shadow:
    0 2px 18px rgba(12, 8, 5, 0.75),
    0 1px 4px rgba(12, 8, 5, 0.55);
}

.about__content p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1rem;
}

.about__stats {
  list-style: none;
  margin: 1.5rem auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  max-width: none;
}

.about__stats li {
  flex: 0 1 auto;
  min-width: 7.5rem;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: var(--ember);
  box-shadow: 0 8px 20px rgba(232, 87, 42, 0.28);
}

.about__stat-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.2rem;
  color: #fff;
}

.about__stat-label {
  display: block;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.about__carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  opacity: 0.68;
  pointer-events: none;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.about__carousel-track {
  display: flex;
  align-items: stretch;
  gap: clamp(0.75rem, 1.2vw, 1rem);
  width: max-content;
  height: 100%;
  min-height: 100%;
  will-change: transform;
}

.about__column {
  flex: 0 0 clamp(11rem, 20vw, 14rem);
  display: grid;
  gap: clamp(0.75rem, 1.2vw, 1rem);
  height: 100%;
  min-height: 0;
}

.about__column--solo {
  flex-basis: clamp(12.5rem, 22vw, 15.5rem);
  grid-template-rows: minmax(0, 1fr);
}

.about__column--duo {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.about__tile {
  position: relative;
  display: block;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  cursor: default;
}

.about__tile img:not(.about__review-avatar) {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__tile figcaption {
  display: none;
}

.about__column--solo:has(.about__tile--review) {
  flex-basis: clamp(11.5rem, 21vw, 13.5rem);
}

.about__tile--review {
  padding: 0.25rem 0.45rem;
  overflow: visible;
  background: transparent;
  border: none;
  cursor: default;
}

.about__review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0.85rem 0.65rem 0.7rem;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(18, 12, 8, 0.16);
}

.about__tile--review.about__tile--short .about__review-card {
  padding: 0.75rem 0.55rem 0.65rem;
}

.about__review-avatar {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 1.35rem;
  height: 1.35rem;
  max-width: 1.35rem;
  max-height: 1.35rem;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  background: var(--copper);
  box-shadow: 0 3px 8px rgba(18, 12, 8, 0.18);
}

.about__tile--review-left .about__review-avatar {
  left: 0;
  transform: translate(-32%, -50%);
}

.about__tile--review-right .about__review-avatar {
  right: 0;
  left: auto;
  transform: translate(32%, -50%);
}

.about__review-mark {
  position: absolute;
  top: 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  color: #d9a48a;
  pointer-events: none;
}

.about__tile--review-left .about__review-mark {
  right: 0.45rem;
}

.about__tile--review-right .about__review-mark {
  left: 0.45rem;
}

.about__review-quote {
  margin: 0.2rem 0 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.58rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.45;
  color: var(--espresso);
}

.about__tile--review.about__tile--short .about__review-quote {
  font-size: 0.54rem;
  line-height: 1.4;
}

.about__review-name {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.5rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(75, 54, 33, 0.72);
}

.about__tile--tall,
.about__tile--short {
  min-height: 0;
}

.menu {
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
  background: #fff;
}

.menu__header {
  max-width: var(--max);
  margin: 0 auto 2.75rem;
}

.menu__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

.menu__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--espresso);
}

.menu__intro {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  color: var(--text-muted);
}

.menu__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.menu__filter {
  padding: 0.55rem 1.15rem;
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--espresso);
  background: #fff;
  border: 1.5px solid rgba(75, 54, 33, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.menu__filter:hover {
  border-color: var(--espresso);
}

.menu__filter--active {
  color: #fff;
  background: var(--espresso);
  border-color: var(--espresso);
}

.menu__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.menu-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid rgba(75, 54, 33, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: opacity 0.25s, transform 0.25s, box-shadow 0.25s;
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(75, 54, 33, 0.1);
}

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

.menu-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-dark);
  cursor: zoom-in;
  border: 0;
  padding: 0;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
}

.menu-card__media picture,
.menu-card__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.menu-card__media img {
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card__media:hover img {
  transform: scale(1.06);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(18, 12, 8, 0.88);
  cursor: zoom-out;
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(56rem, 100%);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lightbox__img {
  width: 100%;
  max-height: calc(92vh - 3rem);
  object-fit: contain;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.lightbox__caption {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.menu-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem 1.35rem 1.5rem;
}

.menu-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.menu-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--espresso);
}

.menu-card__price {
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--copper);
}

.menu-card__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.visit {
  padding: 0;
}

.visit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(28rem, 52vw, 36rem);
}

.visit__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  background: var(--espresso);
  color: #fff;
}

.visit__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

.visit__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.visit__intro {
  margin: 0;
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.visit__details {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.visit__details li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.visit__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  border: 1px solid rgba(193, 142, 105, 0.45);
  background: rgba(255, 255, 255, 0.05);
  color: var(--copper);
}

.visit__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.visit__details strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.visit__details p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.visit__details a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s;
}

.visit__details a:hover {
  color: var(--copper);
}

.visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.visit__panel .btn--primary {
  background: var(--copper);
}

.visit__panel .btn--primary:hover {
  background: var(--copper-hover);
}

.visit__btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.visit__btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

.visit__visual {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
}

.visit__visual picture,
.visit__visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.visit__visual img {
  object-fit: cover;
}

.section-reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

.btn:focus-visible,
.menu-card__media:focus-visible,
.about__tile:focus-visible {
  outline-color: var(--copper);
}

.site-footer {
  border-top: 1px solid rgba(75, 54, 33, 0.1);
  padding: 2rem var(--gutter) 2.5rem;
  text-align: center;
}

.footer__logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  object-fit: contain;
}

.footer__brand {
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.footer__tagline {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
}

.footer__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.footer__nav a:hover {
  color: var(--copper);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-self: end;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(75, 54, 33, 0.12);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  background: var(--espresso);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

body.mobile-nav-open {
  overflow: hidden;
  background: #120c08;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  background: #120c08;
  color: #fff;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open {
  display: flex !important;
}

body.mobile-nav-open .site-header {
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem var(--gutter);
  padding-top: max(0.85rem, env(safe-area-inset-top));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

.mobile-nav__brand img {
  flex-shrink: 0;
  object-fit: contain;
}

.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.mobile-nav__close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.mobile-nav__panel {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 2rem var(--gutter) 3rem;
}

.mobile-nav__link {
  padding: 1.1rem 0;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav__link:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  color: #fff;
  padding-left: 0.35rem;
  background: transparent;
  box-shadow: none;
}

.mobile-nav__cta {
  align-self: flex-start;
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--cream);
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.mobile-nav__cta:hover {
  background: #fff;
  color: var(--espresso);
  transform: translateY(-1px);
}

.site-header--over-hero:not(.site-header--scrolled) .mobile-nav__cta,
body.header-over-hero .mobile-nav__cta {
  background: var(--copper);
  color: #fff;
}

.site-header--over-hero:not(.site-header--scrolled) .mobile-nav__cta:hover,
body.header-over-hero .mobile-nav__cta:hover {
  background: var(--copper-hover);
  color: #fff;
}

@media (max-width: 900px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header--scrolled .nav,
  .site-header:not(.site-header--over-hero) .nav {
    max-width: none;
    padding: 0.45rem 0.55rem 0.45rem 0.85rem;
  }

  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

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

  .nav__wordmark {
    font-size: 0.88rem;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
  }

  .about__inner {
    min-height: clamp(32rem, 75vh, 44rem);
    padding: 1rem 0;
  }

  .about__carousel {
    opacity: 0.5;
  }

  .about__column {
    flex-basis: clamp(9rem, 24vw, 11.5rem);
  }

  .about__column--solo {
    flex-basis: clamp(10rem, 26vw, 12.5rem);
  }

  .about__stats li {
    min-width: 6.75rem;
  }

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

  .visit__visual {
    min-height: clamp(16rem, 45vw, 22rem);
    order: -1;
  }

  .hero__brand {
    margin-bottom: 1.35rem;
  }

  .hero__brand-logo {
    width: min(6.5rem, 28vw);
  }
}

@media (max-width: 900px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .menu__grid {
    grid-template-columns: 1fr;
  }
}

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

  .btn:hover {
    transform: none;
  }

  .about__tile:hover img,
  .menu-card__media:hover img {
    transform: none;
  }

  .menu-card:hover {
    transform: none;
    box-shadow: none;
  }

  .nav__cta:hover,
  .mobile-nav__cta:hover {
    transform: none;
  }

  .nav,
  .site-header {
    transition: none;
  }

  .mobile-nav {
    transition: none;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__video {
    display: none;
  }
}
