:root {
  --gold-crayola: hsl(16, 48%, 49%);
  --quick-silver: hsl(30, 10%, 44%);
  --davys-grey: hsl(28, 11%, 31%);
  --smoky-black-1: hsl(22, 28%, 13%);
  --smoky-black-2: hsl(18, 22%, 16%);
  --smoky-black-3: hsl(12, 20%, 18%);
  --eerie-black-1: hsl(32, 24%, 92%);
  --eerie-black-2: hsl(34, 26%, 88%);
  --eerie-black-3: hsl(30, 20%, 96%);
  --eerie-black-4: hsl(22, 16%, 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(20, 15%, 12%);
  --black-alpha-80: hsla(20, 30%, 6%, 0.82);
  --black-alpha-15: hsla(20, 18%, 18%, 0.15);

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

  --container: 1296px;
  --accent: #a44831;
  --dark-bg: #17100e;
  --dark-card: #241714;
  --dark-border: rgba(255, 255, 255, 0.08);
  --soft-text: rgba(255, 255, 255, 0.75);
  --transition: 220ms ease;
}

*,
*::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.6rem;
  line-height: 1.65;
  color: #f5f1eb;
  background: #100e0c;
  overflow-x: hidden;
  overflow-y: hidden;
}

body.loaded {
  overflow-y: auto;
}

body.nav-active {
  overflow: hidden;
}

body.banner-hidden .demo-banner {
  display: none;
}

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(100% - 3.2rem, var(--container));
  margin-inline: auto;
}

.preload {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  gap: 1.6rem;
  background: #0d0d0d;
  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(255, 255, 255, 0.68);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

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

.demo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  min-height: 4.6rem;
  padding: 1rem 1.6rem;
  background: #101010;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.2rem;
  text-align: center;
}

.demo-banner button {
  width: 2.8rem;
  height: 2.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-header {
  position: relative;
  min-height: calc(100vh - 4.6rem);
  overflow: hidden;
  background: #0f0f0f;
}

.hero-brand {
  position: absolute;
  top: 1.7rem;
  left: 2.4rem;
  z-index: 4;
  max-width: min(42rem, calc(100% - 4.8rem));
  overflow: hidden;
}

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

.hero-brand-logo {
  max-width: min(32rem, calc(100vw - 8rem));
  max-height: 8.8rem;
}

.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: 2.2rem;
  right: 2.4rem;
  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;
  animation: heroFade 18s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }

@keyframes heroFade {
  0%, 10% { opacity: 0; transform: scale(1); }
  16%, 33% { opacity: 1; transform: scale(1.04); }
  44%, 100% { opacity: 0; transform: scale(1.08); }
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.22) 24%, rgba(0, 0, 0, 0.74) 100%),
    radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.top-nav {
  position: relative;
  z-index: 3;
  padding-top: 1.2rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  min-height: 6.4rem;
  width: min(100% - 3.2rem, var(--container));
  margin-inline: auto;
  padding: 0 1.6rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.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(255, 255, 255, 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(255, 255, 255, 0.8);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 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.2rem;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.45rem;
  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: calc(100vh - 10rem);
  padding-top: 7rem;
  padding-bottom: 6rem;
}

.hero-title-box {
  max-width: 76rem;
  color: var(--white);
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}

.hero-title-box h1 {
  display: block;
  padding: 0;
  background: transparent;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6.2vw, 6.4rem);
  font-weight: 500;
  line-height: 1;
}

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

.hero-title-box p {
  display: block;
  margin-top: 2.2rem;
  margin-left: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  font-size: clamp(1.9rem, 2.8vw, 3.2rem);
  color: rgba(255, 255, 255, 0.96);
}

.hero-cta {
  display: inline-flex;
  margin-top: 3rem;
}

.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);
}

html[data-theme="light"] .scroll-indicator {
  color: rgba(22, 16, 13, 0.98);
}

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

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

.section-stack {
  display: grid;
  gap: 4.8rem;
}

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

.testimonials-section-alt {
  background: linear-gradient(180deg, #191311 0%, #140f0d 100%);
}

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

.type-row {
  display: grid;
  grid-template-columns: 28rem minmax(0, 1fr);
  gap: 3.2rem;
  align-items: center;
}

.type-row.reverse {
  grid-template-columns: minmax(0, 1fr) 28rem;
}

.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 20px 50px rgba(0, 0, 0, 0.2);
}

.type-thumb img {
  aspect-ratio: 1;
  object-fit: cover;
}

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

.section-title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  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 {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.7rem, 2vw, 2.4rem);
}

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

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

.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: rgba(0, 0, 0, 0.38);
}

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

