/* ==========================================================================
   DZN643 — Restaurant & Skybar
   Design system & component styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette — deep teal, cyan & bright yellow */
  --primary: #2BBBD7;      /* bright cyan — primary accent */
  --primary-deep: #218DAE; /* deep teal — skybar / map base */
  --accent: #218DAE;       /* deep teal — accent text on light surfaces */
  --yellow: #FFD758;       /* bright yellow — secondary accent */
  --yellow-soft: #FCE59A;  /* pale yellow — soft fills */
  --dark: #111111;
  --dark-soft: #1a1a1a;
  --white: #FFFFFF;
  --light: #F8F8F5;

  /* Extended palette */
  --ink: #17181a;
  --muted: #5b616b;
  --line: rgba(23, 24, 26, 0.1);
  --line-light: rgba(255, 255, 255, 0.16);
  --teal-ink: rgba(255, 255, 255, 0.9);
  --glass: rgba(255, 255, 255, 0.85);

  /* Typography */
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Allura", cursive;

  /* Geometry */
  --header-h: 88px;
  --radius-pill: 100px;
  --shadow-soft: 0 24px 60px -30px rgba(11, 15, 20, 0.35);
  --shadow-card: 0 30px 70px -40px rgba(17, 17, 17, 0.4);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --section-pad: clamp(72px, 9vw, 128px);

  --bs-font-sans-serif: var(--font-sans);
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--light);
  --bs-body-font-weight: 300;
}

/* --------------------------------------------------------------------------
   2. Base & reset refinements
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

::selection {
  background: var(--yellow);
  color: var(--dark);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

address {
  margin-bottom: 0;
  font-style: normal;
}

ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 2000;
  background: var(--dark);
  color: var(--white);
  padding: 10px 18px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: top 0.3s var(--ease);
}

.skip-link:focus {
  top: 12px;
  color: var(--white);
}

/* Container rhythm --------------------------------------------------------- */
.container {
  max-width: 1240px;
}

.container--narrow {
  max-width: 820px;
}

/* --------------------------------------------------------------------------
   3. Typography helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--primary);
  flex: 0 0 auto;
}

.eyebrow--light {
  color: var(--teal-ink);
}

.eyebrow--light::before {
  background: var(--yellow);
}

.eyebrow.is-centered,
.eyebrow--center {
  justify-content: center;
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 500;
  margin-bottom: 22px;
}

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

.section-title--light {
  color: var(--white);
}

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(42px, 6vw, 72px);
  text-align: center;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head__sub {
  color: var(--muted);
  margin: -6px 0 0;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   4. Sections
   -------------------------------------------------------------------------- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

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

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 16px 36px;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease), background-color 0.35s var(--ease),
              border-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
              transform 0.35s var(--ease);
  isolation: isolate;
}

.btn .bi {
  letter-spacing: 0;
}

.btn-lav {
  color: var(--white);
  border: 1px solid transparent;
}

.btn-lav::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  bottom: 0;
  width: 26%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg) translateX(-160%);
  transition: transform 0.7s var(--ease);
  z-index: -1;
}

.btn-lav:hover::after {
  transform: skewX(-20deg) translateX(620%);
}

.btn-lav--dark {
  background: var(--dark);
  border-color: var(--dark);
}

.btn-lav--dark:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lav--yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

.btn-lav--yellow:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--yellow);
  transform: translateY(-2px);
}

.btn-lav--ghost {
  background: transparent;
  color: var(--dark);
  border-color: rgba(17, 17, 17, 0.35);
}

.btn-lav--ghost:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lav--outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--line-light);
}

.btn-lav--outline-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-lav--lg {
  padding: 20px 54px;
  font-size: 0.85rem;
}

/* Shine for JS-driven hover position */
.btn-lav .btn-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-140%) skewX(-18deg);
  transition: transform 0.6s var(--ease);
  z-index: -1;
}

.btn-lav:hover .btn-shine,
.btn-lav:focus-visible .btn-shine {
  transform: translateX(480%) skewX(-18deg);
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background-color 0.45s var(--ease), box-shadow 0.45s var(--ease),
              height 0.45s var(--ease), backdrop-filter 0.45s var(--ease);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

/* Scrolled state */
.site-header.is-scrolled {
  height: 72px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px -18px rgba(17, 17, 17, 0.25);
  border-bottom: 1px solid var(--line);
}

/* Brand */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  transition: transform 0.45s var(--ease);
}

