:root {
  --bg: #f7f1e8;
  --surface: #fffaf4;
  --surface-strong: #fffdf9;
  --surface-dark: #102a43;
  --surface-dark-soft: #173752;
  --surface-accent: #d96f32;
  --surface-accent-dark: #b4541f;
  --surface-muted: #dbe7ee;
  --text: #172635;
  --text-soft: #495a69;
  --line: rgba(16, 42, 67, 0.12);
  --white: #ffffff;
  --shadow-soft: 0 18px 40px rgba(16, 42, 67, 0.12);
  --shadow-card: 0 24px 60px rgba(16, 42, 67, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 111, 50, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf5ec 0%, #f4eee5 100%);
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(1.95rem, 3.4vw, 3.1rem);
}

h2 {
  font-size: clamp(1.3rem, 2vw, 1.95rem);
}

h3 {
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
}

p,
li {
  font-size: 1rem;
}

p {
  margin: 0 0 1rem;
}

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

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

.container {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.section {
  padding: 4.7rem 0;
}

.page-hero {
  padding-top: 6rem;
  padding-bottom: 2.7rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--surface-dark);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.top-bar {
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.68rem, 1.4vw, 0.82rem);
}

.top-bar-inner {
  min-height: 2.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.top-bar-inner::-webkit-scrollbar {
  display: none;
}

.top-bar-divider {
  opacity: 0.62;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(247, 241, 232, 0.88);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.is-scrolled .site-header {
  background: rgba(247, 241, 232, 0.96);
  border-bottom-color: rgba(16, 42, 67, 0.08);
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.08);
}

.header-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0.72rem 0;
}

.logo img {
  width: 148px;
  height: auto;
}

.main-nav-desktop,
.mobile-nav {
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
}

.main-nav-desktop a,
.mobile-nav a {
  color: var(--text-soft);
  transition: color 180ms ease;
}

.main-nav-desktop a:hover,
.main-nav-desktop a:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--surface-dark);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-switch a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.34rem 0.56rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.55);
}

.lang-switch a.is-active {
  background: var(--surface-dark);
  color: var(--white);
  border-color: var(--surface-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.95rem;
  padding: 0.76rem 1.2rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta,
.btn {
  color: var(--white);
  background: var(--surface-accent);
  box-shadow: 0 14px 26px rgba(217, 111, 50, 0.24);
}

.header-cta:hover,
.btn:hover,
.header-cta:focus-visible,
.btn:focus-visible {
  background: var(--surface-accent-dark);
  transform: translateY(-1px);
}

.btn-outline-dark,
.btn-outline-light,
.cookie-btn-secondary {
  background: transparent;
  box-shadow: none;
}

.btn-outline-dark,
.cookie-btn-secondary {
  border: 1px solid rgba(16, 42, 67, 0.16);
  color: var(--surface-dark);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible,
.cookie-btn-secondary:hover,
.cookie-btn-secondary:focus-visible {
  background: rgba(16, 42, 67, 0.05);
  color: var(--surface-dark);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.55rem;
  padding: 0.5rem 0.88rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--surface-dark);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle__icon {
  position: relative;
  width: 1rem;
  height: 0.72rem;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.nav-toggle__icon::before {
  top: 0.08rem;
  box-shadow: 0 0.28rem 0 currentColor;
}

.nav-toggle__icon::after {
  top: 0.64rem;
}

.nav-open .nav-toggle__icon::before {
  top: 0.34rem;
  box-shadow: none;
  transform: rotate(45deg);
}

.nav-open .nav-toggle__icon::after {
  top: 0.34rem;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.showcase-hero {
  position: relative;
  padding-top: 2.6rem;
  overflow: clip;
}

.showcase-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: min(62vw, 34rem);
  background:
    radial-gradient(circle at 16% 18%, rgba(217, 111, 50, 0.22), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(15, 122, 140, 0.18), transparent 24%);
  pointer-events: none;
}

.showcase-hero__grid {
  position: relative;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.showcase-hero__grid-home {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
}

.showcase-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 38rem;
}

.showcase-hero__title {
  max-width: 11ch;
}

.showcase-hero__text {
  max-width: 58ch;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.74;
}

.showcase-hero__media {
  position: relative;
  min-height: 460px;
  border-radius: calc(var(--radius-lg) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #102a43;
  isolation: isolate;
}

.showcase-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 18, 32, 0.06), rgba(9, 18, 32, 0.24)),
    linear-gradient(115deg, rgba(247, 241, 232, 0.04), rgba(15, 122, 140, 0.08));
  z-index: 2;
  pointer-events: none;
}

.showcase-hero__media-glow {
  position: absolute;
  inset: auto auto -16% -14%;
  width: 52%;
  height: 52%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217, 111, 50, 0.28), transparent 72%);
  filter: blur(12px);
  z-index: 1;
  pointer-events: none;
}