.prep-quote {
  max-width: 53rem;
  padding: 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.4rem, 4.8vw, 5.8rem);
  line-height: 1.12;
  text-align: right;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.42);
  text-wrap: balance;
}

.menu-overlay {
  background: rgba(0, 0, 0, 0.64);
}

.menu-inner {
  padding-top: 4rem;
  padding-bottom: 6.4rem;
}

.menu-title-wrap {
  margin-bottom: 3.2rem;
  text-align: center;
}

.menu-catalog {
  column-count: 2;
  column-gap: 2.4rem;
}

.menu-section-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 2.4rem;
  box-shadow: var(--card-shadow);
  break-inside: avoid;
  display: inline-block;
  margin: 0 0 2.4rem;
  padding: 2.6rem 2.4rem;
  width: 100%;
}

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

.menu-section-title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 3vw, 3.8rem);
  line-height: 1.05;
}

.menu-section-note {
  color: var(--quick-silver);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  margin-top: 0.6rem;
  text-transform: uppercase;
}

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

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

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

.menu-item-name,
.menu-item-price {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.65rem;
  line-height: 1.5;
}

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

.menu-empty-state {
  color: var(--quick-silver);
  font-size: 1.6rem;
  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.2rem, 6vw, 6.2rem);
  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(3, minmax(0, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2.8rem 2.4rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  box-shadow: none;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
}

.testimonial-card h3 {
  color: var(--white);
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.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, #191311 0%, #140f0d 100%);
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 4rem;
  align-items: center;
}

.atmosphere-figure img {
  max-width: 100%;
  height: auto;
}

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

.reservation-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

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

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

.reservation-phone {
  color: #ffffff;
  font-size: clamp(3.4rem, 5vw, 5rem);
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
  transition: opacity var(--transition);
}

.reservation-phone:hover {
  opacity: 0.84;
}

.site-footer {
  padding: 4rem 0 3.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #17100e 0%, #120d0b 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.4rem;
  align-items: center;
}

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

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

.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: 34rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.28rem;
  line-height: 1.45;
  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.6rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.6rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #ffffff;
  background: transparent;
  font-size: 1.25rem;
  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(255, 255, 255, 0.08);
}

.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: #bb5b44;
}

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

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

  .hero-controls {
    top: 7.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-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: calc(100vh - 16rem);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

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

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

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

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

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

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

  .demo-banner {
    font-size: 1.1rem;
  }

  .nav-inner {
    min-height: 5.8rem;
    padding-inline: 1.2rem;
    gap: 1rem;
  }

  .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: calc(100vh - 13rem);
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
    gap: 2rem;
  }

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

  .hero-title-box h1 {
    padding: 0;
    border-radius: 0;
    font-size: clamp(3.8rem, 12vw, 5.6rem);
    line-height: 0.98;
  }

  .hero-title-box p {
    margin-left: 0;
    margin-top: 1rem;
    padding: 0;
    font-size: clamp(1.7rem, 5vw, 2.4rem);
    max-width: 29rem;
  }

  .hero-cta {
    display: inline-flex;
    width: fit-content;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 3rem 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: 2rem;
  }

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

  .type-thumb img {
    aspect-ratio: 4 / 3;
  }

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

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

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

  .prep-quote p {
    text-align: center;
    font-size: clamp(2.8rem, 8vw, 4rem);
  }

  .menu-inner {
    padding-top: 2.4rem;
    padding-bottom: 4.2rem;
  }

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

  .menu-catalog {
    column-count: 1;
  }

  .menu-section-card {
    padding: 2.2rem 1.8rem;
  }

  .menu-section-title {
    font-size: 2.8rem;
  }

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

  .menu-row .type-thumb {
    width: min(100%, 26rem);
  }

  .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: 1 1 calc(50% - 0.4rem);
  }
}