.site-header.is-scrolled .brand {
  transform: translateX(-50%) scale(0.9);
}

.brand__name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dark);
}

.brand__sub {
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

/* Navigation lists */
.header-nav .nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.35s var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  font-weight: 600;
}

.nav-cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--dark);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--yellow);
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease),
              color 0.35s var(--ease), transform 0.35s var(--ease);
}

.nav-cta:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--yellow);
  transform: translateY(-1px);
}

/* Hamburger */
.header-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 50%;
}

.toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.45s var(--ease), opacity 0.25s var(--ease), width 0.45s var(--ease);
}

.header-toggle:hover .toggle-bar:nth-child(1) { transform: translateY(-1px); }
.header-toggle:hover .toggle-bar:nth-child(3) { transform: translateY(1px); }

/* Animated to X */
.header-toggle.is-open .toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header-toggle.is-open .toggle-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.header-toggle.is-open .toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   7. Mobile menu
   -------------------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 28px 36px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  right: -12%;
  top: -18%;
  width: 48vw;
  height: 48vw;
  background: var(--primary);
  border-radius: 42% 58% 64% 36% / 52% 40% 60% 48%;
  opacity: 0.22;
  pointer-events: none;
}

.mobile-menu::after {
  content: "";
  position: absolute;
  left: -14%;
  bottom: -12%;
  width: 40vw;
  height: 40vw;
  background: var(--yellow);
  border-radius: 58% 42% 44% 56% / 46% 60% 40% 54%;
  opacity: 0.88;
  pointer-events: none;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu__top {
  display: flex;
  justify-content: flex-end;
}

.mobile-menu__close {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu__close span {
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: var(--white);
}

.mobile-menu__close span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu__close span:nth-child(2) { transform: rotate(-45deg); }

.mobile-menu__list {
  position: relative;
  z-index: 1;
}

.mobile-menu__list li {
  border-bottom: 1px solid var(--line-light);
}

.mobile-menu__list a {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 8vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  padding: 10px 0;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.mobile-menu__list a:hover {
  color: var(--yellow);
  padding-left: 12px;
}

.mobile-menu__foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   8. Social
   -------------------------------------------------------------------------- */
.social {
  display: flex;
  gap: 14px;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--dark);
  font-size: 1.05rem;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.social a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
  transform: translateY(-3px);
}

.social--dark a {
  border-color: var(--line-light);
  color: var(--white);
}

.social--dark a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

/* --------------------------------------------------------------------------
   9. Decorative shapes (shared design language)
   -------------------------------------------------------------------------- */
.shape {
  position: absolute;
  pointer-events: none;
  display: block;
}

.shape--blob-teal {
  background: var(--primary);
  border-radius: 42% 58% 62% 38% / 48% 42% 58% 52%;
  animation: blobDrift 16s ease-in-out infinite alternate;
}

.shape--blob-yellow {
  background: var(--yellow);
  border-radius: 60% 40% 55% 45% / 58% 58% 42% 42%;
  animation: blobDrift 20s ease-in-out infinite alternate-reverse;
}

.shape--ring {
  border: 1.5px solid rgba(17, 17, 17, 0.14);
  border-radius: 50%;
  animation: spinSlow 90s linear infinite;
}

.shape--dot-sm {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
}

.shape--dot-md {
  width: 64px;
  height: 64px;
  border-radius: 46% 54% 58% 42% / 50% 48% 52% 50%;
  background: var(--primary);
  opacity: 0.85;
}

@keyframes blobDrift {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate(2.2%, -2.4%) rotate(6deg) scale(1.03); }
  100% { transform: translate(-1.6%, 1.8%) rotate(-5deg) scale(0.985); }
}

@keyframes spinSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}

/* --------------------------------------------------------------------------
   10. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Shapes -------------------------------------------------- */
.hero__shapes .shape--blob-teal {
  width: clamp(320px, 46vw, 720px);
  aspect-ratio: 1 / 1;
  right: -8%;
  top: -8%;
}

.hero__shapes .shape--blob-yellow {
  width: clamp(240px, 32vw, 500px);
  aspect-ratio: 1 / 1;
  left: -9%;
  bottom: -14%;
}