.showcase-hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 900ms ease, transform 6200ms ease;
  z-index: 0;
}

.showcase-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

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

.showcase-hero__dots {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.showcase-hero__dot {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, width 180ms ease;
}

.showcase-hero__dot.is-active {
  width: 2.2rem;
  background: var(--white);
}

.showcase-hero-page .showcase-hero__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
}

.showcase-hero-page .showcase-hero__title {
  max-width: 13ch;
}

.showcase-hero-page .showcase-hero__media {
  min-height: 390px;
}

.hero {
  padding-top: 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 35rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.95rem;
  color: #0f7a8c;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.77rem;
  font-weight: 800;
}

.hero-text,
.section-intro,
.story-copy p,
.feature-card p,
.service-grid p,
.blog-card p,
.blog-content p,
.legal-page p,
.info-card p,
.menu-item-row p {
  max-width: 56ch;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.74;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button-group .btn {
  white-space: normal;
}

.hero-actions {
  margin-top: 1.4rem;
}

.hero-stats {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-stats article,
.feature-card,
.info-card,
.blog-card,
.blog-content,
.menu-section-card,
.special-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.hero-stats article {
  padding: 0.95rem 1rem;
}

.hero-stats strong,
.hours-list strong,
.footer-hours strong,
.menu-item-row strong,
.special-card strong {
  display: block;
  color: var(--surface-dark);
}

.hero-stats span,
.hours-list span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.footer-hours span {
  color: rgba(255, 255, 255, 0.82);
}

.footer-hours strong {
  color: var(--white);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
}

.hero-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-photo img,
.card img,
.gallery-mosaic img,
.gallery-card img,
.story-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  min-height: 400px;
}

.section-heading,
.section-headline {
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-heading {
  display: grid;
}

.section-headline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
}

.home-highlights-heading h2 {
  max-width: 28ch;
}

.section-headline h2,
.service-band h2,
.cta-panel h2 {
  max-width: 15ch;
}

.text-link {
  color: #0f7a8c;
  font-weight: 700;
}

.feature-cards,
.card-grid,
.service-grid,
.specials-grid,
.contact-grid,
.reservation-grid,
.blog-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.special-card,
.info-card,
.menu-section-card,
.blog-card,
.blog-content {
  padding: 1.2rem;
}

.story-section {
  background: linear-gradient(180deg, rgba(219, 231, 238, 0.5), rgba(255, 255, 255, 0));
}

.story-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.story-side img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  min-height: 390px;
}

.card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow-card);
}

.card img {
  height: 300px;
}

.card-body {
  padding: 1.18rem 1.28rem 1.35rem;
}

.gallery-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(16, 42, 67, 0.04));
}

.gallery-mosaic,
.gallery-page-grid {
  display: grid;
  gap: 0.9rem;
}

.gallery-mosaic figure,
.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  min-height: 220px;
}

.gallery-card img,
.gallery-mosaic img {
  min-height: 220px;
}

.service-band {
  background: var(--surface-dark);
  color: var(--white);
}

.service-band p,
.service-band h2,
.service-band h3 {
  color: inherit;
}

.service-band h2,
.cta-panel h2 {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
}

