/* =====================================================================
   Ziyafet Meat House - landing styles (modern hybrid theme)
   Brand code:
     Sailor Blue  #062639  dark chrome (header / hero scrim / footer)
     Brave Red    #E7301C  accent: logo, key buttons
     White Rope   #EDF4EA  light text on dark
     Ash Green    #C9D4C5  secondary pastel tone
   Body sections sit on a clean white/light ground; header, hero (video)
   and footer are dark navy where the logo and video live.

   Shape scale (locked):  pill (buttons, chips) | 16px (surfaces, inputs)
   ===================================================================== */

:root {
  /* Brand palette */
  --sailor: #062639;
  --sailor-800: #0a3350;
  --sailor-700: #0e3d5f;
  --red: #e7301c;
  --red-bright: #ff4a35;
  --rope: #edf4ea;
  --ash: #c9d4c5;

  /* Light body semantics */
  --bg: #ffffff;
  --bg-soft: #f4f7f3;      /* soft off-white panel */
  --surface: #ffffff;
  --ink: #062639;          /* headings / primary text */
  --body: #3a505c;         /* body copy */
  --muted: #5f7078;        /* secondary copy */
  --line: rgba(6, 38, 57, 0.12);
  --line-strong: rgba(6, 38, 57, 0.2);

  /* Dark chrome */
  --dark: #062639;
  --dark-fg: #edf4ea;
  --dark-muted: rgba(237, 244, 234, 0.72);
  --dark-line: rgba(237, 244, 234, 0.16);

  /* Type */
  --font-display: "Sackers Gothic Std", "Sackers Gothic Standard",
    "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto,
    sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;

  --r-pill: 999px;
  --r-surface: 16px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 10vw, 132px);

  --shadow-sm: 0 2px 10px rgba(6, 38, 57, 0.06);
  --shadow: 0 26px 60px -30px rgba(6, 38, 57, 0.4);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------------------- reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
}
p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--red);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--r-surface);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 16px;
}

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

/* -------------------------------------------------- layout helpers */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}
section[id],
main[id] {
  scroll-margin-top: 92px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
}

.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.35rem);
  margin-top: 16px;
  color: var(--ink);
}

.lede {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 60ch;
}

.icon {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* -------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.btn:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(231, 48, 28, 0.6);
}
.btn:active {
  transform: translateY(0) scale(0.985);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: rgba(6, 38, 57, 0.05);
  border-color: var(--ink);
  box-shadow: none;
}
.btn--on-dark.btn--ghost {
  --btn-fg: #fff;
  border-color: rgba(237, 244, 234, 0.45);
}
.btn--on-dark.btn--ghost:hover {
  background: rgba(237, 244, 234, 0.1);
  border-color: #fff;
}

.btn--lg {
  padding: 18px 38px;
  font-size: 16px;
}
.btn--block {
  width: 100%;
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}
.textlink svg {
  color: var(--red);
  transition: transform 0.25s var(--ease);
}
.textlink:hover {
  color: var(--red);
}
.textlink:hover svg {
  transform: translateX(4px);
}