.hero__shapes .shape--ring {
  width: min(72vmin, 720px);
  aspect-ratio: 1 / 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero__shapes .shape--dot-sm {
  right: 22%;
  top: 16%;
  width: 14px;
  height: 14px;
  animation: floatY 6s ease-in-out infinite;
}

.hero__shapes .shape--dot-md {
  left: 4.5%;
  top: 24%;
  width: 48px;
  height: 48px;
  animation: floatY 8s ease-in-out infinite;
}

/* Floating photography -------------------------------- */
.hero__photo {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-soft);
}

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

.hero__photo--large {
  width: clamp(150px, 18vw, 270px);
  aspect-ratio: 1 / 1;
  right: 8.5%;
  top: 50%;
  transform: translateY(-46%);
  animation: floatY 9s ease-in-out infinite;
}

.hero__photo--small {
  width: clamp(96px, 11vw, 168px);
  aspect-ratio: 1 / 1;
  left: 9%;
  bottom: 16%;
  animation: floatY 11s ease-in-out infinite 1.2s;
  border-width: 6px;
}

/* Vertical side labels -------------------------------- */
.hero__side-label {
  position: absolute;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.55;
  writing-mode: vertical-rl;
  z-index: 2;
}

.hero__side-label--left {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.hero__side-label--left::after {
  content: "";
  position: absolute;
  bottom: -46px;
  left: 50%;
  width: 1px;
  height: 42px;
  background: var(--primary);
}

.hero__side-label--right {
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

.hero__side-label--right::after {
  content: "";
  position: absolute;
  top: -46px;
  left: 50%;
  width: 1px;
  height: 42px;
  background: var(--primary);
}

/* Content ---------------------------------------------- */
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  width: 52px;
  height: 1px;
  background: var(--primary);
}

.hero__title {
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--dark);
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: var(--muted);
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__scroll .bi {
  animation: bounceDown 2.2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* Hero entrance (JS adds .is-loaded) --------------------- */
.js .hero__content > * {
  opacity: 0;
}

.js .hero.is-loaded .hero__content > * {
  animation: fadeUp 1s var(--ease) forwards;
}

.js .hero.is-loaded .hero__eyebrow { animation-delay: 0.05s; }
.js .hero.is-loaded .hero__title   { animation-delay: 0.18s; }
.js .hero.is-loaded .hero__tagline { animation-delay: 0.34s; }
.js .hero.is-loaded .hero__actions { animation-delay: 0.5s; }

.js .hero.is-loaded .hero__photo--large { animation: heroFade 1.2s var(--ease) 0.3s forwards, floatYLarge 9s ease-in-out 1.3s infinite; }
.js .hero.is-loaded .hero__photo--small { animation: heroFade 1.2s var(--ease) 0.5s forwards, floatY 11s ease-in-out 1.7s infinite; }

.js .hero__photo {
  opacity: 0;
}

@keyframes heroFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes floatYLarge {
  0%, 100% { transform: translateY(-46%); }
  50%      { transform: translateY(calc(-46% - 16px)); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   11. Newsletter
   -------------------------------------------------------------------------- */
.section--newsletter {
  padding-top: clamp(60px, 8vw, 110px);
}

.newsletter {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 70px) clamp(24px, 5vw, 64px);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 170px;
  height: 170px;
  background: var(--primary);
  border-radius: 48% 52% 60% 40% / 54% 44% 56% 46%;
  opacity: 0.08;
}

.newsletter .eyebrow {
  justify-content: center;
}

.newsletter__sub {
  color: var(--muted);
  margin-bottom: 34px;
}

.newsletter-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.newsletter-form__input {
  flex: 1 1 260px;
  border: 0;
  border-bottom: 1.5px solid var(--line);
  background: transparent;
  padding: 14px 4px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.35s var(--ease);
  min-width: 0;
}

.newsletter-form__input:focus {
  outline: none;
  border-color: var(--accent);
}

.newsletter-form__input::placeholder {
  color: #a2a29a;
}

.newsletter-form.is-error .newsletter-form__input {
  border-color: #d1412f;
}

.newsletter-form__msg {
  flex-basis: 100%;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin: 6px 0 0;
  min-height: 1.4em;
}

.newsletter-form__msg.is-success { color: #178a4e; }
.newsletter-form__msg.is-error { color: #d1412f; }

/* --------------------------------------------------------------------------
   12. Operating hours
   -------------------------------------------------------------------------- */
.hours {
  text-align: center;
}

.hours .section-title {
  margin-top: 0;
}

.hours__list {
  max-width: 560px;
  margin: 40px auto 30px;
  text-align: left;
}

.hours__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 6px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.hours__row--alt {
  justify-content: center;
}

.hours__days {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 500;
}

.hours__times {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.hours__row--alt .hours__times {
  color: var(--accent);
}

.hours__row--yellow .hours__times {
  color: var(--dark);
}

.hours__row--yellow::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: -10px;
  height: 18px;
  background: var(--yellow-soft);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}

.hours__row--yellow:hover::after {
  opacity: 1;
}

.hours__note {
  position: absolute;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  right: 6px;
  bottom: -4px;
}

.hours__note-text {
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--muted);
  margin: 26px 0 0;
}

/* --------------------------------------------------------------------------
   13. About
   -------------------------------------------------------------------------- */
.about-media {
  position: relative;
  padding-bottom: 46px;
  padding-right: 40px;
  max-width: 560px;
  margin: 0 auto;
}

.about-media__blob {
  position: absolute;
  z-index: 0;
  top: -8%;
  left: -10%;
  width: 72%;
  aspect-ratio: 1;
  background: var(--yellow);
  border-radius: 58% 42% 44% 56% / 52% 54% 46% 48%;
  animation: blobDrift 18s ease-in-out infinite alternate;
}

.about-media__accent {
  position: absolute;
  right: 2%;
  bottom: 2%;
  width: 120px;
  height: 120px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  z-index: 0;
}

.about-media__img {
  position: relative;
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-media__img--main img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-media__img--overlap {
  position: absolute;
  z-index: 2;
  right: -6%;
  bottom: 2%;
  width: 42%;
  box-shadow: var(--shadow-card);
  border: 6px solid var(--white);
}

.about-media__img--overlap img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Hover zoom -------------------------------------------- */
.img-link {
  display: block;
  overflow: hidden;
}

.img-link img {
  transition: transform 0.9s var(--ease);
  will-change: transform;
}

.img-link:hover img,
.img-link:focus-visible img {
  transform: scale(1.06);
}

.about-copy {
  max-width: 540px;
  padding: 0 clamp(20px, 4vw, 60px);
  margin: 0 auto;
}

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

.about-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.about-copy .btn { margin-top: 16px; }

/* --------------------------------------------------------------------------
   14. Stats
   -------------------------------------------------------------------------- */
.stats {
  background: var(--dark);
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  left: -4%;
  top: -40%;
  width: 220px;
  height: 220px;
  background: var(--primary);
  border-radius: 50% 50% 44% 56% / 58% 42% 58% 42%;
  opacity: 0.16;
}

.stats::after {
  content: "";
  position: absolute;
  right: -3%;
  bottom: -50%;
  width: 240px;
  height: 240px;
  background: var(--yellow);
  border-radius: 46% 54% 60% 40% / 50% 44% 56% 50%;
  opacity: 0.9;
}

.stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__num .counter { color: var(--primary); }

.stat__label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   15. Culinary experience
   -------------------------------------------------------------------------- */
.culinary-media {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.culinary-media__bar {
  position: absolute;
  z-index: 0;
  top: -10%;
  right: -8%;
  width: 54%;
  aspect-ratio: 1;
  background: var(--primary);
  border-radius: 8px 60px 8px 60px;
  transform: rotate(8deg);
  opacity: 0.92;
}

.culinary-media__img {
  position: relative;
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.culinary-media__img img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.culinary-media__stamp {
  position: absolute;
  z-index: 2;
  left: -14px;
  bottom: -18px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  border: 1px dashed var(--dark);
  box-shadow: var(--shadow-card);
}

.culinary-copy {
  max-width: 540px;
  padding: 0 clamp(20px, 4vw, 60px);
  margin: 0 auto;
}

.culinary-copy p {
  color: var(--muted);
  margin-bottom: 16px;
}

.culinary-copy__sig {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  color: var(--accent) !important;
  margin-top: 22px;
}

/* --------------------------------------------------------------------------
   16. Atmosphere
   -------------------------------------------------------------------------- */
.section--atmosphere { background: var(--white); }

.atmosphere-media {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.atmosphere-media__img {
  height: clamp(380px, 46vw, 560px);
}

.atmosphere-media__img img,
.atmosphere-media[data-parallax] img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
  transform: translateY(-8%);
}

.atmosphere-copy {
  max-width: 500px;
  padding: 0 clamp(20px, 4vw, 60px);
  margin: 0 auto;
}

.atmosphere-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.atmosphere-copy .btn { margin-top: 16px; }

/* --------------------------------------------------------------------------
   17. Skybar
   -------------------------------------------------------------------------- */
.skybar {
  position: relative;
  min-height: clamp(480px, 80vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-deep);
}

.skybar__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.skybar__bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  will-change: transform;
  transform: translateY(-7%);
  opacity: 0.75;
}

.skybar__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(43, 187, 215, 0.94), rgba(33, 141, 174, 0.86) 55%, rgba(17, 17, 17, 0.55));
}

.skybar__dot { z-index: 2; }

.skybar__dot.skybar__dot--two {
  left: 12%;
  bottom: 22%;
}

.skybar__dot.skybar__dot--two { width: 26px; height: 26px; }
.skybar__dot:not(.skybar__dot--two) {
  right: 18%;
  top: 24%;
  width: 22px;
  height: 22px;
}

.skybar__content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  color: var(--white);
}

.skybar__content .section-title {
  margin-bottom: 16px;
}

.skybar__content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   18. Events
   -------------------------------------------------------------------------- */
.section--events { background: var(--white); }

.events {
  background: var(--dark);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.events__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.events__panel {
  position: relative;
  height: 100%;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 4vw, 56px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.events__panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 30px;
}

.events__panel-shape {
  position: absolute;
  right: -70px;
  top: -80px;
  width: 220px;
  height: 220px;
  background: var(--primary);
  border-radius: 52% 48% 40% 60% / 56% 46% 54% 44%;
  opacity: 0.9;
}

.events__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   19. Menu preview
   -------------------------------------------------------------------------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 32px);
}

.menu-card {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}

.menu-card__media,
.menu-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

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

.menu-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px 34px;
  text-align: center;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.02) 40%, rgba(17, 17, 17, 0.82) 100%);
  color: var(--white);
  transition: background 0.5s var(--ease);
}