.service-grid article {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.service-grid p,
.cta-panel p {
  max-width: 40ch;
}

.reservation-cta {
  padding-top: 2rem;
}

.reservation-layout {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.reservation-sidebar {
  display: grid;
  gap: 1rem;
}

.cta-panel {
  display: grid;
  gap: 1rem;
  padding: 1.55rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(15, 122, 140, 0.9));
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.cta-panel h2,
.cta-panel p {
  color: inherit;
}

.form-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow-card);
}

.section-heading--stack {
  margin-bottom: 1.5rem;
}

.section-heading--stack .section-intro {
  max-width: 60ch;
}

.reservation-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(16, 42, 67, 0.16);
  border-radius: 16px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--text);
  background: #fffdfa;
}

.field textarea {
  resize: vertical;
  min-height: 10rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(15, 122, 140, 0.2);
  outline-offset: 1px;
  border-color: #0f7a8c;
}

.field-wide {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.form-message {
  margin-bottom: 1rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
}

.form-message-success {
  border: 1px solid rgba(30, 114, 63, 0.18);
  background: rgba(30, 114, 63, 0.08);
  color: #1d5a37;
}

.form-message-error {
  border: 1px solid rgba(170, 52, 43, 0.18);
  background: rgba(170, 52, 43, 0.08);
  color: #7d261f;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.menu-grid {
  display: grid;
  gap: 1rem;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}

.menu-item-row:first-of-type {
  border-top: 0;
}

.menu-tools {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(16, 42, 67, 0.04);
}

.menu-tools p {
  margin: 0;
}

.special-card {
  border-left: 4px solid var(--surface-accent);
}

.contact-phone-large,
.footer-phone {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--surface-dark);
}

.phone-cta-button {
  display: inline-flex;
  gap: 0.7rem;
}

.phone-cta-button-large {
  margin: 0.25rem 0 1rem;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  padding-inline: 1.15rem 1.35rem;
}

.phone-cta-button-full {
  width: 100%;
  margin-bottom: 1rem;
}

.hours-list,
.footer-hours,
.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li,
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0;
  border-top: 1px solid var(--line);
}

.hours-list li:first-child,
.footer-hours li:first-child {
  border-top: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--surface-accent);
}

.empty-state,
.legal-page {
  padding: 2rem 0;
}

.contact-form-card,
.blog-card,
.blog-content {
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-form-card {
  scroll-margin-top: 8rem;
}

.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-card__image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-card__image img,
.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.2rem;
}

.blog-hero-image {
  margin: 1.2rem 0 1.8rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 9;
}

.blog-content ul {
  padding-left: 1.2rem;
}