/* -------------------------------------------------- header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--dark-fg);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(6, 38, 57, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--dark-line);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand__logo {
  height: 56px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__link {
  padding: 10px 14px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dark-muted);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__link:hover {
  color: #fff;
  background: rgba(237, 244, 234, 0.08);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 12px;
}
.nav__phones {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav__phone {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark-fg);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.nav__phone-tag {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.nav__phone svg {
  color: var(--red);
}
.nav__phone:hover {
  color: var(--red-bright);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--dark-line);
  border-radius: var(--r-pill);
  background: rgba(6, 38, 57, 0.3);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark-fg);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span::before {
  transform: translateY(-6px);
}
.nav-toggle span::after {
  transform: translateY(4px);
}
.nav-open .nav-toggle span {
  background: transparent;
}
.nav-open .nav-toggle span::before {
  transform: rotate(45deg);
}
.nav-open .nav-toggle span::after {
  transform: rotate(-45deg) translateY(-2px);
}

/* -------------------------------------------------- hero (video) */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: var(--dark-fg);
  margin-top: -78px; /* sit under the transparent sticky header */
  padding-top: clamp(120px, 16vh, 200px);
  padding-bottom: clamp(64px, 10vh, 120px);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      180deg,
      rgba(6, 38, 57, 0.74) 0%,
      rgba(6, 38, 57, 0.5) 42%,
      rgba(6, 38, 57, 0.88) 100%
    ),
    radial-gradient(120% 80% at 50% 20%, rgba(231, 48, 28, 0.16), transparent 60%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  margin-inline: auto;
  max-width: 940px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: clamp(2.9rem, 9vw, 6.2rem);
  line-height: 0.98;
  color: #fff;
}
.hero__title .line-2 {
  display: block;
  color: var(--red);
}
.swap {
  display: inline-block;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.swap.is-out {
  opacity: 0;
  transform: translateY(10px);
}
.hero__sub {
  font-family: var(--font-body);
  margin-top: 24px;
  font-size: clamp(1.05rem, 2.1vw, 1.36rem);
  color: var(--rope);
  max-width: 40ch;
  line-height: 1.5;
}
.hero__cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* -------------------------------------------------- about (editorial) */
.trad {
  position: relative;
  background: var(--bg);
  color: var(--body);
}
.trad .container {
  position: relative;
  z-index: 1;
}
.trad__head {
  max-width: 620px;
  margin-left: auto;
  text-align: right;
}
.trad__head .eyebrow {
  margin-bottom: 16px;
}
.trad__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.trad__text {
  margin-top: 22px;
  margin-left: auto;
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.6;
}
.trad__cards {
  margin-top: clamp(40px, 5vw, 68px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: end;
}
.tcard {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4.15;
  background-color: var(--sailor-800);
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.65);
}
.tcard--tall {
  aspect-ratio: 3 / 5.35;
}
.tcard__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tcard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(6, 38, 57, 0.5) 0%,
    rgba(6, 38, 57, 0.05) 28%,
    rgba(6, 38, 57, 0.4) 64%,
    rgba(6, 38, 57, 0.9) 100%
  );
}
.tcard__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(20px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
}
.tcard__overlay--bottom {
  justify-content: flex-end;
}
.tcard__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  line-height: 1;
  color: var(--red);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.tcard__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: #fff;
}
.tcard__desc {
  margin-top: 8px;
  max-width: 26ch;
  color: rgba(237, 244, 234, 0.86);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.4;
}
.tcard__text {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

/* -------------------------------------------------- menu */
.menu {
  background: var(--bg-soft);
}
.menu__head {
  max-width: 760px;
}
.menu__grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
}
.menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--r-surface);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.menu-card--featured {
  grid-row: span 2;
  background: var(--sailor);
  border-color: var(--sailor);
  color: var(--dark-fg);
}
.menu-card__top {
  position: relative;
  z-index: 1;
}
.menu-card__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  padding: 6px 12px;
  border: 1px solid rgba(231, 48, 28, 0.35);
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.menu-card--featured .menu-card__tag {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}
.menu-card__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--ink);
}
.menu-card--featured .menu-card__title {
  color: #fff;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
}
.menu-card__desc {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 42ch;
}
.menu-card--featured .menu-card__desc {
  color: var(--dark-muted);
}
.menu-card__btns {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease),
    color 0.22s var(--ease), transform 0.22s var(--ease);
}
.menu-btn svg {
  color: var(--red);
  transition: color 0.22s var(--ease), transform 0.22s var(--ease);
}
.menu-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}
.menu-btn:hover svg {
  color: #fff;
  transform: translateX(3px);
}
.menu-card--featured .menu-btn {
  color: #fff;
  border-color: rgba(237, 244, 234, 0.28);
}
.menu-card--featured .menu-btn svg {
  color: #fff;
}
.menu-card--featured .menu-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

/* -------------------------------------------------- dry & wet age */
.dryage {
  position: relative;
  min-height: clamp(520px, 82vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sailor) url("dryage.jpg") center / cover no-repeat;
  color: var(--dark-fg);
}
.dryage__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.dryage__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      90deg,
      rgba(6, 38, 57, 0.93) 0%,
      rgba(6, 38, 57, 0.72) 38%,
      rgba(6, 38, 57, 0.3) 72%,
      rgba(6, 38, 57, 0.12) 100%
    ),
    linear-gradient(0deg, rgba(6, 38, 57, 0.6) 0%, rgba(6, 38, 57, 0) 42%);
}
.dryage__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(64px, 10vw, 120px);
}
.dryage__content {
  max-width: 620px;
}
.dryage__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  color: #fff;
}
.dryage__text {
  margin-top: 22px;
  max-width: 46ch;
  color: rgba(237, 244, 234, 0.88);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.6;
}