.menu-card:hover .menu-card__overlay {
  background: linear-gradient(180deg, rgba(33, 141, 174, 0.05) 40%, rgba(33, 141, 174, 0.92) 100%);
}

.menu-card__label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.menu-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1;
}

.menu-card__arrow {
  margin-top: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.menu-card:hover .menu-card__arrow {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  transform: translateX(4px);
}

.menu-grid__button {
  text-align: center;
  margin-top: clamp(40px, 5vw, 64px);
}

/* --------------------------------------------------------------------------
   20. Featured dish
   -------------------------------------------------------------------------- */
.featured {
  position: relative;
  min-height: clamp(520px, 88vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.featured__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.featured__bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  will-change: transform;
  transform: translateY(-6%);
  opacity: 0.78;
}

.featured__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(17, 17, 17, 0.74) 0%, rgba(17, 17, 17, 0.28) 55%, rgba(17, 17, 17, 0.2) 100%);
}

.featured__card {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: var(--white);
  padding: clamp(30px, 5vw, 56px);
  background: rgba(17, 17, 17, 0.42);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.featured__card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

.featured__title {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   21. Gift cards
   -------------------------------------------------------------------------- */
.giftcards {
  background: var(--light);
  overflow: hidden;
}

.giftcards__blob {
  right: -8%;
  top: -10%;
  width: clamp(240px, 30vw, 460px);
  aspect-ratio: 1;
  background: var(--yellow-soft);
}

.giftcards__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.giftcards__inner .eyebrow {
  justify-content: center;
}

.giftcards__inner p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 34px;
}

/* --------------------------------------------------------------------------
   22. Gallery
   -------------------------------------------------------------------------- */
.section--gallery { background: var(--white); }

.gallery-grid {
  columns: 3;
  column-gap: clamp(14px, 2vw, 24px);
}

.gallery-item {
  position: relative;
  display: block;
  margin: 0 0 clamp(14px, 2vw, 24px);
  border-radius: 6px;
  overflow: hidden;
  break-inside: avoid;
  cursor: pointer;
  background: var(--light);
}

.gallery-item:nth-child(1) img { aspect-ratio: 3 / 4; }
.gallery-item:nth-child(2) img { aspect-ratio: 4 / 5; }
.gallery-item:nth-child(3) img { aspect-ratio: 1 / 1; }
.gallery-item:nth-child(4) img { aspect-ratio: 4 / 5; }
.gallery-item:nth-child(5) img { aspect-ratio: 1 / 1; }
.gallery-item:nth-child(6) img { aspect-ratio: 3 / 4; }

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

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
}