.centered-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 1.5rem;
  background: #0d2030;
  color: rgba(255, 255, 255, 0.92);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-grid h2 {
  font-size: 1.32rem;
  margin-bottom: 0.7rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-phone {
  color: var(--white);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.85rem;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.social-link__icon {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.social-link__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link-facebook .social-link__icon svg path,
.social-link-youtube .social-link__icon svg path {
  fill: currentColor;
  stroke: none;
}

.social-link__label {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-credit {
  color: rgba(255, 255, 255, 0.82);
}

.footer-credit a {
  color: var(--white);
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 320;
  pointer-events: none;
}

.cookie-banner__inner {
  display: grid;
  gap: 0.9rem;
  align-items: center;
  width: min(1180px, calc(100% - 1rem));
  margin: 0 auto;
  padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom));
  border-radius: 22px 22px 0 0;
  background: rgba(16, 32, 48, 0.98);
  box-shadow: 0 -10px 32px rgba(16, 42, 67, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  pointer-events: auto;
  color: var(--white);
}

.cookie-banner__copy p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.58;
}

.cookie-banner__copy a {
  color: #f5d289;
  text-decoration: underline;
}

.cookie-banner__copy strong {
  display: block;
  font-size: 1.02rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.cookie-banner__actions [data-cookie-action="settings"] {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

.cookie-banner__actions .btn {
  min-height: 2.75rem;
  padding: 0.72rem 1.06rem;
}

.cookie-settings {
  width: min(1180px, calc(100% - 1rem));
  margin: 0 auto;
  pointer-events: auto;
}

.cookie-settings__panel {
  margin-top: 0.45rem;
  padding: 1rem;
  border-radius: 24px 24px 0 0;
  background: rgba(22, 33, 52, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  box-shadow: 0 -18px 38px rgba(16, 42, 67, 0.22);
  color: var(--white);
  max-height: min(72vh, 42rem);
  overflow: auto;
}

.cookie-settings__card {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-settings__card:first-child {
  border-top: 0;
  padding-top: 0;
}

.cookie-settings__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-settings__header p,
.cookie-settings__card small {
  color: rgba(255, 255, 255, 0.74);
}

.cookie-settings__header p {
  margin: 0.35rem 0 0;
}

.cookie-settings__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-top: 1rem;
}

.cookie-status {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.cookie-status-always {
  background: rgba(245, 210, 137, 0.16);
  color: #f5d289;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch__track {
  position: relative;
  width: 58px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 180ms ease;
}

.cookie-switch__track::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 180ms ease;
}

.cookie-switch input:checked + .cookie-switch__track {
  background: rgba(217, 111, 50, 0.92);
}

.cookie-switch input:checked + .cookie-switch__track::after {
  transform: translateX(24px);
}

.floating-call-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 300;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.86rem 1.08rem;
  border-radius: 999px;
  background: var(--surface-accent);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(180, 84, 31, 0.28);
  font-size: 0.94rem;
  font-weight: 800;
}

.floating-call-cta__icon {
  font-size: 1rem;
  line-height: 1;
}

.cookie-visible .floating-call-cta {
  opacity: 0;
  pointer-events: none;
}

.perf-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

.contact-map-card {
  overflow: hidden;
}

.contact-map-embed {
  overflow: hidden;
  min-height: 340px;
  margin-top: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(16, 42, 67, 0.08);
  background: rgba(16, 42, 67, 0.04);
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

@media (min-width: 720px) {
  .feature-cards,
  .service-grid,
  .contact-grid,
  .reservation-grid,
  .specials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reservation-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  }

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

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

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

  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
  }

  .contact-form-card {
    grid-column: 1 / -1;
  }

  .contact-map-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1099px) {
  .header-shell {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 0.8rem;
  }

  .main-nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta-desktop {
    display: inline-flex;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    width: min(360px, 100%);
    margin-left: auto;
    margin-bottom: 0.8rem;
    padding: 0.95rem;
    border: 1px solid rgba(16, 42, 67, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    text-align: right;
  }

  .nav-open .mobile-nav {
    display: flex;
  }

  .mobile-nav a {
    padding: 0.56rem 0.2rem;
  }

  .mobile-nav-cta {
    margin-top: 0.35rem;
    width: 100%;
  }
}

@media (max-width: 719px) {
  .container {
    width: min(1180px, calc(100% - 1.4rem));
  }

  .section {
    padding: 3.9rem 0;
  }

  .page-hero {
    padding-top: 4.8rem;
    padding-bottom: 2.2rem;
  }

  .top-bar-inner {
    min-height: 2.25rem;
    justify-content: flex-start;
    padding: 0.38rem 0;
  }

  .header-shell {
    padding: 0.62rem 0;
    gap: 0.5rem;
  }

  .logo img {
    width: clamp(112px, 29vw, 134px);
  }

  .header-tools {
    gap: 0.36rem;
    justify-content: flex-end;
  }

  .lang-switch a {
    padding: 0.32rem 0.44rem;
    font-size: 0.71rem;
  }

  .header-cta-desktop {
    display: none;
  }

  .nav-toggle {
    min-height: 2.4rem;
    padding: 0.44rem 0.72rem;
  }

  .hero {
    padding-top: 1.7rem;
  }

  .showcase-hero {
    padding-top: 1.3rem;
  }

  .showcase-hero__grid,
  .showcase-hero__grid-home,
  .showcase-hero-page .showcase-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .showcase-hero__title,
  .showcase-hero-page .showcase-hero__title {
    max-width: 10ch;
  }

  .showcase-hero__media,
  .showcase-hero-page .showcase-hero__media {
    min-height: 260px;
    order: -1;
  }

  .showcase-hero__dots {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .hero-grid {
    gap: 1.05rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-text {
    max-width: 30ch;
  }

  .hero-actions {
    margin-top: 1.1rem;
  }

  .hero-stats {
    gap: 0.7rem;
    margin-top: 1.45rem;
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-photo-main {
    min-height: 255px;
  }

  .hero-photo-top,
  .hero-photo-bottom {
    display: none;
  }

  .button-group .btn {
    width: 100%;
  }

  .section-heading,
  .section-headline {
    align-items: flex-start;
  }

  .section-headline h2,
  .service-band h2,
  .cta-panel h2,
  .home-highlights-heading h2 {
    max-width: none;
  }

  .home-highlights-heading h2 {
    font-size: clamp(1.24rem, 6vw, 1.72rem);
  }

  .service-grid article,
  .feature-card,
  .special-card,
  .info-card,
  .menu-section-card,
  .blog-card,
  .blog-content {
    padding: 1.05rem;
  }

  .card-body {
    padding: 1.05rem 1.05rem 1.18rem;
  }

  .cta-panel {
    padding: 1.28rem;
    border-radius: 24px;
  }

  .cookie-banner__inner {
    width: calc(100% - 0.6rem);
    padding: 0.78rem 0.78rem calc(0.82rem + env(safe-area-inset-bottom));
    gap: 0.72rem;
  }

  .cookie-settings {
    width: calc(100% - 0.6rem);
  }

  .cookie-banner__copy strong {
    font-size: 0.96rem;
  }

  .cookie-banner__copy p {
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cookie-settings-open .cookie-banner__copy p {
    display: block;
    overflow: visible;
  }

  .cookie-settings__header,
  .cookie-settings__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }

  .social-links {
    gap: 0.55rem;
  }

  .social-link {
    min-height: 2.7rem;
    padding: 0.68rem 0.86rem;
  }

  .social-link__label {
    font-size: 0.84rem;
  }

  .cookie-banner__actions [data-cookie-action="settings"] {
    grid-column: 1 / -1;
    min-height: 2.35rem;
    padding-block: 0.5rem;
    font-size: 0.82rem;
    background: rgba(255, 255, 255, 0.04);
  }

  .cookie-settings {
    position: fixed;
    left: 0.3rem;
    right: 0.3rem;
    bottom: 0.3rem;
    z-index: 321;
  }

  .cookie-settings__panel {
    margin-top: 0;
    border-radius: 24px;
    padding: 0.95rem;
    max-height: min(70vh, 34rem);
  }

  .phone-cta-button-large {
    width: 100%;
    justify-content: center;
  }

  .floating-call-cta {
    right: 0.7rem;
    bottom: 0.75rem;
    min-height: 2.8rem;
    padding: 0.72rem 0.88rem;
    font-size: 0.86rem;
  }
}

@media (min-width: 1100px) {
  .mobile-nav {
    display: none !important;
  }

  .header-cta-desktop {
    display: inline-flex;
  }

  .hero-grid,
  .story-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }

  .showcase-hero__grid-home {
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  }

  .showcase-hero-page .showcase-hero__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  }

  .hero-grid {
    gap: 2.6rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 640px;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 1fr 1fr;
  }

  .hero-photo-main {
    grid-row: 1 / span 2;
    min-height: 640px;
  }

  .showcase-hero__media {
    min-height: 540px;
  }

  .showcase-hero-page .showcase-hero__media {
    min-height: 460px;
  }

  .feature-cards,
  .card-grid,
  .service-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-form-card {
    grid-column: 2 / 4;
  }

  .contact-map-card {
    grid-column: 1 / -1;
  }

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

  .gallery-mosaic {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-auto-rows: 240px;
  }

  .gallery-mosaic figure:first-child {
    grid-row: span 2;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-panel {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-hero__slide,
  .showcase-hero__dot {
    transition: none;
  }
}

html.cookie-settings-open,
html.cookie-settings-open body {
  overflow: hidden;
}