/* -------------------------------------------------- locations (expand) */
.locations {
  background: var(--bg-soft);
}
.locations__head {
  max-width: 720px;
}
.locations__row {
  margin-top: 48px;
  display: flex;
  gap: 18px;
  min-height: 560px;
}
.loc-panel {
  position: relative;
  flex: 1 1 0;
  flex-grow: 1;
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  background-color: var(--sailor);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: flex-grow 0.55s var(--ease);
}
.loc-panel--lead {
  flex-grow: 1.5; /* one dominates by default */
}
/* hover / keyboard: hovered panel dominates, siblings recede */
.locations__row:hover .loc-panel,
.locations__row:focus-within .loc-panel {
  flex-grow: 0.85;
}
.locations__row .loc-panel:hover,
.locations__row .loc-panel:focus-within {
  flex-grow: 2.6;
}
.loc-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 38, 57, 0.15) 0%,
    rgba(6, 38, 57, 0.35) 45%,
    rgba(6, 38, 57, 0.92) 100%
  );
  transition: background 0.4s var(--ease);
}
.loc-panel:hover::before,
.loc-panel:focus-within::before {
  background: linear-gradient(
    180deg,
    rgba(6, 38, 57, 0.1) 0%,
    rgba(6, 38, 57, 0.4) 50%,
    rgba(6, 38, 57, 0.9) 100%
  );
}
.loc-panel__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
}
.loc-panel__index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--rope);
  opacity: 0.85;
}
.loc-panel__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff;
  margin-top: 10px;
  white-space: nowrap;
}
.loc-panel__extra {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.55s var(--ease), opacity 0.45s var(--ease),
    transform 0.45s var(--ease), margin 0.45s var(--ease);
}
.loc-panel:hover .loc-panel__extra,
.loc-panel:focus-within .loc-panel__extra {
  max-height: 260px;
  opacity: 1;
  transform: none;
  margin-top: 16px;
}
.loc-panel__addr {
  display: flex;
  gap: 11px;
  color: var(--rope);
  font-size: 16px;
  line-height: 1.5;
}
.loc-panel__addr svg {
  flex-shrink: 0;
  color: var(--red-bright);
  margin-top: 3px;
}
.loc-panel__note {
  margin-top: 6px;
  padding-left: 28px;
  color: var(--dark-muted);
  font-size: 14px;
}
.loc-panel__phone {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  transition: color 0.2s var(--ease);
}
.loc-panel__phone svg {
  color: var(--red-bright);
}
.loc-panel__phone:hover {
  color: var(--red-bright);
}
.loc-panel__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.loc-panel__actions .textlink {
  color: #fff;
}
.loc-panel__actions .textlink svg {
  color: var(--red-bright);
}

/* -------------------------------------------------- booking */
.booking {
  background: var(--bg);
}
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}
.booking__grid > * {
  min-width: 0;
}
.booking__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3rem);
  color: var(--ink);
  margin-top: 16px;
}
.booking__text {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 46ch;
}
.booking__list {
  margin-top: 28px;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}
.booking__list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-size: 16px;
}
.booking__list svg {
  color: var(--red);
  flex-shrink: 0;
}