.gallery-item__plus {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 187, 215, 0.5);
  color: var(--white);
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.gallery-item__plus .bi {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transform: scale(0.7);
  transition: transform 0.45s var(--ease);
}

.gallery-item:hover .gallery-item__plus,
.gallery-item:focus-visible .gallery-item__plus {
  opacity: 1;
}

.gallery-item:hover .gallery-item__plus .bi,
.gallery-item:focus-visible .gallery-item__plus .bi {
  transform: scale(1);
}

/* Lightbox ------------------------------------------------------- */
.gallery-modal .modal-content {
  background: var(--dark);
  border: 0;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-modal .modal-body {
  position: relative;
  padding: 0;
}

.gallery-modal__head {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  padding: 14px 16px;
}

.gallery-modal__figure {
  margin: 0;
  text-align: center;
}

.gallery-modal__figure img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: var(--dark);
}

.gallery-modal__caption {
  padding: 14px 20px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  background: rgba(17, 17, 17, 0.35);
  color: var(--white);
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.gallery-modal__nav:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

.gallery-modal__nav--prev { left: 18px; }
.gallery-modal__nav--next { right: 18px; }

.gallery-modal .modal-fullscreen-sm-down .gallery-modal__figure img {
  max-height: 76vh;
}

/* --------------------------------------------------------------------------
   23. Location / map
   -------------------------------------------------------------------------- */
.location-copy {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.location__big {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.02;
  color: var(--dark);
  margin: 8px 0 26px;
}

.location__address {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 1.02rem;
}

.location__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 34px;
}

.location__meta a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-size: 0.94rem;
}

