:root {
  --gold-crayola: hsl(199, 66%, 38%);
  --quick-silver: hsl(203, 12%, 44%);
  --davys-grey: hsl(205, 16%, 30%);
  --smoky-black-1: hsl(204, 46%, 15%);
  --smoky-black-2: hsl(205, 42%, 18%);
  --smoky-black-3: hsl(203, 34%, 22%);
  --eerie-black-1: hsl(198, 28%, 92%);
  --eerie-black-2: hsl(199, 30%, 88%);
  --eerie-black-3: hsl(195, 34%, 97%);
  --eerie-black-4: hsl(204, 28%, 24%);
  --white: hsl(0, 0%, 100%);
  --white-alpha-20: hsla(0, 0%, 100%, 0.55);
  --white-alpha-10: hsla(0, 0%, 100%, 0.22);
  --black: hsl(204, 38%, 12%);
  --black-alpha-80: hsla(204, 58%, 7%, 0.82);
  --black-alpha-15: hsla(204, 30%, 18%, 0.15);

  --font-display: Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 128rem;
  --accent: #0d789c;
  --accent-deep: #0a5c78;
  --dark-bg: #082638;
  --dark-card: #10384d;
  --surface-soft: #f2f8fa;
  --surface-card: rgba(255, 255, 255, 0.72);
  --surface-border: rgba(12, 44, 63, 0.12);
  --shadow-soft: 0 22px 50px rgba(7, 35, 52, 0.12);
  --shadow-card: 0 26px 60px rgba(8, 38, 56, 0.18);
  --dark-border: rgba(255, 255, 255, 0.08);
  --soft-text: rgba(255, 255, 255, 0.75);
  --transition: 220ms ease;
  --transition-slow: 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.7rem;
  line-height: 1.72;
  color: var(--smoky-black-1);
  background:
    radial-gradient(circle at top left, rgba(13, 120, 156, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fcfd 0%, #eff7f9 100%);
  overflow-x: hidden;
  overflow-y: hidden;
}

body.loaded {
  overflow-y: auto;
}

body.nav-active {
  overflow: hidden;
}

a,
img,
span,
button {
  display: block;
}

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

img {
  width: 100%;
  height: auto;
}

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

ul,
ol,
li {
  list-style: none;
}

.shell {
  width: min(calc(100% - clamp(2.4rem, 4vw, 4.8rem)), var(--container));
  margin-inline: auto;
}

.preload {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  gap: 1.6rem;
  background: #eef7fa;
  transition: opacity 350ms ease, visibility 350ms ease;
}

.preload.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preload .circle {
  width: 6.6rem;
  height: 6.6rem;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preload .text {
  color: rgba(12, 44, 63, 0.72);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.8rem); }
}

.hero-header {
  position: relative;
  min-height: clamp(82rem, 96svh, 115rem);
  overflow: hidden;
  background: #0f0f0f;
}

.hero-brand {
  position: fixed;
  top: clamp(1rem, 1.5vw, 1.8rem);
  left: clamp(1.8rem, 2.4vw, 3.2rem);
  z-index: 31;
  max-width: min(clamp(28rem, 24vw, 36rem), calc(100% - 5.2rem));
  overflow: hidden;
  transition: top var(--transition), transform var(--transition), opacity var(--transition);
}

.brand-logo-image {
  display: none;
  object-fit: contain;
}

.hero-brand-logo {
  max-width: min(clamp(26rem, 22vw, 34rem), calc(100vw - 10rem));
  max-height: clamp(11rem, 8vw, 14.2rem);
}

.hero-brand p {
  color: var(--white);
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(4.2rem, 3.2vw, 5.6rem);
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.hero-controls {
  position: absolute;
  top: clamp(1.8rem, 2vw, 2.6rem);
  right: clamp(1.8rem, 2vw, 2.8rem);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.hero-language-switcher {
  position: static;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  --hero-pan-x: 0rem;
  --hero-pan-y: -1.2rem;
  animation-name: heroVisibility, heroMotion;
  animation-duration: 30s, 30s;
  animation-iteration-count: infinite, infinite;
  animation-timing-function: ease-in-out, linear;
  will-change: opacity, transform;
}

.hero-slide:nth-child(1) { --hero-pan-x: -0.8rem; --hero-pan-y: -1.2rem; animation-delay: 0s, 0s; }
.hero-slide:nth-child(2) { --hero-pan-x: 0.9rem; --hero-pan-y: -0.8rem; animation-delay: 6s, 6s; }
.hero-slide:nth-child(3) { --hero-pan-x: -0.5rem; --hero-pan-y: -1.6rem; animation-delay: 12s, 12s; }
.hero-slide:nth-child(4) { --hero-pan-x: 1.1rem; --hero-pan-y: -1rem; animation-delay: 18s, 18s; }
.hero-slide:nth-child(5) { --hero-pan-x: -0.6rem; --hero-pan-y: -1.4rem; animation-delay: 24s, 24s; }

@keyframes heroVisibility {
  0%,
  100% { opacity: 0; }
  4%,
  18% { opacity: 1; }
  24% { opacity: 0; }
}

@keyframes heroMotion {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  24%,
  100% {
    transform: scale(1.08) translate3d(var(--hero-pan-x), var(--hero-pan-y), 0);
  }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(244, 251, 253, 0.64) 0%, rgba(244, 251, 253, 0.34) 40%, rgba(244, 251, 253, 0.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(214,238,246,0.04) 42%, rgba(221,241,247,0.12) 100%);
}

.top-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  padding: 1rem 0 0;
  transition: padding var(--transition), opacity var(--transition);
}

.hero-header.active .top-nav {
  padding-top: 1rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  min-height: 6rem;
  width: min(calc(100% - clamp(3.2rem, 5vw, 5.6rem)), 112rem);
  margin-inline: auto;
  padding: 0 2.4rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(12, 44, 63, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(8, 38, 56, 0.1);
}

.nav-toggle {
  display: none;
}

.language-switcher {
  display: inline-flex;
  gap: 0.6rem;
}

.theme-switcher {
  display: inline-flex;
  gap: 0.6rem;
}

.lang-btn {
  min-width: 4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: rgba(12, 44, 63, 0.8);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background-color var(--transition), color var(--transition);
}

.lang-btn.is-active,
.lang-btn:hover {
  background: var(--accent);
  color: var(--white);
}

.theme-btn {
  min-width: 5.4rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  color: rgba(12, 44, 63, 0.8);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(12, 44, 63, 0.1);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.theme-btn.is-active,
.theme-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.desktop-nav a {
  color: rgba(12, 44, 63, 0.9);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.7rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: clamp(70rem, 84svh, 102rem);
  width: min(calc(100% - clamp(3.2rem, 5vw, 6rem)), 100%);
  margin-inline: auto;
  padding-left: clamp(12rem, 20vw, 28rem);
  padding-right: clamp(2rem, 3vw, 3.2rem);
  padding-top: clamp(6rem, 8svh, 8.4rem);
  padding-bottom: clamp(6rem, 10svh, 10rem);
}

.hero-title-box {
  max-width: min(78rem, 62vw);
  color: var(--smoky-black-1);
  filter: none;
  margin-left: 0;
}

.hero-title-box h1 {
  display: block;
  padding: 0;
  background: transparent;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 5.8vw, 8.2rem);
  font-weight: 500;
  line-height: 0.98;
  max-width: 14ch;
  text-wrap: balance;
  margin-bottom: clamp(1.2rem, 2vh, 1.8rem);
  letter-spacing: -0.03em;
  text-shadow: 0 10px 28px rgba(255, 255, 255, 0.22);
}

.hero-title-box h1::first-letter {
  color: inherit;
  font-size: inherit;
}

.hero-title-box p {
  display: block;
  margin-top: clamp(2rem, 3.4vh, 3.4rem);
  margin-left: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  font-size: clamp(2rem, 2vw, 2.8rem);
  font-weight: 400;
  color: rgba(12, 44, 63, 0.96);
  max-width: min(42ch, 52vw);
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  margin-top: clamp(2.6rem, 4vh, 4.2rem);
  min-height: 6rem;
  padding-inline: 2.8rem;
  border-color: rgba(12, 44, 63, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-deep);
  font-size: 1.36rem;
  letter-spacing: 0.12em;
  box-shadow: 0 18px 40px rgba(13, 120, 156, 0.16);
}

.scroll-indicator {
  position: absolute;
  left: 2rem;
  bottom: 2.4rem;
  z-index: 3;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  animation: gentleFloat 3.8s ease-in-out infinite;
}

html[data-theme="light"] .scroll-indicator {
  color: rgba(8, 38, 56, 0.98);
}

.mobile-nav,
.mobile-overlay {
  display: none;
}

.section-stack,
.menu-inner,
.reservation-inner {
  position: relative;
  z-index: 1;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="left"] {
  transform: none;
}

[data-reveal="right"] {
  transform: none;
}

[data-reveal="zoom"] {
  transform: none;
}

[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible,
[data-reveal="zoom"].is-visible {
  transform: none;
}

.section-stack {
  display: grid;
  gap: clamp(5.6rem, 7vw, 8.4rem);
}

.types-section,
.testimonials-section,
.reservation-section,
.site-footer {
  background: var(--dark-bg);
}

.testimonials-section-alt {
  background: linear-gradient(180deg, #082638 0%, #061d2c 100%);
}

.types-section,
.testimonials-section,
.atmosphere-section,
.reservation-section {
  padding: clamp(7.2rem, 9vw, 10.8rem) 0;
}

.type-row {
  display: grid;
  grid-template-columns: minmax(38rem, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(3.6rem, 5vw, 7.2rem);
  align-items: start;
}

.type-row.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(38rem, 0.92fr);
}

.type-row.reverse .type-thumb {
  order: 2;
}

.type-thumb,
.type-copy,
.testimonial-card {
  border: 1px solid var(--dark-border);
  border-radius: 3.2rem;
}

.type-thumb {
  overflow: hidden;
  background: #0f0f0f;
  box-shadow: 0 28px 64px rgba(8, 38, 56, 0.14);
  align-self: stretch;
}

.type-thumb img {
  width: 100%;
  height: 100%;
  min-height: 46rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 320ms ease;
}

.type-thumb:hover img {
  transform: scale(1.03);
}

.type-copy {
  padding: 3.2rem 0 2.6rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.section-title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 5vw, 6.4rem);
  font-weight: 500;
  line-height: 1;
  text-wrap: balance;
}

.section-heading.center .section-title {
  display: inline-block;
  position: relative;
  padding-bottom: 1.6rem;
}

.section-heading.center .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 8rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  transform: translateX(-50%);
}

.type-copy p,
.atmosphere-copy p,
.testimonial-card p {
  line-height: 1.72;
}

.testimonial-card p,
.type-copy p,
.atmosphere-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.9rem, 2vw, 2.4rem);
}

.type-copy p {
  margin-top: 1.8rem;
  max-width: 54rem;
  line-height: 1.86;
}

.type-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 4.2rem;
  margin-top: 3.6rem;
  padding: 0;
  max-width: 74rem;
}