html[data-theme="light"] body { background: #fbfbfa; }
html[data-theme="light"] .preload { background: #f6f7f8; }
html[data-theme="light"] .preload .text,
html[data-theme="light"] .demo-banner,
html[data-theme="light"] .demo-banner button { color: rgba(35, 30, 28, 0.72); }
html[data-theme="light"] .demo-banner { background: #f8f9fa; border-bottom-color: rgba(37, 28, 24, 0.08); }
html[data-theme="light"] .hero-header { background: #f5f6f7; }
html[data-theme="light"] .hero-slide:nth-child(1) { background-image: url('../../images/image01.webp') !important; }
html[data-theme="light"] .hero-slide:nth-child(2) { background-image: url('../../images/image02.webp') !important; }
html[data-theme="light"] .hero-slide:nth-child(3) { background-image: url('../../images/image03.webp') !important; }
html[data-theme="light"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0.38) 42%, rgba(255,255,255,0.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 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(37, 28, 24, 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(37, 28, 24, 0.9); }
html[data-theme="light"] .desktop-nav a:hover { color: var(--accent); }
html[data-theme="light"] .theme-btn { border-color: rgba(37, 28, 24, 0.08); }
html[data-theme="light"] .mobile-nav-panel { background: #ffffff; }
html[data-theme="light"] .nav-toggle { background: rgba(37, 28, 24, 0.08); }
html[data-theme="light"] .nav-toggle span { background: var(--smoky-black-1); }
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: #f7f8f9; }
html[data-theme="light"] .atmosphere-section,
html[data-theme="light"] .testimonials-section-alt { background: linear-gradient(180deg, #f8f9fa 0%, #eef1f3 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(37, 28, 24, 0.76); }
html[data-theme="light"] .section-heading.center .section-title::after { background: rgba(37, 28, 24, 0.18); }
html[data-theme="light"] .type-thumb,
html[data-theme="light"] .testimonial-card { border-color: rgba(37, 28, 24, 0.12); }
html[data-theme="light"] .menu-overlay { background: linear-gradient(180deg, rgba(248,250,252,0.86), rgba(238,242,245,0.9)); }
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,
html[data-theme="light"] .hero-title-box h1 { color: var(--accent); }
html[data-theme="light"] .offer-copy { color: rgba(37, 28, 24, 0.78); }
html[data-theme="light"] .offer-pack-title { color: var(--smoky-black-1); }
html[data-theme="light"] .offer-pack h3 { border-color: rgba(37, 28, 24, 0.12); background: rgba(37, 28, 24, 0.04); }
html[data-theme="light"] .offer-price { color: var(--smoky-black-1); }
html[data-theme="light"] .offer-points li { color: rgba(37, 28, 24, 0.9); }
html[data-theme="light"] .offer-contact-title { color: var(--smoky-black-1); }
html[data-theme="light"] .offer-card { border-color: rgba(37, 28, 24, 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(37, 28, 24, 0.88); border-bottom-color: rgba(37, 28, 24, 0.12); }
html[data-theme="light"] .menu-section-card { border-color: rgba(37, 28, 24, 0.12); background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3)); }
html[data-theme="light"] .menu-section-title { color: var(--accent); }
html[data-theme="light"] .menu-section-note { color: rgba(37, 28, 24, 0.58); }
html[data-theme="light"] .menu-item { border-bottom-color: rgba(37, 28, 24, 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(37, 28, 24, 0.88); }
html[data-theme="light"] .site-footer { border-top-color: rgba(37, 28, 24, 0.08); background: linear-gradient(180deg, #f6f7f8 0%, #eceff2 100%); }
html[data-theme="light"] .footer-legal { border-top-color: rgba(37, 28, 24, 0.08); }
html[data-theme="light"] .social-pill { color: rgba(37, 28, 24, 0.92); border-color: rgba(37, 28, 24, 0.78); }
html[data-theme="light"] .social-pill:hover { border-color: var(--accent); background: rgba(164, 72, 49, 0.08); }
html[data-theme="light"] .hero-title-box {
  color: var(--smoky-black-1);
  filter: drop-shadow(0 10px 28px rgba(255, 255, 255, 0.72));
}
html[data-theme="light"] .hero-title-box h1 {
  background: transparent;
  color: #2b1d17;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.85), 0 18px 34px rgba(255, 255, 255, 0.55);
}
html[data-theme="light"] .hero-title-box p {
  background: transparent;
  color: #3a2a22;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.82), 0 12px 28px rgba(255, 255, 255, 0.5);
}
html[data-theme="light"] .hero-cta {
  color: #2b1d17;
  border-color: rgba(43, 29, 23, 0.88);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
html[data-theme="light"] .hero-cta:hover {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
}
html[data-theme="light"] .testimonials-section[style] {
  background-image: linear-gradient(rgba(248,250,252,0.9), rgba(238,242,245,0.9)), url('../../images/image08.webp') !important;
}

@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; }
}

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

  .hero-brand {
    top: 1.8rem;
    left: 1.6rem;
    max-width: calc(100% - 7.8rem);
  }

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

  .hero-controls {
    top: 6.8rem;
    right: 1.6rem;
    gap: 0.6rem;
  }

  .hero-controls .lang-btn {
    min-width: 3.2rem;
    padding: 0.5rem 0.7rem;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }

  .hero-controls .theme-btn {
    min-width: 4rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }

  .hero-header {
    min-height: calc(100vh - 4.6rem);
  }

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

  .hero-title-box h1 {
    font-size: clamp(3.4rem, 11vw, 4.8rem);
  }

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

  .type-thumb {
    width: min(100%, 24rem);
  }

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