.location__meta a:hover { color: var(--accent); }

.location__meta .bi {
  color: var(--accent);
  font-size: 1.05rem;
}

/* Map card --------------------------------------------------------- */
.map-card {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--primary-deep);
}

.map-card__svg {
  display: block;
  width: 100%;
  height: auto;
}

.map-card__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 12px 18px 12px 14px;
  max-width: calc(100% - 32px);
}

.map-card__tag-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--dark);
  flex: 0 0 auto;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 88, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255, 215, 88, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 88, 0); }
}

.map-card__tag strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--dark);
  white-space: nowrap;
}

.map-card__tag span:not(.map-card__tag-dot) {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  white-space: nowrap;
}

.map-card__walk {
  position: absolute;
  right: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-soft);
}

.map-card__walk .bi {
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   24. Footer
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(70px, 9vw, 120px) 0 34px;
  overflow: hidden;
}

.footer__shapes .shape--blob-teal {
  width: clamp(220px, 28vw, 420px);
  aspect-ratio: 1;
  right: -6%;
  top: -12%;
  opacity: 0.32;
}

.footer__shapes .shape--blob-yellow {
  width: clamp(180px, 20vw, 300px);
  aspect-ratio: 1;
  left: -7%;
  bottom: -14%;
  opacity: 0.9;
}

.footer__shapes .shape--dot-md {
  left: 38%;
  top: 12%;
  width: 60px;
  height: 60px;
  background: var(--primary);
  opacity: 0.65;
  animation: floatY 9s ease-in-out infinite;
}

.footer__top {
  margin-bottom: clamp(40px, 6vw, 70px);
}

.brand--footer {
  position: static;
  transform: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}