.type-highlights--compact {
  grid-template-columns: 1fr;
  max-width: 46rem;
}

.type-highlights li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 5.8rem;
  padding: 1.45rem 0 1.45rem 2rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.92rem;
  font-weight: 500;
  line-height: 1.72;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.type-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-50%);
}

.preparation-section,
.menu-section {
  position: relative;
  overflow: hidden;
}

.menu-section {
  background: #f4fbfd;
}

.prep-bg,
.menu-bg,
.prep-overlay,
.menu-overlay {
  position: absolute;
  inset: 0;
}

.prep-bg,
.menu-bg {
  background-size: cover;
  background-position: center;
}

.prep-overlay {
  background: linear-gradient(90deg, rgba(4, 16, 24, 0.48) 0%, rgba(4, 16, 24, 0.56) 52%, rgba(4, 16, 24, 0.5) 100%);
}

.prep-inner {
  position: relative;
  min-height: 50rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.prep-quote {
  max-width: min(92rem, 52vw);
  padding: 4.2rem 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.prep-quote p {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4.2vw, 5rem);
  line-height: 1.18;
  text-align: right;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.36);
  max-width: min(30ch, 44vw);
  margin-left: auto;
}

.menu-overlay {
  background: transparent;
}

.menu-inner {
  padding-top: 3.8rem;
  padding-bottom: 8.6rem;
}

