﻿:root {
  --bg: #f7efe3;
  --bg-alt: #efe0cf;
  --ink: #2b1b10;
  --muted: #6c4b35;
  --terracotta: #c45a3b;
  --saffron: #f1b24a;
  --olive: #6d7b4b;
  --sea: #2f5c5f;
  --cream: #fff8ef;
  --shadow: 0 20px 45px rgba(43, 27, 16, 0.15);
  --radius: 28px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Manrope", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(241, 178, 74, 0.35), transparent 55%),
    radial-gradient(circle at 85% 15%, rgba(196, 90, 59, 0.25), transparent 60%),
    linear-gradient(160deg, var(--bg) 0%, #f2e2d0 50%, #f0ddc8 100%);
  min-height: 100vh;
}

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

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

.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: 0.3;
  z-index: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 6vw;
  background: rgba(255, 248, 239, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(108, 75, 53, 0.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(241, 178, 74, 0.25);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  justify-self: center;
}

.brand {
  justify-self: start;
}

.topbar .btn {
  justify-self: end;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.lang-toggle {
  padding: 10px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lang-flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(43, 27, 16, 0.18);
  box-shadow: 0 2px 6px rgba(43, 27, 16, 0.18);
}

.lang-text {
  font-weight: 700;
}

.nav a {
  position: relative;
  padding-bottom: 6px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(43, 27, 16, 0.18);
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), #e67a4f);
  color: #fff;
}

.btn-ghost {
  border-color: rgba(43, 27, 16, 0.2);
  background: rgba(255, 255, 255, 0.4);
}

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

main {
  position: relative;
  z-index: 1;
}

section {
  padding: 90px 6vw;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(108, 75, 53, 0.12);
  box-shadow: 0 18px 30px rgba(43, 27, 16, 0.08);
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-top: 0;
}

.legal-page p,
.legal-page li {
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 20px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 48px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin: 0 0 20px;
}

.hero-logo {
  width: clamp(180px, 30vw, 280px);
  max-width: 280px;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 12px 18px rgba(43, 27, 16, 0.18));
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 520px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 32px;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  background: rgba(255, 255, 255, 0.6);
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(108, 75, 53, 0.15);
}

.quick-info .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 4px;
}

.quick-info .value {
  font-weight: 600;
}

.hero-centered {
  position: relative;
  justify-items: center;
  text-align: center;
}

.hero-centered::before,
.hero-centered::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero-centered::before {
  border-radius: 50%;
  width: 280px;
  height: 280px;
  left: -90px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(241, 178, 74, 0.35), rgba(241, 178, 74, 0));
  opacity: 0.5;
}