.brand--footer .brand__name {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.brand--footer .brand__sub {
  color: var(--teal-ink);
}

.footer__address {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 26px;
  font-size: 0.92rem;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 22px;
}

.footer__list li {
  margin-bottom: 12px;
}

.footer__list a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer__list a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer__list--hours li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer__list--hours li span:last-child {
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

.footer__cta {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.footer__cta .btn {
  position: relative;
  z-index: 1;
}

.footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-light);
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom p {
  margin: 0;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal a:hover {
  color: var(--yellow);
}

/* --------------------------------------------------------------------------
   25. Back-to-top
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 950;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
              visibility 0.4s, background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

/* --------------------------------------------------------------------------
   26. Scroll reveal
   -------------------------------------------------------------------------- */
.js .reveal-up,
.js .reveal-left,
.js .reveal-right {
  opacity: 0;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}

.js .reveal-up { transform: translateY(42px); }
.js .reveal-left { transform: translateX(-48px); }
.js .reveal-right { transform: translateX(48px); }

.js .reveal-up.is-revealed,
.js .reveal-left.is-revealed,
.js .reveal-right.is-revealed {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   27. Responsive
   -------------------------------------------------------------------------- */

/* Large desktop ------------------------------------------------ */
@media (min-width: 1600px) {
  .container { max-width: 1320px; }
}

/* ≤1199 — nav density */
@media (max-width: 1199px) {
  :root { --header-h: 80px; }

  .nav-list { gap: 14px; }
  .nav-link { font-size: 0.64rem; letter-spacing: 0.16em; }
  .nav-cta { padding: 9px 16px; font-size: 0.62rem; letter-spacing: 0.16em; }
}

/* ≤991 — hide desktop nav, show hamburger ---------------------- */
@media (max-width: 991px) {
  .header-nav { display: none; }
  .header-toggle { display: flex; }
  .header-inner { justify-content: space-between; }
  .brand { position: static; transform: none; text-align: left; align-items: flex-start; }
  .site-header.is-scrolled .brand { transform: none; }

  .header-toggle { order: 3; }
  .brand { margin-right: auto; }

  .about-copy, .culinary-copy, .atmosphere-copy, .location-copy {
    padding: clamp(40px, 6vw, 64px) clamp(12px, 4vw, 24px) 0;
    max-width: 640px;
  }

  .about-media, .culinary-media, .atmosphere-media, .map-card {
    max-width: 640px;
  }

  .atmosphere-media__img { height: 420px; }

  .gallery-grid { columns: 2; }
}

/* ≤767 — mobile ------------------------------------------------- */
@media (max-width: 767px) {
  :root { --header-h: 72px; }

  .hero__side-label { display: none; }
  .hero__photo--large { right: -10%; top: 60%; width: clamp(130px, 34vw, 190px); }
  .hero__photo--small { left: -8%; bottom: 8%; width: clamp(90px, 24vw, 130px); }
  .hero__shapes .shape--dot-md { top: 14%; left: 8%; }
  .hero__shapes .shape--dot-sm { right: 12%; top: 20%; }

  .hero__title { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero__tagline { margin-bottom: 30px; }
  .hero__actions { gap: 12px; flex-direction: column; align-items: center; }
  .hero__actions .btn { width: min(320px, 100%); }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 34px 16px; }

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

  .gallery-grid { columns: 2; }
  .gallery-grid .gallery-item img { aspect-ratio: 4 / 5; }

  .section--newsletter { padding-top: 50px; }

  .footer__bottom { justify-content: center; text-align: center; }
  .footer__legal { justify-content: center; }

  .back-to-top { bottom: 24px; right: 16px; }

  .map-card__walk { right: 12px; top: 12px; padding: 8px 12px; font-size: 0.66rem; }
  .map-card__tag { padding: 10px 14px 10px 10px; }
}

/* ≤479 — small phones ------------------------------------------- */
@media (max-width: 479px) {
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .gallery-grid .gallery-item img { aspect-ratio: 4 / 3; }

  .hero__eyebrow { letter-spacing: 0.3em; gap: 10px; }
  .hero__eyebrow::before, .hero__eyebrow::after { width: 30px; }

  .hours__times { white-space: normal; text-align: right; }

  .events__actions .btn { width: 100%; }

  .newsletter-form__input { flex-basis: 100%; }
  .newsletter-form .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   28. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

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

  .js .reveal-up, .js .reveal-left, .js .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }

  .js .hero__content > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .js .hero__photo {
    opacity: 1 !important;
    animation: none !important;
  }

  .js .hero__photo--large {
    transform: translateY(-46%) !important;
  }

  .js .hero__photo--small {
    transform: none !important;
  }

  .atmosphere-media[data-parallax] img,
  .skybar__bg img,
  .featured__bg img {
    transform: none !important;
  }
}