.menu-title-wrap {
  margin-bottom: 4.6rem;
  text-align: center;
  max-width: 82rem;
  margin-inline: auto;
}

.menu-section-subtitle {
  margin-top: 1.4rem;
  color: rgba(12, 44, 63, 0.76);
  font-size: clamp(2rem, 2.05vw, 2.35rem);
  line-height: 1.82;
}

.menu-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem 3rem;
  align-items: start;
}

.menu-section-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.24));
  border: 1px solid rgba(12, 44, 63, 0.08);
  border-radius: 2.8rem;
  box-shadow: 0 18px 44px rgba(8, 38, 56, 0.06);
  break-inside: avoid;
  display: block;
  margin: 0;
  padding: 2.6rem 2.4rem 2.4rem;
  width: 100%;
  transition: none;
}

.menu-section-card:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(12, 44, 63, 0.12);
}

.menu-section-header {
  margin-bottom: 2rem;
}

.menu-section-title {
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 2.45vw, 3.45rem);
  line-height: 1.08;
}

.menu-section-note {
  color: rgba(12, 44, 63, 0.78);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.72;
  margin-top: 1rem;
  max-width: 44rem;
  text-transform: none;
}

.menu-section-items {
  display: grid;
  gap: 0.9rem;
  padding: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1.6rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(12, 44, 63, 0.09);
}

.menu-item--no-price {
  grid-template-columns: 1fr;
}

.menu-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-item-name,
.menu-item-price {
  color: rgba(12, 44, 63, 0.92);
  font-size: 1.96rem;
  line-height: 1.68;
}

.menu-item-price {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.menu-empty-state {
  color: rgba(12, 44, 63, 0.62);
  font-size: 1.8rem;
  grid-column: 1 / -1;
  text-align: center;
}

.menu-flow {
  display: grid;
  gap: 4.8rem;
}

.menu-row {
  align-items: center;
}

.menu-copy .section-title {
  margin-bottom: 1.8rem;
}

.menu-copy .menu-list {
  padding: 0;
}

.menu-title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 6.2vw, 6.9rem);
  font-weight: 500;
  line-height: 1;
}

.menu-list {
  padding: 0;
}

.menu-list li {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  padding: 1.2rem 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.7rem, 2vw, 2rem);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.menu-list li:last-child {
  border-bottom: 0;
}

.section-heading.center {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.4rem 2.8rem;
  width: min(100%, 124rem);
  margin-inline: auto;
}

.testimonial-card {
  position: relative;
  padding: 0 0 1.8rem;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(12, 44, 63, 0.12);
  box-shadow: none;
  transition: none;
}

.testimonial-card:hover {
  transform: none;
  border-color: rgba(12, 44, 63, 0.12);
  background: transparent;
}