.hero-centered::after {
  inset: 0;
  background-image: radial-gradient(rgba(108, 75, 53, 0.12) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
  opacity: 0.35;
}

.hero-centered .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-decor .decor {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.24;
  transform: rotate(var(--decor-rotate, 0deg));
  animation: hero-drift var(--decor-duration, 18s) ease-in-out infinite;
  animation-delay: var(--decor-delay, 0s);
  transform-origin: center;
  will-change: transform;
}

.decor-fish {
  width: 240px;
  height: 120px;
  left: -60px;
  top: 120px;
  --decor-rotate: -8deg;
  --decor-dx: 16px;
  --decor-dy: -12px;
  --decor-duration: 21s;
  --decor-delay: -6s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 60'><g fill='none' stroke='%236c4b35' stroke-opacity='0.25' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M10 30h70'/><path d='M80 30l15-10v20z'/><path d='M20 22l6 8-6 8'/><path d='M35 20l5 10-5 10'/><path d='M50 20l5 10-5 10'/><circle cx='12' cy='30' r='5'/></g></svg>");
}


.decor-plate {
  width: 220px;
  height: 220px;
  right: -70px;
  top: 140px;
  --decor-rotate: 6deg;
  --decor-dx: -14px;
  --decor-dy: 10px;
  --decor-duration: 24s;
  --decor-delay: -10s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'><g fill='none' stroke='%236c4b35' stroke-opacity='0.22' stroke-width='2'><circle cx='60' cy='60' r='46'/><circle cx='60' cy='60' r='30'/></g></svg>");
}

.decor-meat {
  width: 220px;
  height: 140px;
  left: -50px;
  bottom: 80px;
  --decor-rotate: 6deg;
  --decor-dx: 12px;
  --decor-dy: 14px;
  --decor-duration: 22s;
  --decor-delay: -14s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 90'><g fill='none' stroke='%236c4b35' stroke-opacity='0.22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M25 50c0-16 12-30 28-30h40c18 0 30 18 26 34-3 13-15 22-30 22H55c-17 0-30-12-30-26z'/><circle cx='52' cy='52' r='8'/></g></svg>");
}

.decor-bread-left {
  width: 210px;
  height: 120px;
  left: -20px;
  top: 55%;
  --decor-rotate: -7deg;
  --decor-dx: 12px;
  --decor-dy: -8px;
  --decor-duration: 23s;
  --decor-delay: -2s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 90'><g fill='none' stroke='%236c4b35' stroke-opacity='0.22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 50c0-18 16-32 36-32h38c20 0 36 14 36 32s-16 32-36 32H56c-20 0-36-14-36-32z'/><path d='M58 36l-8 10'/><path d='M78 34l-8 12'/><path d='M98 36l-8 10'/></g></svg>");
}

.decor-fish-small {
  width: 180px;
  height: 90px;
  right: 20px;
  bottom: 90px;
  --decor-rotate: 4deg;
  --decor-dx: -10px;
  --decor-dy: -8px;
  --decor-duration: 19s;
  --decor-delay: -4s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 60'><g fill='none' stroke='%236c4b35' stroke-opacity='0.22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M10 30h70'/><path d='M80 30l15-10v20z'/><path d='M20 22l6 8-6 8'/><path d='M35 20l5 10-5 10'/><circle cx='12' cy='30' r='4'/></g></svg>");
}

.decor-plate-small {
  width: 160px;
  height: 160px;
  left: 40px;
  top: 260px;
  --decor-rotate: -4deg;
  --decor-dx: 10px;
  --decor-dy: 12px;
  --decor-duration: 20s;
  --decor-delay: -12s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'><g fill='none' stroke='%236c4b35' stroke-opacity='0.2' stroke-width='2'><circle cx='60' cy='60' r='42'/><circle cx='60' cy='60' r='26'/></g></svg>");
}

.decor-cannolo-right {
  width: 170px;
  height: 110px;
  right: 34px;
  bottom: 210px;
  --decor-rotate: 4deg;
  --decor-dx: -10px;
  --decor-dy: -6px;
  --decor-duration: 20s;
  --decor-delay: -9s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 90'><g fill='none' stroke='%236c4b35' stroke-opacity='0.22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><ellipse cx='30' cy='45' rx='18' ry='22'/><ellipse cx='110' cy='45' rx='18' ry='22'/><path d='M30 23h80'/><path d='M30 67h80'/><path d='M50 30l40 30'/><path d='M50 60l40-30'/></g></svg>");
}

.decor-steak-right {
  width: 210px;
  height: 130px;
  right: -10px;
  top: 38%;
  --decor-rotate: 5deg;
  --decor-dx: -14px;
  --decor-dy: 10px;
  --decor-duration: 22s;
  --decor-delay: -11s;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 95'><g fill='none' stroke='%236c4b35' stroke-opacity='0.22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M18 56c0-18 14-34 34-34h38c22 0 40 18 40 36s-18 36-40 36H52c-20 0-34-14-34-28z'/><circle cx='62' cy='56' r='8'/></g></svg>");
}

.decor-steak-right-alt {
  width: 190px;
  height: 120px;
  right: 40px;
  top: 66%;
  --decor-rotate: -3deg;
  --decor-dx: -12px;
  --decor-dy: 8px;
  --decor-duration: 24s;
  --decor-delay: -7s;
  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 100'><g fill='none' stroke='%236c4b35' stroke-opacity='0.22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M26 58c0-18 14-34 34-34h34c26 0 46 18 46 36s-20 36-46 36H60c-20 0-34-14-34-28z'/><path d='M118 30l18-12 8 10-18 12'/><circle cx='146' cy='20' r='6'/><circle cx='132' cy='36' r='5'/><path d='M78 54c10-6 22-6 30 2'/></g></svg>\");
}

.hero-centered .lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-centered .cta-group {
  justify-content: center;
}

.hero-centered .quick-info {
  max-width: 720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.hero-art {
  position: relative;
  height: 420px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 248, 239, 0.75), rgba(239, 224, 207, 0.9));
  border: 1px solid rgba(108, 75, 53, 0.12);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-art .sun {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff7de, var(--saffron));
  top: 40px;
  right: 60px;
  animation: float 10s ease-in-out infinite;
}

.hero-art .plate {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff8ef, #f0ddc8);
  border: 10px solid rgba(196, 90, 59, 0.3);
  bottom: -40px;
  left: 40px;
  box-shadow: 0 24px 40px rgba(43, 27, 16, 0.2);
}