.booking__form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-surface);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.field {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}
.field label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.field .req {
  color: var(--red);
}
.field input,
.field select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  appearance: none;
}
.field input::placeholder {
  color: #93a1a8;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(231, 48, 28, 0.16);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23062639' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form__submit {
  margin-top: 6px;
}
.form__note {
  margin-top: 16px;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.form__note svg {
  flex-shrink: 0;
  color: #1faf52;
  margin-top: 2px;
}
.form__status {
  margin-top: 14px;
  font-size: 14.5px;
  font-weight: 600;
  min-height: 1.2em;
}
.form__status.is-error {
  color: var(--red);
}
.form__status.is-ok {
  color: #1a8a45;
}
.field.has-error input,
.field.has-error select {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(231, 48, 28, 0.14);
}

/* -------------------------------------------------- footer */
.site-footer {
  background: var(--sailor);
  color: var(--dark-fg);
  padding-block: clamp(52px, 8vw, 80px) 34px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
.footer__logo {
  height: 60px;
  width: auto;
}
.footer__tagline {
  margin-top: 18px;
  color: var(--dark-muted);
  max-width: 34ch;
  font-size: 15px;
}
.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer__socials a {
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  border: 1px solid var(--dark-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-fg);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.footer__socials a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}
.footer__col h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 13px;
  color: var(--ash);
  margin: 0 0 18px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.footer__col a,
.footer__col li {
  color: var(--dark-muted);
  font-size: 15px;
  transition: color 0.2s var(--ease);
}
.footer__col a:hover {
  color: #fff;
}
.footer__place {
  display: grid;
  gap: 5px;
  font-size: 15px;
  color: var(--dark-muted);
}
.footer__place + .footer__place {
  margin-top: 18px;
}
.footer__place-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  font-weight: 700;
  color: var(--ash);
}
.footer__place a {
  color: #fff;
  font-weight: 700;
}
.footer__place a:hover {
  color: var(--red-bright);
}
.footer__bottom {
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--dark-line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--dark-muted);
  font-size: 13.5px;
}

/* -------------------------------------------------- reveal (JS gated) */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .swap {
    transition: none !important;
  }
  .loc-panel {
    transition: none !important;
  }
  .btn:hover,
  .menu-card:hover,
  .event-card:hover,
  .carousel-btn:hover,
  .footer__socials a:hover {
    transform: none !important;
  }
}

/* -------------------------------------------------- responsive */
@media (max-width: 1000px) {
  .menu__grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-card--featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: 210px;
  }
}

@media (max-width: 880px) {
  .nav__links,
  .nav__phones {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav__actions .btn {
    display: none;
  }
  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(6, 38, 57, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--dark-line);
    padding: 12px var(--gutter) 26px;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
  }
  .nav-open .nav {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-toggle {
    position: relative;
    z-index: 101;
  }
  .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .nav__link {
    padding: 14px 12px;
    font-size: 17px;
    border-radius: 0;
    border-bottom: 1px solid var(--dark-line);
  }
  .nav__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin: 20px 0 0;
  }
  .nav__actions .btn {
    display: inline-flex;
    width: 100%;
  }
  .nav__phones {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
  }
  .nav__phone {
    justify-content: center;
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }
  .trad__head {
    max-width: none;
    margin-left: 0;
    text-align: left;
  }
  .trad__text {
    margin-left: 0;
    max-width: none;
  }
  .trad__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
  }
  .tcard,
  .tcard--tall {
    aspect-ratio: 4 / 4;
  }
  .menu__grid {
    grid-template-columns: 1fr;
  }
  .menu-card--featured {
    grid-column: auto;
  }
  .booking__grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .events__controls {
    display: none;
  }

  /* locations: stack, fully open, no hover dependency */
  .locations__row {
    flex-direction: column;
    min-height: 0;
    gap: 18px;
  }
  .loc-panel,
  .loc-panel--lead {
    flex: none;
    min-height: 500px;
  }
  /* stronger scrim so the overlaid text stays readable on mobile */
  .loc-panel::before {
    background: linear-gradient(
      180deg,
      rgba(6, 38, 57, 0.25) 0%,
      rgba(6, 38, 57, 0.5) 38%,
      rgba(6, 38, 57, 0.96) 100%
    );
  }
  .loc-panel__content {
    padding: 28px 24px;
  }
  .loc-panel__name {
    font-size: 2rem;
    margin-top: 8px;
  }
  .loc-panel__extra {
    max-height: none;
    opacity: 1;
    transform: none;
    margin-top: 16px;
  }
  .loc-panel__note {
    color: rgba(237, 244, 234, 0.85);
  }
}

@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
    width: 100%;
  }
  .hero__cta .btn {
    width: 100%;
  }
  .loc-panel__actions .btn,
  .loc-panel__actions .textlink {
    width: 100%;
    justify-content: center;
  }
}