.testimonial-card h3 {
  color: var(--accent-deep);
  font-size: 1.78rem;
  line-height: 1.35;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.testimonial-card p {
  font-size: clamp(2rem, 1.95vw, 2.35rem);
  line-height: 1.78;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -0.4rem;
  right: 0;
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 1;
  color: rgba(13, 120, 156, 0.16);
}

.offer-card {
  max-width: 74rem;
  margin: 0 auto;
  padding: 4.2rem 3.2rem;
  border: 1px solid var(--dark-border);
  border-radius: 3.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  text-align: center;
}

.offer-pack-grid {
  display: grid;
  grid-template-columns: minmax(0, 48rem);
  justify-content: center;
  gap: 2.2rem;
  align-items: stretch;
}

.offer-pack {
  width: 100%;
  max-width: none;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto auto 1fr;
  min-height: 42rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 2.2rem 5rem rgba(0, 0, 0, 0.22);
}

.offer-pack h3 {
  align-self: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 12rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.offer-pack-title {
  margin-top: 2rem;
  min-height: 9.2rem;
  color: var(--white);
  font-size: clamp(1.85rem, 2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-copy {
  max-width: 38rem;
  margin: 1.4rem auto 0;
  min-height: 5.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.55rem, 1.8vw, 1.8rem);
  line-height: 1.55;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-price {
  margin: 2.2rem auto 0;
  max-width: 38rem;
  min-height: 8.8rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.4vw, 3.8rem);
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-price-stack {
  flex-direction: column;
  gap: 0.5rem;
}

.offer-price-stack span:first-child {
  font-size: clamp(2.1rem, 2.9vw, 3rem);
}

.offer-price-stack span:last-child {
  color: var(--accent);
  font-size: clamp(2.5rem, 3.4vw, 3.8rem);
}

.offer-points {
  display: grid;
  gap: 0.9rem;
  justify-content: center;
  align-self: end;
  padding-top: 2.6rem;
}

.offer-points li {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.45rem, 1.8vw, 1.7rem);
  line-height: 1.4;
}

.offer-points li::before {
  content: "• ";
  color: var(--accent);
}

.offer-contact {
  margin-top: 2.8rem;
  text-align: center;
}

.offer-contact-title {
  color: var(--white);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-contact-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.offer-contact-actions .social-pill {
  min-width: 16rem;
}

.atmosphere-section {
  background: linear-gradient(180deg, #082638 0%, #072233 52%, #0b3145 100%);
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 5.6rem;
  align-items: center;
}

.atmosphere-figure {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(16rem, 0.85fr);
  gap: 1.6rem;
  align-items: stretch;
}

.atmosphere-collage-main,
.atmosphere-collage-side img,
.atmosphere-collage-strip img {
  overflow: hidden;
  border-radius: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.16);
}

.atmosphere-collage-main {
  min-height: 50rem;
}

.atmosphere-collage-side {
  display: grid;
  gap: 1.6rem;
}

.atmosphere-collage-side img {
  min-height: 24rem;
}

.atmosphere-collage-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.atmosphere-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.atmosphere-collage img:hover {
  transform: scale(1.045);
}

.atmosphere-copy p {
  margin-top: 1.8rem;
  line-height: 1.86;
}

.atmosphere-copy {
  padding: 2.4rem 0 2.4rem 3rem;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reservation-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  width: min(100%, 82rem);
  margin-inline: auto;
}

.reservation-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  width: 100%;
  padding-top: 1.2rem;
}

.reservation-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reservation-subcopy {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.9rem, 2vw, 2.25rem);
  line-height: 1.78;
  max-width: 42rem;
  text-align: center;
  text-wrap: balance;
}

.reservation-phone {
  color: #ffffff;
  font-size: clamp(3rem, 4.8vw, 4.4rem);
  line-height: 1.08;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
  transition: color var(--transition), opacity var(--transition);
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 0.4rem;
}

.reservation-phone:hover {
  opacity: 1;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  padding: 6rem 0 3.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #072233 0%, #061a27 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(36rem, 0.9fr);
  gap: 4.4rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-brand-logo {
  max-width: 24rem;
  max-height: 7.2rem;
}

.footer-name {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 3vw, 5rem);
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
  text-wrap: balance;
}

.footer-address {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.56rem;
  line-height: 1.62;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.26);
}

.footer-legal {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.4rem;
}

.footer-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  justify-content: stretch;
  gap: 1rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.26);
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}

.social-pill:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(13, 120, 156, 0.18);
}

@media (min-width: 768px) {
  .hero-header {
    min-height: clamp(88rem, 94svh, 112rem);
  }

  .hero-content {
    min-height: clamp(76rem, 86svh, 100rem);
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20vw;
    padding-right: clamp(3.2rem, 5vw, 6rem);
    padding-top: clamp(6.2rem, 8svh, 8.8rem);
    padding-bottom: clamp(6.4rem, 9svh, 9.8rem);
  }

  .hero-title-box {
    max-width: min(102rem, 54vw);
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }

  .hero-title-box h1 {
    font-size: clamp(5.4rem, 5.5vw, 8rem);
    max-width: 15.5ch;
    margin-bottom: clamp(1.4rem, 2vh, 2rem);
  }

  .hero-title-box p {
    margin-top: clamp(2rem, 3vh, 3rem);
    font-size: clamp(2.2rem, 1.9vw, 2.9rem);
    max-width: min(52ch, 46vw);
    line-height: 1.68;
  }

  .hero-cta {
    margin-top: clamp(2.8rem, 4vh, 4rem);
    min-height: 6.2rem;
    padding-inline: 3rem;
    font-size: 1.44rem;
  }
}

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

  .hero-slide,
  .scroll-indicator,
  .type-thumb img,
  .menu-section-card,
  .testimonial-card,
  .atmosphere-collage img,
  .social-pill,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
  }
}