.hero-art .leaf {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 60% 40% 60% 40%;
  background: linear-gradient(140deg, var(--olive), #88935b);
  top: 200px;
  right: -20px;
  transform: rotate(-25deg);
}

.story {
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(108, 75, 53, 0.1);
  border-bottom: 1px solid rgba(108, 75, 53, 0.1);
}

.specialties {
  background: rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(108, 75, 53, 0.1);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.specialties-card {
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
  border: none;
  aspect-ratio: 3 / 4;
  box-shadow:
    0 20px 45px rgba(43, 27, 16, 0.2),
    0 6px 16px rgba(43, 27, 16, 0.12);
}

.specialties-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(260px, 520px);
  gap: 48px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.story-text h2,
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0 0 12px;
}

.story-text p,
.section-head p {
  max-width: 620px;
  line-height: 1.7;
  margin: 0;
}

.section-copy {
  display: grid;
  gap: 8px;
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.story-carousel {
  position: relative;
  margin-top: 0;
  max-width: 620px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 52px;
}

.carousel-track {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 250, 245, 0.95), rgba(248, 237, 224, 0.9));
  border: none;
  box-shadow:
    0 28px 60px rgba(43, 27, 16, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  aspect-ratio: 3 / 4;
  min-height: 280px;
}

.carousel-track::before,
.carousel-track::after {
  content: none;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
  color: var(--terracotta);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev {
  left: 6px;
}

.carousel-btn.next {
  right: 6px;
}

.carousel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  margin-left: 52px;
  margin-right: 52px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.7);
  border: 1px solid rgba(108, 75, 53, 0.12);
  backdrop-filter: blur(6px);
}

.carousel-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  font-weight: 600;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(108, 75, 53, 0.35);
  background: rgba(108, 75, 53, 0.2);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
  background: var(--terracotta);
  border-color: transparent;
  transform: scale(1.3);
}

.carousel-counter {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
}

.feature-card {
  background: #fff7ee;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(108, 75, 53, 0.12);
  box-shadow: 0 16px 30px rgba(43, 27, 16, 0.1);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.section-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.menu-days {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.day-button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(43, 27, 16, 0.2);
  background: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: capitalize;
}

.day-button.is-active {
  background: var(--terracotta);
  color: #fff;
  border-color: transparent;
}

.day-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.menu-empty {
  padding: 22px;
  border-radius: 20px;
  border: 1px dashed rgba(108, 75, 53, 0.35);
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
}

.menu-section {
  background: #fff8ef;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(108, 75, 53, 0.12);
  box-shadow: 0 18px 30px rgba(43, 27, 16, 0.08);
}

.menu-section h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(108, 75, 53, 0.3);
  padding-bottom: 8px;
}

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

.menu-item h4 {
  margin: 0;
  font-size: 1rem;
}

.menu-item .desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.menu-item .price {
  font-weight: 700;
  color: var(--terracotta);
}

.booking {
  background: linear-gradient(135deg, rgba(47, 92, 95, 0.12), rgba(241, 178, 74, 0.2));
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.booking-main {
  display: grid;
  gap: 24px;
}

.booking .section-head {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
}

.booking .section-head p {
  max-width: 680px;
}

.booking-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(47, 92, 95, 0.4);
  max-width: 100%;
}

.booking-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea);
}

.booking-text {
  margin: 10px 0 0;
  line-height: 1.6;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 10px;
}

.booking-office {
  display: grid;
  gap: 14px;
}

.booking-office-block {
  display: none;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(108, 75, 53, 0.14);
}

.booking-office-block.is-active {
  display: grid;
  grid-template-columns: 1fr minmax(90px, 140px);
  gap: 16px;
  align-items: start;
}

.booking-office-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.booking-office-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(43, 27, 16, 0.2);
  background: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
}

.booking-office-tab.is-active {
  background: var(--terracotta);
  color: #fff;
  border-color: transparent;
}

.booking-office-photo {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(108, 75, 53, 0.14);
}

.booking-office-content {
  display: grid;
  gap: 6px;
}

.booking-office-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.booking-office-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea);
  font-size: 0.8rem;
}

.booking-office-price {
  font-weight: 700;
  color: var(--terracotta);
}