.back-top-btn {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 14;
  display: grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

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

.back-top-btn:hover {
  background: #0b5874;
}

@media (max-width: 1100px) {
  .hero-brand {
    top: 1.9rem;
    left: 1.8rem;
    max-width: calc(100% - 9rem);
  }

  .hero-brand-logo {
    max-width: min(28rem, calc(100vw - 10rem));
    max-height: 11.8rem;
  }

  .hero-brand p {
    font-size: clamp(3.6rem, 6vw, 4.8rem);
  }

  .hero-controls {
    top: 2.2rem;
    right: 1.8rem;
    gap: 0.8rem;
  }

  .desktop-nav {
    display: none;
  }

  .nav-inner {
    width: auto;
    min-height: auto;
    margin-right: 0;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: grid;
    gap: 0.45rem;
    width: 4.4rem;
    height: 4.4rem;
    padding: 1rem 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
  }

  .mobile-nav {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 32;
    width: min(82vw, 34rem);
    transform: translateX(-100%);
    transition: transform 280ms ease;
  }

  .mobile-nav.active {
    display: block;
    transform: translateX(0);
  }

  .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    height: 100%;
    padding: 2.4rem;
    background: #111;
  }

  .mobile-language-switcher {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 0.8rem;
    padding: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
  }

  .mobile-nav-panel a {
    color: var(--white);
    font-size: 1.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .mobile-close {
    align-self: flex-end;
    color: var(--white);
    font-size: 3rem;
    line-height: 1;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 31;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .mobile-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .hero-content {
    min-height: 95rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    width: min(100% - 3.2rem, 100%);
    padding-left: calc(20% + 1rem);
    padding-right: 1.6rem;
    padding-top: 7rem;
    padding-bottom: 6.8rem;
    margin-inline: auto;
  }

  .type-row,
  .type-row.reverse,
  .atmosphere-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .type-row.reverse .type-thumb {
    order: initial;
  }

  .menu-row.type-row.reverse .type-thumb {
    order: initial;
  }

  .reservation-inline {
    flex-direction: column;
  }

  .atmosphere-figure {
    grid-template-columns: 1fr;
  }

  .atmosphere-collage-main {
    min-height: 38rem;
  }

  .atmosphere-collage-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atmosphere-collage-side img {
    min-height: 18rem;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .shell {
    width: min(100% - 2.4rem, var(--container));
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(244, 251, 253, 0.76) 0%, rgba(244, 251, 253, 0.48) 42%, rgba(244, 251, 253, 0.16) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(224, 241, 247, 0.1) 46%, rgba(221, 241, 247, 0.18) 100%);
  }

  .hero-header {
    min-height: clamp(54rem, 86svh, 68rem);
  }

  .nav-inner {
    width: auto;
    min-height: 5.8rem;
    padding: 0;
    gap: 1rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .language-switcher {
    gap: 0.4rem;
  }

  .lang-btn {
    min-width: 3.6rem;
    padding: 0.65rem 0.9rem;
  }

  .theme-switcher {
    gap: 0.4rem;
  }

  .theme-btn {
    min-width: 4.8rem;
    padding: 0.65rem 0.9rem;
  }

  .hero-content {
    min-height: clamp(48rem, 74svh, 60rem);
    width: min(calc(100% - 2.4rem), 44rem);
    align-items: center;
    justify-content: flex-start;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    padding-top: clamp(12.8rem, 22svh, 14.2rem);
    padding-bottom: clamp(3.2rem, 6svh, 4.2rem);
    gap: clamp(1.2rem, 2.2svh, 1.4rem);
    margin-inline: auto;
  }

  .hero-brand {
    top: 1rem;
    left: 1rem;
    transform: none;
    width: calc(100% - clamp(6.2rem, 12vw, 7rem));
    max-width: none;
    display: flex;
    justify-content: flex-start;
  }

  .hero-brand-logo {
    width: clamp(25.5rem, 65vw, 37rem) !important;
    max-width: none !important;
    max-height: clamp(12.4rem, 20.4vw, 16.6rem) !important;
  }

  .hero-controls {
    top: 1rem;
    right: 1rem;
    gap: 0.4rem;
  }

  .hero-controls .language-switcher,
  .hero-controls .theme-switcher {
    display: none;
  }

  .nav-toggle {
    background: rgba(255, 255, 255, 0.34) !important;
    border: 1px solid rgba(255, 255, 255, 0.58) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 10px 24px rgba(8, 38, 56, 0.22) !important;
  }

  .nav-toggle span {
    background: var(--accent-deep) !important;
  }

  .hero-title-box {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .hero-title-box h1 {
    padding: 0;
    border-radius: 0;
    font-size: clamp(3.35rem, 10.4vw, 5.1rem);
    line-height: 0.98;
    margin-inline: auto;
  }

  .hero-title-box p {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    padding: 0;
    font-size: clamp(1.52rem, 4.45vw, 2.16rem);
    max-width: min(28rem, 84vw);
    text-align: center;
  }

  .hero-cta {
    display: inline-flex;
    width: fit-content;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 1.6rem auto 0;
  }

  .scroll-indicator {
    display: none;
  }

  .types-section,
  .testimonials-section,
  .atmosphere-section,
  .reservation-section {
    padding: 5.6rem 0;
  }

  .section-stack,
  .menu-flow {
    gap: 2.4rem;
  }

  .type-row {
    gap: 2.8rem;
  }

  .type-thumb {
    width: min(100%, 32rem);
    margin-inline: auto;
  }

  .atmosphere-collage-main {
    min-height: 28rem;
  }

  .atmosphere-collage-side,
  .atmosphere-collage-strip {
    grid-template-columns: 1fr;
  }

  .atmosphere-collage-side img,
  .atmosphere-collage-strip img {
    min-height: 18rem;
  }

  .type-thumb img {
    min-height: 24rem;
    aspect-ratio: 4 / 3;
  }

  .type-thumb,
  .testimonial-card {
    border-radius: 2.4rem;
  }

  .type-copy,
  .prep-quote {
    padding: 0;
  }

  .prep-inner {
    min-height: 38rem;
    justify-content: center;
  }

  .prep-quote p {
    text-align: center;
    font-size: clamp(2.6rem, 7vw, 3.6rem);
  }

  .menu-section-subtitle {
    font-size: 1.6rem;
    line-height: 1.7;
  }

  .type-highlights {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    margin-top: 2rem;
  }

  .type-highlights li {
    font-size: 1.5rem;
    line-height: 1.62;
    padding: 1rem 0 1rem 1.5rem;
  }

  .type-highlights li::before {
    top: 1.7rem;
    width: 0.55rem;
    height: 0.55rem;
  }

  .testimonial-card {
    padding: 0 0 1.6rem;
  }

  .atmosphere-copy {
    padding: 2rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .reservation-subcopy {
    font-size: 1.55rem;
    line-height: 1.68;
    max-width: 32rem;
  }

  .footer-socials {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .menu-list li,
  .type-copy p,
  .atmosphere-copy p,
  .testimonial-card p,
  .footer-legal p {
    font-size: 1.5rem;
  }

  .menu-list li {
    padding: 0.85rem 0;
  }

  .testimonial-card {
    padding: 2.2rem 1.8rem;
  }

  .reservation-inner {
    gap: 1.2rem;
  }

  .reservation-phone {
    font-size: clamp(2.8rem, 9vw, 4rem);
  }

  .footer-brand {
    justify-content: center;
    text-align: center;
  }

  .footer-name {
    font-size: 3rem;
  }

  .footer-inner {
    gap: 1.6rem;
    text-align: center;
  }

  .footer-address {
    max-width: 100%;
    font-size: 1.45rem;
  }

  .footer-socials {
    gap: 0.8rem;
  }

  .social-pill {
    min-height: 4.2rem;
    padding: 0 1.1rem;
    font-size: 1.15rem;
    flex: 0 0 auto;
    width: min(100%, 22rem);
    min-width: 22rem;
  }
}

@media (max-width: 767px) {
  html[data-theme="light"] .nav-inner {
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
}

html[data-theme="light"] body { background: #f7fbfc; }
html[data-theme="light"] .preload { background: #eef7fa; }
html[data-theme="light"] .preload .text { color: rgba(12, 44, 63, 0.72); }
html[data-theme="light"] .hero-header { background: #f1f8fa; }
html[data-theme="light"] .hero-slide:nth-child(1) { background-image: url('../../images/hero-01.webp') !important; }
html[data-theme="light"] .hero-slide:nth-child(2) { background-image: url('../../images/hero-02.webp') !important; }
html[data-theme="light"] .hero-slide:nth-child(3) { background-image: url('../../images/hero-03.webp') !important; }
html[data-theme="light"] .hero-slide:nth-child(4) { background-image: url('../../images/hero-04.webp') !important; }
html[data-theme="light"] .hero-slide:nth-child(5) { background-image: url('../../images/hero-05.webp') !important; }
html[data-theme="light"] .hero-overlay { background: linear-gradient(90deg, rgba(239,249,252,0.62) 0%, rgba(239,249,252,0.28) 42%, rgba(239,249,252,0.08) 100%), linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(214,238,246,0.05) 42%, rgba(221,241,247,0.12) 100%); }
html[data-theme="light"] .hero-brand p { color: var(--accent); text-shadow: none; }
html[data-theme="light"] .nav-inner { background: rgba(255, 255, 255, 0.88); border-color: rgba(12, 44, 63, 0.08); }
html[data-theme="light"] .desktop-nav a,
html[data-theme="light"] .lang-btn,
html[data-theme="light"] .theme-btn,
html[data-theme="light"] .mobile-nav-panel a,
html[data-theme="light"] .mobile-close { color: rgba(12, 44, 63, 0.9); }
html[data-theme="light"] .desktop-nav a:hover { color: var(--accent); }
html[data-theme="light"] .theme-btn { border-color: rgba(12, 44, 63, 0.08); }
html[data-theme="light"] .mobile-nav-panel { background: #ffffff; }
html[data-theme="light"] .mobile-language-switcher {
  border-color: rgba(12, 44, 63, 0.1);
  background: rgba(12, 44, 63, 0.04);
}
html[data-theme="light"] .nav-toggle {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(8, 38, 56, 0.22);
}
html[data-theme="light"] .nav-toggle span { background: var(--accent-deep); }
html[data-theme="light"] .types-section,
html[data-theme="light"] .testimonials-section,
html[data-theme="light"] .reservation-section,
html[data-theme="light"] .site-footer { background: #f4fbfd; }
html[data-theme="light"] .atmosphere-section,
html[data-theme="light"] .testimonials-section-alt { background: linear-gradient(180deg, #f4fbfd 0%, #e8f5f8 100%); }
html[data-theme="light"] .type-copy p,
html[data-theme="light"] .atmosphere-copy p,
html[data-theme="light"] .testimonial-card p,
html[data-theme="light"] .footer-address,
html[data-theme="light"] .footer-legal p { color: rgba(12, 44, 63, 0.76); }
html[data-theme="light"] .type-highlights li {
  color: rgba(12, 44, 63, 0.98);
  border-bottom-color: rgba(12, 44, 63, 0.16);
  text-shadow: none;
}
html[data-theme="light"] .type-highlights li::before {
  background: rgba(12, 44, 63, 0.68);
}
html[data-theme="light"] .section-heading.center .section-title::after { background: rgba(12, 44, 63, 0.18); }
html[data-theme="light"] .type-thumb,
html[data-theme="light"] .testimonial-card { border-color: rgba(12, 44, 63, 0.12); }
html[data-theme="light"] .menu-section { background: #f4fbfd; }
html[data-theme="light"] .menu-overlay { background: transparent; }
html[data-theme="light"] .menu-title,
html[data-theme="light"] .testimonial-card h3,
html[data-theme="light"] .reservation-phone,
html[data-theme="light"] .footer-name { color: var(--smoky-black-1); }
html[data-theme="light"] .section-title,
html[data-theme="light"] .menu-title { color: var(--accent); }
html[data-theme="light"] .hero-title-box h1 { color: #082638; }
html[data-theme="light"] .offer-copy { color: rgba(12, 44, 63, 0.78); }
html[data-theme="light"] .offer-pack-title { color: var(--smoky-black-1); }
html[data-theme="light"] .offer-pack h3 { border-color: rgba(12, 44, 63, 0.12); background: rgba(12, 44, 63, 0.04); }
html[data-theme="light"] .offer-price { color: var(--smoky-black-1); }
html[data-theme="light"] .offer-points li { color: rgba(12, 44, 63, 0.9); }
html[data-theme="light"] .offer-contact-title { color: var(--smoky-black-1); }
html[data-theme="light"] .offer-card { border-color: rgba(12, 44, 63, 0.12); background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3)); }
html[data-theme="light"] .menu-list li { color: rgba(12, 44, 63, 0.88); border-bottom-color: rgba(12, 44, 63, 0.12); }
html[data-theme="light"] .menu-section-card { border-color: rgba(12, 44, 63, 0.1); background: linear-gradient(180deg, rgba(255,255,255,0.56), rgba(255,255,255,0.32)); }
html[data-theme="light"] .menu-section-title { color: var(--accent); }
html[data-theme="light"] .menu-section-note { color: rgba(12, 44, 63, 0.58); }
html[data-theme="light"] .menu-item { border-bottom-color: rgba(12, 44, 63, 0.12); }
html[data-theme="light"] .menu-item-name,
html[data-theme="light"] .menu-item-price,
html[data-theme="light"] .menu-empty-state { color: rgba(12, 44, 63, 0.88); }
html[data-theme="light"] .site-footer { border-top-color: rgba(12, 44, 63, 0.08); background: linear-gradient(180deg, #eef7fa 0%, #e3f1f5 100%); }
html[data-theme="light"] .footer-legal { border-top-color: rgba(12, 44, 63, 0.08); }
html[data-theme="light"] .social-pill { color: rgba(12, 44, 63, 0.92); border-color: rgba(12, 44, 63, 0.78); }
html[data-theme="light"] .social-pill:hover { border-color: var(--accent); background: rgba(15, 111, 145, 0.08); }
html[data-theme="light"] .hero-title-box { color: var(--smoky-black-1); filter: none; }
html[data-theme="light"] .hero-title-box h1,
html[data-theme="light"] .hero-title-box p { text-shadow: none; }
html[data-theme="light"] .hero-title-box h1 { background: transparent; }
html[data-theme="light"] .hero-title-box p { background: transparent; color: rgba(12, 44, 63, 0.92); }
html[data-theme="light"] .testimonials-section[style] {
  background-image: linear-gradient(rgba(244,251,253,0.9), rgba(225,242,248,0.9)), url('../../images/section-testimonials.webp') !important;
}
html[data-theme="light"] .testimonial-card {
  background: transparent;
  border-bottom-color: rgba(12, 44, 63, 0.12);
}
html[data-theme="light"] .testimonial-card::before { color: rgba(13, 120, 156, 0.16); }
html[data-theme="light"] .atmosphere-copy {
  border-left: 1px solid rgba(12, 44, 63, 0.12);
  background: transparent;
  box-shadow: none;
}
html[data-theme="light"] .reservation-inline {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
html[data-theme="light"] .reservation-subcopy {
  color: rgba(12, 44, 63, 0.76);
}
html[data-theme="light"] .reservation-phone {
  text-shadow: none;
  color: var(--accent-deep);
}

@media (max-width: 900px) {
  .offer-pack-grid { grid-template-columns: 1fr; }
  .offer-pack {
    grid-template-rows: none;
    min-height: auto;
    padding: 3rem 2.2rem;
  }
  .offer-pack-title,
  .offer-copy,
  .offer-price { min-height: auto; }
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .types-section .section-title,
  .atmosphere-copy .section-title,
  .reservation-inner .section-title,
  .footer-inner {
    text-align: center;
  }

  .type-copy,
  .atmosphere-copy,
  .reservation-inner {
    margin-inline: auto;
  }

  .type-copy p,
  .atmosphere-copy p,
  .reservation-subcopy {
    max-width: none;
    text-align: center;
  }

  .type-highlights {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .type-highlights li {
    min-height: 0;
    justify-content: center;
    text-align: center;
    padding-left: 0;
    width: min(100%, 30rem);
    margin-inline: auto;
  }

  .type-highlights li::before {
    display: none;
  }

  .menu-inner {
    padding-top: 3.2rem;
    padding-bottom: 5rem;
  }

  .menu-title-wrap {
    margin-bottom: 2.6rem;
    max-width: 100%;
    text-align: center;
  }

  .menu-title {
    font-size: clamp(3.8rem, 10vw, 5rem);
    line-height: 1.02;
  }

  .menu-section-subtitle {
    font-size: 1.8rem;
    line-height: 1.72;
    margin-top: 1.2rem;
    max-width: none;
  }

  .menu-catalog {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .menu-section-card {
    padding: 2rem 1.6rem 1.8rem;
    border-radius: 2rem;
    width: min(100%, 34rem);
    margin-inline: auto;
  }

  .menu-section-header {
    margin-bottom: 1.4rem;
    text-align: center;
  }

  .menu-section-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .menu-section-note {
    font-size: 1.28rem;
    line-height: 1.55;
    letter-spacing: 0.04em;
    margin-top: 0.8rem;
    max-width: none;
  }

  .menu-section-items {
    gap: 0.5rem;
    text-align: center;
  }

  .menu-item {
    gap: 1rem;
    padding-bottom: 1rem;
    justify-items: center;
    text-align: center;
  }

  .menu-item-name,
  .menu-item-price {
    font-size: 1.78rem;
    line-height: 1.58;
  }

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

  .atmosphere-copy {
    padding: 2rem 0 0;
    text-align: center;
  }

  .footer-brand,
  .footer-inner,
  .footer-socials {
    justify-content: center;
  }

  html[data-theme="light"] .nav-inner {
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
}

@media (max-width: 480px) {
  .nav-inner { gap: 0.8rem; }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(244, 251, 253, 0.82) 0%, rgba(244, 251, 253, 0.56) 44%, rgba(244, 251, 253, 0.2) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(224, 241, 247, 0.12) 48%, rgba(221, 241, 247, 0.22) 100%);
  }

  .hero-content {
    width: min(calc(100% - 1.8rem), 38rem);
    align-items: center;
    justify-content: flex-start;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
    padding-top: clamp(11.6rem, 20svh, 13.4rem);
    padding-bottom: clamp(2.8rem, 5svh, 3.8rem);
    min-height: clamp(44rem, 70svh, 56rem);
  }

  .hero-brand {
    top: 0.8rem;
    left: 0.9rem;
    transform: none;
    width: calc(100% - clamp(5.8rem, 13vw, 6.4rem));
    max-width: none;
    display: flex;
    justify-content: flex-start;
  }

  .hero-brand-logo {
    width: clamp(23rem, 67vw, 33rem) !important;
    max-width: none !important;
    max-height: clamp(11.3rem, 20.4vw, 15.2rem) !important;
  }

  .hero-brand p {
    font-size: clamp(3.2rem, 9vw, 4rem);
  }

  .hero-controls {
    top: 1rem;
    right: 0.9rem;
    gap: 0.6rem;
  }

  .hero-controls .language-switcher,
  .hero-controls .theme-switcher {
    display: none;
  }

  .hero-header {
    min-height: clamp(50rem, 80svh, 58rem);
  }

  .nav-inner {
    border-radius: 2rem;
  }

  .hero-title-box h1 {
    font-size: clamp(3.12rem, 9.8vw, 4.6rem);
    max-width: 10ch;
    margin-inline: auto;
  }

  .hero-title-box p {
    max-width: min(27rem, 84vw);
    font-size: clamp(1.46rem, 4.24vw, 2rem);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .type-thumb img,
  .atmosphere-figure img {
    border-radius: 2rem;
  }

  .type-thumb {
    width: 100%;
  }

  .type-thumb img {
    min-height: 22rem;
  }

  .social-pill {
    flex-basis: 100%;
  }
}

@media (max-width: 390px) {
  .hero-header {
    min-height: clamp(46rem, 78svh, 54rem);
  }

  .hero-content {
    width: min(calc(100% - 1.6rem), 34rem);
    min-height: clamp(40rem, 68svh, 52rem);
    padding-top: clamp(10.8rem, 18svh, 12.4rem);
    padding-bottom: clamp(2.4rem, 4.2svh, 3.2rem);
    gap: 1rem;
  }

  .hero-brand-logo {
    width: clamp(20rem, 69vw, 29rem) !important;
    max-height: clamp(10.2rem, 20.2vw, 13.6rem) !important;
  }

  .hero-title-box h1 {
    font-size: clamp(2.8rem, 8.8vw, 4rem);
  }

  .hero-title-box p {
    max-width: min(25rem, 84vw);
    font-size: clamp(1.32rem, 4vw, 1.8rem);
  }

  .hero-cta {
    margin-top: 1.2rem;
  }
}

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 1.6rem 0;
  background: rgba(9, 28, 40, 0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.consent-banner__inner {
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: 2rem;
  align-items: center;
}

.consent-banner__copy strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consent-banner__copy p {
  font-size: 1.4rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.76);
}

.consent-banner__actions {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.consent-banner__link,
.consent-banner__button {
  min-height: 4.4rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consent-banner__link {
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.consent-banner__button {
  background: var(--accent);
  color: var(--white);
  border: 1px solid transparent;
}

.footer-policy-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 1.2rem;
}

.footer-policy-links a {
  color: var(--accent-deep);
}

.footer-legal p {
  white-space: pre-line;
  color: var(--accent-deep);
}

.footer-credit a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-decoration-color: rgba(10, 92, 120, 0.28);
  text-underline-offset: 0.28rem;
}

.footer-credit a:hover {
  color: var(--accent);
  text-decoration-color: rgba(13, 120, 156, 0.5);
}

.policy-page-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(13, 120, 156, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fcfd 0%, #eff7f9 100%);
  overflow-y: auto;
}

.policy-page {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.policy-back-link {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--accent-deep);
  font-weight: 600;
}

.policy-card {
  padding: 3.2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 44, 63, 0.08);
  border-radius: 2.4rem;
  box-shadow: 0 18px 44px rgba(8, 38, 56, 0.08);
}

.policy-card h1 {
  margin-bottom: 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  line-height: 1.08;
}

.policy-card h2 {
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
  font-size: 2rem;
  color: var(--accent-deep);
}

.policy-card p {
  color: rgba(12, 44, 63, 0.84);
}

@media (max-width: 767px) {
  .consent-banner__inner {
    grid-template-columns: 1fr;
  }

  .consent-banner__actions {
    justify-content: flex-start;
  }

  .policy-page.shell {
    width: min(100% - 2.4rem, 100%);
  }

  .policy-page {
    padding-top: 2.4rem;
    padding-bottom: 4rem;
  }

  .policy-back-link {
    margin-bottom: 1.6rem;
    font-size: 1.45rem;
  }

  .policy-card {
    padding: 2.4rem 1.8rem;
    border-radius: 2rem;
  }

  .policy-card h1 {
    margin-bottom: 1.4rem;
    font-size: clamp(3rem, 8.4vw, 4.2rem);
    line-height: 1.08;
  }

  .policy-card h2 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.82rem;
    line-height: 1.28;
  }

  .policy-card p {
    font-size: 1.55rem;
    line-height: 1.72;
  }
}

@media (max-width: 480px) {
  .policy-page.shell {
    width: min(100% - 1.8rem, 100%);
  }

  .policy-page {
    padding-top: 1.8rem;
    padding-bottom: 3.2rem;
  }

  .policy-card {
    padding: 2rem 1.5rem;
    border-radius: 1.8rem;
  }

  .policy-card h1 {
    font-size: clamp(2.7rem, 8.6vw, 3.6rem);
  }

  .policy-card h2 {
    font-size: 1.72rem;
  }

  .policy-card p {
    font-size: 1.48rem;
    line-height: 1.68;
  }
}