.booking-office-choice {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.booking-office-separator {
  margin: 0 6px;
  font-weight: 700;
  color: var(--sea);
}

.booking-office-notes {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.booking-office-notes p {
  margin: 0;
}

.booking-details {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.booking-details div {
  display: grid;
  gap: 4px;
}

.booking-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.booking-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  margin-top: 8px;
}

.booking-hours {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(108, 75, 53, 0.12);
}

.hours-table th,
.hours-table td {
  padding: 10px 14px;
  font-size: 0.95rem;
}

.hours-table th {
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  background: rgba(241, 178, 74, 0.12);
}

.hours-table td {
  text-align: right;
  font-weight: 600;
  color: var(--muted);
}

.hours-table tr + tr th,
.hours-table tr + tr td {
  border-top: 1px solid rgba(108, 75, 53, 0.1);
}
.booking-legal {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.booking-legal a {
  color: var(--sea);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-card {
  padding: 22px;
  border-radius: 18px;
  background: #fff8ef;
  border: 1px solid rgba(108, 75, 53, 0.12);
}

.contact-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.consent-embed {
  margin-top: 32px;
  border-radius: 24px;
  border: 1px solid rgba(47, 92, 95, 0.2);
  background: #fdf6ec;
  overflow: hidden;
}

.consent-placeholder {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.consent-title {
  font-weight: 700;
  margin: 0;
}

.consent-text {
  margin: 0;
  color: var(--muted);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.consent-link {
  font-weight: 600;
  color: var(--sea);
}

.embed-slot {
  min-height: 240px;
}

.consent-embed.is-loaded .consent-placeholder {
  display: none;
}

.embed-slot iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

.map-embed .embed-slot {
  min-height: 260px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.reviews {
  background: rgba(255, 252, 247, 0.7);
  border-top: 1px solid rgba(108, 75, 53, 0.08);
  border-bottom: 1px solid rgba(108, 75, 53, 0.08);
}

.contact {
  background: rgba(244, 227, 207, 0.55);
}

.review-card {
  background: #fff8ef;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(108, 75, 53, 0.12);
  box-shadow: 0 18px 30px rgba(43, 27, 16, 0.08);
}

.review-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.review-card p {
  margin: 0;
  color: var(--muted);
}

.tripadvisor-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.85);
  border: 1px solid rgba(108, 75, 53, 0.12);
}

.tripadvisor-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tripadvisor-brand img {
  height: 34px;
  width: auto;
}

.tripadvisor-place {
  margin: 0 0 4px;
  font-weight: 700;
}

.tripadvisor-sub {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #1e140e;
  color: #f7efe3;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.3));
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(247, 239, 227, 0.7);
  padding-left: 44px;
}

.footer-legal a {
  color: rgba(247, 239, 227, 0.8);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #f7efe3;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(241, 178, 74, 0.35);
  background: rgba(241, 178, 74, 0.08);
}

.social-link:hover {
  color: #f1b24a;
}

.social-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #f7efe3;
  stroke-width: 1.6;
}

.social-link.is-solid .social-icon svg {
  fill: #f7efe3;
  stroke: none;
}

.footer-note {
  font-size: 0.8rem;
  color: rgba(247, 239, 227, 0.7);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes hero-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(var(--decor-rotate, 0deg));
  }
  50% {
    transform:
      translate(var(--decor-dx, 12px), var(--decor-dy, -10px))
      rotate(calc(var(--decor-rotate, 0deg) + 2deg));
  }
}

@media (max-width: 900px) {
  .topbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 6vw;
    transition: padding 0.25s ease, gap 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  }

  .topbar .brand,
  .topbar .topbar-actions,
  .topbar .btn {
    max-height: 80px;
    overflow: hidden;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      max-height 0.25s ease,
      padding 0.25s ease,
      margin 0.25s ease;
  }

  .topbar.is-compact {
    padding: 6px 6vw;
    gap: 8px;
  }

  .topbar.is-compact .brand,
  .topbar.is-compact .topbar-actions,
  .topbar.is-compact .btn {
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    margin: 0;
    padding: 0;
    pointer-events: none;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.85rem;
    gap: 12px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-head p {
    max-width: 100%;
  }

  .menu-days {
    justify-content: center;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .tripadvisor-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-meta {
    justify-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-legal {
    justify-content: center;
  }

  .footer-legal {
    padding-left: 0;
  }

  .carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 1.3rem;
  }

  .carousel-meta {
    flex-direction: column;
    gap: 10px;
    border-radius: 18px;
    margin-left: 0;
    margin-right: 0;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

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

  .story-carousel {
    padding: 0 40px;
  }

  .story-cards,
  .menu-grid,
  .contact-grid,
  .reviews-grid {
    justify-items: center;
  }

  .feature-card,
  .menu-section,
  .contact-card,
  .review-card {
    width: min(100%, 520px);
  }

  .brand {
    font-size: 1rem;
    justify-content: center;
    text-align: center;
  }

  .brand-sub {
    display: none;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
    box-shadow: 0 0 0 2px rgba(241, 178, 74, 0.25);
  }

  .topbar .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 6vw;
  }

  .hero-art {
    height: 320px;
  }
}

@media (max-width: 700px) {
  .hero-decor {
    display: none;
  }

  .hero-centered::before,
  .hero-centered::after {
    content: none;
  }

  .cta-group,
  .booking-actions,
  .consent-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-group .btn,
  .booking-actions .btn,
  .consent-actions .btn {
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-item .price {
    align-self: flex-end;
  }

  .tripadvisor-cta {
    align-items: center;
    text-align: center;
  }

  .booking-office-block.is-active {
    grid-template-columns: 1fr;
  }

  .booking-office-photo {
    max-width: 220px;
  }

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
