@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Italiana&display=swap");

:root {
  --ink: #0a120f;
  --ink-soft: #121d18;
  --paper: #f1ede5;
  --paper-deep: #f1ede5;
  --gold: #b88746;
  --gold-light: #f0cf8a;
  --orange: #d6a545;
  --white: #fffdf8;
  --warm-black: #070d0a;
  --surface-dark: #10110f;
  --surface-soft: #e9e2d5;
  --accent-gold: #a16207;
  --accent-gold-bright: #d6a545;
  --focus-ring: #fff2c2;
  --radius-soft: 0.5rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-ambient: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  --serif: "Italiana", "Iowan Old Style", "Times New Roman", serif;
  --sans: "DM Sans", "Avenir Next", Helvetica, Arial, sans-serif;
  --page-x: clamp(1.35rem, 4vw, 4.5rem);
  --section-y: clamp(6rem, 10vw, 10rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

.image-placeholder,
.food-card img.image-placeholder,
.location-card img.image-placeholder {
  background: #000;
}

.brand-word {
  width: auto;
  min-width: max-content;
  color: var(--gold-light);
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.footer-logo,
.card-logo {
  text-transform: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.ui-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
  vertical-align: middle;
}

.whatsapp-cta-icon {
  display: inline-block;
  width: 1.42rem;
  height: 1.42rem;
  flex: 0 0 auto;
  overflow: visible;
  fill: none;
  color: var(--gold);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
  filter: drop-shadow(0 0.18rem 0.42rem rgba(184, 135, 70, 0.26));
  transform-origin: center;
  transition: color 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.whatsapp-cta-icon .whatsapp-icon-chat,
.whatsapp-cta-icon .whatsapp-icon-phone {
  transform-box: fill-box;
  transform-origin: center;
  vector-effect: non-scaling-stroke;
}

.whatsapp-cta-icon .whatsapp-icon-chat {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.72;
  animation: whatsappChatBreath 3.8s ease-in-out infinite;
}

.whatsapp-cta-icon .whatsapp-icon-phone {
  fill: currentColor;
  stroke: none;
  animation: whatsappPhoneTilt 3.8s ease-in-out infinite;
}

:where(.book-link, .menu-book, .hero-primary, .mobile-sticky-book, .contact-book, .whatsapp-submit):hover .whatsapp-cta-icon,
:where(.book-link, .menu-book, .hero-primary, .mobile-sticky-book, .contact-book, .whatsapp-submit):focus-visible .whatsapp-cta-icon {
  color: var(--gold-light);
  filter: drop-shadow(0 0.24rem 0.52rem rgba(240, 207, 138, 0.34));
  transform: translateY(-1px) scale(1.06);
}

@keyframes whatsappChatBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

@keyframes whatsappPhoneTilt {
  0%, 100% { transform: rotate(0deg); }
  42% { transform: rotate(-3deg); }
  68% { transform: rotate(2.5deg); }
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 1rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-120%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  padding: 1.25rem var(--page-x);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  transition: padding 0.4s ease, background 0.4s ease;
}

.site-header::after {
  position: absolute;
  right: var(--page-x);
  bottom: 0;
  left: var(--page-x);
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}

.site-header.is-scrolled {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(16px);
}

body.menu-open .site-header {
  background: #000;
}

.brand {
  position: relative;
  z-index: 2;
  display: block;
  width: clamp(6.8rem, 10vw, 9.2rem);
}

.brand img {
  width: 100%;
}

.brand-image {
  display: flex;
  width: clamp(8.8rem, 13vw, 12.4rem);
  height: clamp(3.45rem, 5vw, 4.7rem);
  align-items: center;
  overflow: visible;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0.45rem 1rem rgba(0, 0, 0, 0.32));
}

.brand-word {
  display: inline-flex;
  align-items: center;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.95rem, 3vw, 2.8rem);
  letter-spacing: -0.045em;
  line-height: 0.8;
  text-transform: lowercase;
}

.brand-mark {
  display: grid;
  width: clamp(8rem, 12vw, 11.5rem);
  color: var(--gold-light);
  gap: 0.18rem;
  justify-items: start;
  text-decoration: none;
}

.brand-name {
  font-family: var(--serif);
  font-size: clamp(1.34rem, 2vw, 2.05rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 0.86;
  text-shadow: 0 0.32rem 0.9rem rgba(0, 0, 0, 0.38);
}

.brand-fish {
  width: clamp(5.55rem, 8.6vw, 8.1rem);
  height: auto;
  color: #c99b58;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  filter: drop-shadow(0 0.28rem 0.65rem rgba(0, 0, 0, 0.32));
}

.brand-fish-tail,
.brand-fish-outline,
.brand-fish-gill {
  fill: none;
  stroke: currentColor;
  vector-effect: non-scaling-stroke;
}

.brand-fish-tail {
  stroke-width: 1.36;
}

.brand-fish-outline {
  stroke-width: 1.58;
}

.brand-fish-gill {
  stroke-width: 1.12;
  opacity: 0.72;
}

.brand-fish-eye {
  fill: currentColor;
  stroke: none;
}

.desktop-nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3.2rem);
  align-items: center;
}

.desktop-nav a,
.book-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.language-switch button {
  padding: 0.35rem 0.25rem;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  letter-spacing: inherit;
  cursor: pointer;
  transition: color 0.25s ease;
}

.language-switch button.is-active,
.language-switch button:hover,
.language-switch button:focus-visible {
  color: var(--gold-light);
}

.book-link {
  display: inline-flex;
  min-width: 8.5rem;
  min-height: 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.book-link:hover,
.book-link:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 0;
  background: transparent;
  gap: 0.42rem;
  place-content: center;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 2rem;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.21rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.21rem) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  padding: 9rem var(--page-x) 3rem;
  background: var(--ink);
  color: var(--white);
  grid-template-columns: minmax(0, 1fr) 18rem;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-menu nav a {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7.4vw, 7rem);
  line-height: 1;
  opacity: 0;
  transform: translateY(1.4rem);
}

.mobile-menu.is-open nav a {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile-menu.is-open nav a:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu.is-open nav a:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu.is-open nav a:nth-child(4) { transition-delay: 0.15s; }

.mobile-menu nav span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

.mobile-menu-meta {
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  line-height: 1.8;
}

.hero {
  position: relative;
  display: grid;
  height: 100svh;
  min-height: 43rem;
  overflow: hidden;
  padding: 8rem var(--page-x) 2rem;
  background: var(--ink);
  color: var(--white);
  place-items: center;
}

.hero-picture,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  overflow: hidden;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
  animation: heroSettle 1.8s ease forwards;
  image-rendering: auto;
  filter: brightness(1.22) contrast(1.08) saturate(1.06);
  will-change: transform;
}

@keyframes heroSettle {
  to { transform: scale(1); }
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(4, 9, 7, 0.16), rgba(4, 9, 7, 0.01) 34%, rgba(4, 9, 7, 0.04) 66%, rgba(4, 9, 7, 0.25)),
    linear-gradient(90deg, rgba(4, 9, 7, 0.04), transparent 52%, rgba(4, 9, 7, 0.04));
}

.hero-title-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  will-change: transform, opacity;
}

.hero-overline {
  margin: 0 0 1.1rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(6rem, 15.5vw, 14rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.8;
  text-transform: uppercase;
  text-shadow: 0 0.08em 0.35em rgba(0, 0, 0, 0.18);
}

.hero-title-mobile {
  display: none;
}

.hero-address {
  margin: clamp(2.5rem, 5vh, 4.5rem) 0 1.6rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-address p,
.hero-hours {
  margin: 0;
}

.hero-hours {
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-hours span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold-light);
}

.hero-edge {
  position: absolute;
  z-index: 2;
  top: 52%;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-edge-left {
  left: var(--page-x);
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
}

.hero-edge-right {
  right: var(--page-x);
  writing-mode: vertical-rl;
}

.hero-socials {
  position: absolute;
  z-index: 3;
  right: var(--page-x);
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-social-link svg {
  width: 2.55rem;
  height: 2.55rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-social-link .instagram-dot,
.hero-social-link .facebook-mark {
  fill: currentColor;
  stroke: none;
}

.hero-social-link:hover svg,
.hero-social-link:focus-visible svg {
  background: var(--white);
  color: var(--ink);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 1.3rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 2.2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.32);
}

.scroll-cue i::after {
  position: absolute;
  inset: -100% 0 100%;
  background: var(--white);
  content: "";
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  50%, 100% { transform: translateY(200%); }
}

.section-dark {
  background: #10110f;
  color: var(--white);
}

.restaurant-section,
.location-section,
.reviews-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-y) var(--page-x);
}

.section-heading {
  display: grid;
  max-width: 92rem;
  margin: 0 auto clamp(4rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.5fr);
  grid-template-rows: auto auto;
  gap: 1.2rem 5rem;
  align-items: end;
}

.section-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.heading-copy {
  display: grid;
  gap: 1rem;
  padding-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.83rem;
  line-height: 1.7;
}

.heading-copy p {
  margin: 0;
}

.food-carousel,
.location-carousel {
  margin-right: calc(var(--page-x) * -1);
}

.food-track,
.location-track,
.review-grid {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.food-track::-webkit-scrollbar,
.location-track::-webkit-scrollbar,
.review-grid::-webkit-scrollbar {
  display: none;
}

.food-track {
  padding-right: var(--page-x);
  gap: clamp(1rem, 2vw, 2rem);
}

.food-card {
  flex: 0 0 clamp(18rem, 31vw, 30rem);
  margin: 0;
  scroll-snap-align: start;
}

.food-card-offset {
  padding-top: clamp(3rem, 6vw, 7rem);
}

.food-card img {
  width: 100%;
  height: clamp(28rem, 50vw, 47rem);
  object-fit: cover;
}

.food-card-offset img {
  height: clamp(24rem, 41vw, 38rem);
}

.food-card figcaption,
.location-card figcaption {
  display: flex;
  padding-top: 0.9rem;
  margin-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  justify-content: space-between;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.food-card figcaption p,
.location-card figcaption p {
  margin: 0;
}

.food-card figcaption span {
  color: var(--gold);
}

.carousel-footer {
  display: flex;
  padding: 2.2rem var(--page-x) 0 0;
  justify-content: space-between;
  align-items: center;
}

.carousel-footer > p {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
}

.carousel-arrows {
  display: flex;
  gap: 0.75rem;
}

.carousel-arrows button {
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  place-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.carousel-arrows button:hover,
.carousel-arrows button:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.center-cta {
  display: flex;
  padding-top: clamp(4rem, 7vw, 7rem);
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.outline-button {
  display: inline-flex;
  min-width: min(24rem, 100%);
  min-height: 4rem;
  padding: 0 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.outline-button:hover,
.outline-button:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.location-section {
  background: var(--paper);
  padding-top: clamp(5rem, 7vw, 7rem);
  padding-bottom: clamp(5rem, 7vw, 7rem);
}

.location-heading .heading-copy {
  color: rgba(10, 18, 15, 0.6);
}

.location-carousel {
  margin-left: calc(var(--page-x) * -1);
  margin-right: calc(var(--page-x) * -1);
}

.location-track {
  gap: 1.5rem;
  padding: 0 var(--page-x);
  scroll-padding-left: var(--page-x);
}

.location-card {
  position: relative;
  flex: 0 0 min(58vw, 52rem);
  margin: 0;
  scroll-snap-align: center;
}

.location-card img,
.location-placeholder {
  width: 100%;
  height: clamp(23rem, 38vw, 32rem);
  object-fit: cover;
}

.location-placeholder {
  border: 1px solid rgba(10, 18, 15, 0.18);
  background:
    linear-gradient(135deg, rgba(10, 18, 15, 0.055), rgba(10, 18, 15, 0.012)),
    rgba(10, 18, 15, 0.035);
}

.location-card:first-child img {
  object-position: center 48%;
}

.location-card:nth-child(2) img {
  object-position: center 54%;
}

.location-card:nth-child(3) img {
  object-position: center center;
}

.location-card:nth-child(4) img {
  object-position: center 42%;
}

.location-card figcaption {
  border-color: rgba(10, 18, 15, 0.22);
}

.location-card figcaption span {
  color: var(--orange);
}

.carousel-footer-dark {
  padding-right: var(--page-x);
  padding-left: var(--page-x);
}

.carousel-footer-dark .carousel-arrows button {
  border-color: rgba(10, 18, 15, 0.35);
}

.carousel-footer-dark .carousel-arrows button:hover,
.carousel-footer-dark .carousel-arrows button:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.reviews-section {
  background: var(--paper);
}

.reviews-intro {
  display: grid;
  max-width: 92rem;
  margin: 0 auto clamp(4rem, 7vw, 7rem);
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4rem;
}

.reviews-intro h2,
.contact-panel h2 {
  margin: 1.5rem 0 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.reviews-intro h2 em,
.contact-panel h2 em {
  color: var(--orange);
  font-weight: 400;
}

.rating-block {
  display: flex;
  padding: 0;
  border-left: 0;
  align-items: baseline;
  justify-content: flex-end;
}

.rating-column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.review-awards {
  display: grid;
  grid-template-columns: repeat(3, 6rem);
  align-items: center;
  gap: 0.7rem;
}

.review-awards > span {
  grid-column: 1 / -1;
  margin: 0 0 0.2rem;
  color: rgba(10, 18, 15, 0.5);
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

.review-awards img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 0 1px rgba(10, 18, 15, 0.12);
}

.review-links-summary a {
  display: grid;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  color: #8f6530;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  place-content: center;
  text-align: center;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(184, 135, 70, 0.28),
    0 0.9rem 2rem rgba(10, 18, 15, 0.08);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.review-links-summary a:hover,
.review-links-summary a:focus-visible {
  background: rgba(255, 253, 248, 0.9);
  color: #a87535;
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(240, 207, 138, 0.58),
    0 1rem 2.4rem rgba(184, 135, 70, 0.18);
}

.tripadvisor-badge {
  position: relative;
  gap: 0.25rem;
  background:
    radial-gradient(circle at 34% 24%, rgba(240, 207, 138, 0.48), transparent 42%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(240, 207, 138, 0.18));
  isolation: isolate;
  animation: owlBadgeFloat 5.8s ease-in-out infinite;
}

.tripadvisor-badge:nth-of-type(2) {
  animation-delay: 0.35s;
}

.tripadvisor-badge:nth-of-type(3) {
  animation-delay: 0.7s;
}

.tripadvisor-badge::after {
  position: absolute;
  inset: 0.55rem;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 24%, rgba(255, 253, 248, 0.82), transparent 44%);
  content: "";
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
  animation: owlBadgeGlow 4.8s ease-in-out infinite;
}

.tripadvisor-badge svg {
  width: 2.25rem;
  height: 2.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  justify-self: center;
}

.tripadvisor-badge:hover,
.tripadvisor-badge:focus-visible {
  color: #a87535;
}

.tripadvisor-badge .tripadvisor-owl {
  transform-origin: center;
  animation: owlNod 4.4s ease-in-out infinite;
}

.tripadvisor-badge:nth-of-type(2) .tripadvisor-owl {
  animation-delay: 0.45s;
}

.tripadvisor-badge:nth-of-type(3) .tripadvisor-owl {
  animation-delay: 0.9s;
}

.tripadvisor-badge .owl-eye,
.tripadvisor-badge .owl-pupil,
.tripadvisor-badge .owl-brow,
.tripadvisor-badge .owl-beak {
  transform-box: fill-box;
  transform-origin: center;
}

.tripadvisor-badge .owl-eye {
  fill: rgba(255, 253, 248, 0.9);
  animation: owlBlink 6.2s ease-in-out infinite;
}

.tripadvisor-badge .owl-pupil {
  fill: #8f6530;
  stroke: none;
  animation: owlLook 4.6s ease-in-out infinite;
}

.tripadvisor-badge .owl-brow {
  animation: owlBrowLift 4.4s ease-in-out infinite;
}

.tripadvisor-badge .owl-beak {
  color: var(--gold);
  animation: owlBeakPulse 4.4s ease-in-out infinite;
}

.tripadvisor-badge b {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0;
}

@keyframes owlBadgeFloat {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-0.38rem); }
}

@keyframes owlBadgeGlow {
  0%, 100% { opacity: 0.32; transform: scale(0.96); }
  50% { opacity: 0.66; transform: scale(1.04); }
}

@keyframes owlNod {
  0%, 100% { transform: rotate(0deg); }
  35% { transform: rotate(-3deg); }
  70% { transform: rotate(2.5deg); }
}

@keyframes owlBlink {
  0%, 88%, 94%, 100% { transform: scaleY(1); }
  91% { transform: scaleY(0.16); }
}

@keyframes owlLook {
  0%, 100% { transform: translateX(0); }
  28% { transform: translateX(1.05px); }
  64% { transform: translateX(-0.95px); }
}

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

@keyframes owlBeakPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.rating-block strong {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.72;
}

.rating-block > span:empty {
  display: none;
}

.rating-block > span {
  margin-left: 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.rating-block p {
  margin: 0 0 0 1.2rem;
  color: rgba(10, 18, 15, 0.55);
  font-size: 0.65rem;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-grid {
  max-width: 92rem;
  margin: 0 auto;
  gap: 1px;
  background: rgba(10, 18, 15, 0.2);
}

.review-card {
  min-width: 0;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--paper-deep);
  scroll-snap-align: start;
}

.stars {
  color: var(--orange);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.review-card blockquote {
  min-height: 9rem;
  margin: 2rem 0 3rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  line-height: 1.45;
}

.review-card > p {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 18, 15, 0.2);
  color: rgba(10, 18, 15, 0.58);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-link {
  display: flex;
  max-width: 92rem;
  padding-top: 3rem;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.reviews-link a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.review-text-link {
  padding-bottom: 0.55rem;
  border-bottom: 1px solid currentColor;
}

.review-cta {
  min-height: 3.7rem;
  padding: 0 1.35rem;
  border: 1px solid var(--ink);
  transition: background 0.3s ease, color 0.3s ease;
}

.review-cta:hover,
.review-cta:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.contact-section {
  display: grid;
  min-height: 0;
  background: var(--paper);
  color: var(--ink);
  grid-template-columns: minmax(26rem, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.contact-panel {
  display: flex;
  padding: clamp(3.5rem, 5vw, 5rem) var(--page-x);
  flex-direction: column;
  justify-content: center;
}

.contact-panel h2 {
  font-size: clamp(3.5rem, 4.6vw, 5rem);
}

.contact-list {
  display: grid;
  margin: clamp(2rem, 3vw, 3rem) 0 2rem;
  border-top: 1px solid rgba(10, 18, 15, 0.2);
  grid-template-columns: 1fr 1fr;
}

.contact-list > div {
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid rgba(10, 18, 15, 0.2);
}

.contact-list > div:nth-child(odd) {
  border-right: 1px solid rgba(10, 18, 15, 0.2);
}

.contact-list > div:nth-child(even) {
  padding-left: 1rem;
}

.contact-list h3 {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-list p,
.contact-list a {
  display: block;
  margin: 0 0 0.3rem;
  color: rgba(10, 18, 15, 0.68);
  font-size: 0.78rem;
  line-height: 1.65;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--ink);
}

.contact-book {
  display: inline-flex;
  min-height: 3.5rem;
  padding: 0 1.4rem;
  border: 1px solid rgba(10, 18, 15, 0.65);
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-book:hover,
.contact-book:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.contact-call svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.map-wrap {
  position: relative;
  width: 100%;
  height: 33rem;
  min-height: 0;
  align-self: center;
  padding: clamp(1rem, 2vw, 1.5rem);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.5), rgba(184, 135, 70, 0.12)),
    var(--paper);
}

.map-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(184, 135, 70, 0.38);
  border-radius: var(--radius-soft);
  background: var(--warm-black);
  box-shadow: 0 1.8rem 4rem rgba(10, 18, 15, 0.18);
}

.map-frame::before {
  position: absolute;
  z-index: 2;
  inset: 0.65rem;
  border: 1px solid rgba(240, 207, 138, 0.34);
  border-radius: calc(var(--radius-soft) * 0.75);
  content: "";
  pointer-events: none;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  filter: saturate(1.18) contrast(1.04) brightness(1.04);
}

.map-veiling {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.04), transparent 36%, rgba(7, 13, 10, 0.1)),
    radial-gradient(circle at 18% 20%, rgba(240, 207, 138, 0.1), transparent 34%);
  pointer-events: none;
}

.map-label {
  position: absolute;
  z-index: 3;
  right: 2rem;
  bottom: 2rem;
  display: grid;
  width: min(22rem, calc(100% - 4rem));
  padding: 1.15rem;
  border: 1px solid rgba(240, 207, 138, 0.34);
  border-radius: var(--radius-soft);
  background: rgba(7, 13, 10, 0.9);
  color: var(--white);
  gap: 0.7rem;
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.28);
}

.map-label > span {
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.map-label strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1;
}

.map-label a {
  display: inline-flex;
  width: fit-content;
  min-height: 2.6rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(240, 207, 138, 0.55);
  border-radius: var(--radius-soft);
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.map-label a:hover,
.map-label a:focus-visible {
  background: var(--gold-light);
  color: var(--ink);
}

.site-footer {
  padding: clamp(4rem, 8vw, 7rem) var(--page-x) 1.6rem;
  background: #070d0a;
  color: var(--white);
}

.footer-main {
  display: grid;
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
}

.footer-main img {
  width: clamp(9rem, 18vw, 15rem);
}

.footer-logo {
  justify-self: start;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  letter-spacing: -0.055em;
  line-height: 0.8;
  text-transform: lowercase;
}

.footer-main > p {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.3vw, 2.3rem);
  line-height: 1.3;
  text-align: center;
}

.footer-main > a:not(.footer-logo) {
  justify-self: end;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-delay {
  transition-delay: 0.12s;
}

@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .section-heading { gap: 1.2rem 3rem; }
  .contact-section { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root {
    --page-x: 1.25rem;
    --section-y: 6rem;
  }

  .site-header {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  .brand { width: 6.8rem; }
  .book-link { display: none; }
  .mobile-menu { grid-template-columns: 1fr; align-items: center; }
  .mobile-menu nav a { font-size: clamp(2.8rem, 13.5vw, 4.7rem); }
  .mobile-menu-meta { display: none; }

  .hero {
    min-height: 43rem;
    padding-right: var(--page-x);
    padding-left: var(--page-x);
  }

  .hero-image {
    object-position: center center;
  }

  .hero-overline { margin-bottom: 1.3rem; }
  .hero h1 { font-size: clamp(4.9rem, 24.5vw, 7rem); }
  .hero-address { margin-top: 3.4rem; font-size: 1.25rem; }
  .hero-edge,
  .scroll-cue { display: none; }

  .section-heading {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.4rem;
    margin-bottom: 4rem;
  }

  .section-heading .section-kicker { grid-column: 1; }
  .section-heading h2 { font-size: clamp(3.5rem, 16vw, 5rem); }
  .heading-copy { max-width: 28rem; padding-top: 1rem; }

  .food-card { flex-basis: 76vw; }
  .food-card img { height: 112vw; max-height: 40rem; }
  .food-card-offset { padding-top: 3rem; }
  .food-card-offset img { height: 96vw; max-height: 34rem; }

  .location-card { flex-basis: 82vw; }
  .location-card img,
  .location-placeholder { height: 102vw; max-height: 34rem; }
  .location-card:first-child img { object-position: center; }

  .reviews-intro {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .reviews-intro h2,
  .contact-panel h2 { font-size: clamp(3.8rem, 16vw, 5.3rem); }

  .rating-block {
    max-width: 18rem;
    padding: 0 0 0 1.5rem;
  }

  .review-grid {
    margin-right: calc(var(--page-x) * -1);
    background: transparent;
    gap: 1rem;
  }

  .review-card {
    flex: 0 0 84vw;
    border: 1px solid rgba(10, 18, 15, 0.18);
  }

  .review-card blockquote { min-height: 11rem; }
  .reviews-link { align-items: center; justify-content: center; flex-direction: column; }

  .contact-section { grid-template-columns: 1fr; }
  .contact-panel { padding-top: 5rem; padding-bottom: 5rem; }
  .map-wrap {
    height: 30rem;
    padding: 1rem;
  }

  .map-label {
    right: 1.8rem;
    bottom: 1.8rem;
    left: 1.8rem;
    width: auto;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 3rem 1rem;
  }

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }

  .footer-bottom { display: block; line-height: 1.7; }
  .footer-bottom p + p { margin-top: 0.35rem; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 23.5vw; }
  .contact-list { grid-template-columns: 1fr; }
  .contact-list > div:nth-child(odd) { border-right: 0; }
  .contact-list > div:nth-child(even) { padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Refined off-canvas navigation */
.mobile-menu {
  display: flex;
  padding: 0;
  background: transparent;
  justify-content: flex-end;
  align-items: stretch;
  opacity: 1;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

.mobile-menu.is-open .menu-backdrop {
  opacity: 1;
}

.menu-panel {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(34rem, 100%);
  height: 100%;
  padding: 7.2rem 3rem 2.4rem;
  background: #000;
  color: var(--white);
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.is-open .menu-panel {
  transform: none;
}

.menu-panel-kicker {
  margin: 0 0 2rem;
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-menu nav {
  width: 100%;
}

.mobile-menu nav a,
.mobile-menu.is-open nav a {
  display: flex;
  width: 100%;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  align-items: baseline;
  gap: 0.9rem;
  font-size: clamp(1.55rem, 2vw, 1.85rem);
  opacity: 1;
  transform: none;
}

.mobile-menu nav a:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.mobile-menu nav a i {
  margin-left: auto;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-style: normal;
}

.mobile-menu nav a b {
  font: inherit;
  font-weight: 400;
}

.mobile-menu nav a .ui-icon {
  width: 0.82rem;
  height: 0.82rem;
  margin-left: auto;
  color: var(--gold);
}

.menu-book {
  display: flex;
  min-height: 3.7rem;
  padding: 0 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  margin-top: 2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.menu-book:hover,
.menu-book:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.mobile-menu-meta {
  display: flex;
  width: 100%;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-left: 0;
  margin-top: auto;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.mobile-menu-meta p {
  margin: 0;
}

.mobile-menu-meta > div {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.mobile-menu-meta a,
.footer-main > a:not(.footer-logo) {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.menu-book .ui-icon,
.menu-book .whatsapp-cta-icon,
.outline-button .ui-icon,
.reviews-link .ui-icon,
.contact-book .ui-icon,
.contact-book .whatsapp-cta-icon {
  width: 0.95rem;
  height: 0.95rem;
}

.contact-list a .ui-icon {
  width: 0.82rem;
  height: 0.82rem;
  margin-left: 0.15rem;
  vertical-align: -0.14rem;
}

/* Web menu and wine list */
.card-modal {
  position: fixed;
  z-index: 210;
  inset: 0;
  background: var(--paper);
  color: var(--ink);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.card-modal[hidden] {
  display: none;
}

.card-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.card-dialog {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  transform: translateY(2.5rem);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-modal.is-open .card-dialog {
  transform: none;
}

.card-header {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 5.4rem;
  padding: 0 var(--page-x);
  border-bottom: 1px solid rgba(10, 18, 15, 0.18);
  background: rgba(241, 237, 229, 0.96);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  backdrop-filter: blur(14px);
}

.card-header > img {
  width: 7.8rem;
  filter: brightness(0.45);
}

.card-logo {
  color: rgba(10, 18, 15, 0.72);
  font-family: var(--serif);
  font-size: 2.2rem;
  letter-spacing: -0.045em;
  line-height: 0.8;
  text-transform: lowercase;
}

.card-tabs {
  display: flex;
  gap: 0.5rem;
}

.card-tabs button {
  min-height: 2.65rem;
  padding: 0 1.15rem;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(10, 18, 15, 0.48);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.card-tabs button.is-active {
  border-color: var(--ink);
  color: var(--ink);
}

.card-close {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(10, 18, 15, 0.3);
  border-radius: 50%;
  justify-self: end;
  background: transparent;
  place-content: center;
  cursor: pointer;
}

.card-close span {
  display: block;
  width: 1.2rem;
  height: 1px;
  background: var(--ink);
}

.card-close span:first-child {
  transform: translateY(0.5px) rotate(45deg);
}

.card-close span:last-child {
  transform: translateY(-0.5px) rotate(-45deg);
}

.card-body {
  flex: 1;
  padding: clamp(4rem, 7vw, 7rem) var(--page-x) 6rem;
  overflow-y: auto;
}

.card-intro {
  display: grid;
  max-width: 88rem;
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  grid-template-columns: 1fr minmax(17rem, 0.46fr);
  gap: 4rem;
  align-items: end;
}

.card-intro .section-kicker {
  grid-column: 1 / -1;
}

.card-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.card-intro h2 em {
  color: var(--gold);
  font-weight: 400;
}

.card-intro > p:last-child {
  margin: 0;
  color: rgba(10, 18, 15, 0.62);
  font-size: 0.84rem;
  line-height: 1.7;
}

.catalog {
  max-width: 88rem;
  margin: 0 auto;
}

.catalog-section {
  display: grid;
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid rgba(10, 18, 15, 0.22);
  grid-template-columns: minmax(12rem, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.catalog-section h3 {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.catalog-section h3 small {
  display: block;
  margin-top: 0.65rem;
  color: rgba(10, 18, 15, 0.45);
  font-family: var(--sans);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.catalog-items {
  border-top: 1px solid rgba(10, 18, 15, 0.18);
}

.catalog-item {
  display: grid;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(10, 18, 15, 0.18);
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

.catalog-item h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 400;
  line-height: 1.25;
}

.catalog-item p {
  margin: 0.35rem 0 0;
  color: rgba(10, 18, 15, 0.5);
  font-size: 0.68rem;
  line-height: 1.5;
}

.catalog-item > span {
  padding-top: 0.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.catalog-note {
  max-width: 88rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(10, 18, 15, 0.22);
  margin: 0 auto;
  color: rgba(10, 18, 15, 0.5);
  font-size: 0.62rem;
  line-height: 1.6;
}

/* WhatsApp request form */
body.modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal.is-open {
  visibility: visible;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(2, 7, 5, 0.68);
  backdrop-filter: blur(7px);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

.booking-modal.is-open .booking-backdrop {
  opacity: 1;
}

.booking-dialog {
  position: relative;
  z-index: 2;
  width: min(43rem, 100%);
  height: 100%;
  padding: clamp(4.5rem, 7vw, 7rem) clamp(1.5rem, 5vw, 4.5rem) 3rem;
  background: var(--paper);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.booking-modal.is-open .booking-dialog {
  transform: none;
}

.booking-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(10, 18, 15, 0.3);
  border-radius: 50%;
  background: transparent;
  place-content: center;
  cursor: pointer;
}

.booking-close span {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: var(--ink);
}

.booking-close span:first-child {
  transform: translateY(0.5px) rotate(45deg);
}

.booking-close span:last-child {
  transform: translateY(-0.5px) rotate(-45deg);
}

.booking-dialog h2 {
  margin: 1.2rem 0 1.4rem;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.3vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.booking-dialog h2 em {
  color: var(--gold);
  font-weight: 400;
}

.booking-intro {
  max-width: 30rem;
  margin: 0 0 2.5rem;
  color: rgba(10, 18, 15, 0.62);
  font-size: 0.82rem;
  line-height: 1.65;
}

.booking-dialog form,
.booking-dialog label {
  display: flex;
  flex-direction: column;
}

.booking-dialog form {
  gap: 1.4rem;
}

.booking-dialog label > span {
  margin-bottom: 0.55rem;
  color: rgba(10, 18, 15, 0.56);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-dialog input,
.booking-dialog select,
.booking-dialog textarea {
  width: 100%;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid rgba(10, 18, 15, 0.3);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font: 400 0.95rem var(--sans);
}

.booking-dialog textarea {
  resize: vertical;
}

.booking-dialog input:focus,
.booking-dialog select:focus,
.booking-dialog textarea:focus {
  border-bottom-color: var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.whatsapp-submit {
  display: flex;
  min-height: 4rem;
  padding: 0 1.3rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  align-items: center;
  justify-content: space-between;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.whatsapp-submit svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.form-note {
  margin: -0.55rem 0 0;
  color: rgba(10, 18, 15, 0.45);
  font-size: 0.56rem;
}

@media (max-width: 760px) {
  .language-switch {
    margin-right: 0.15rem;
  }

  .header-actions {
    gap: 0.55rem;
  }

  .hero-socials {
    right: var(--page-x);
    bottom: 1rem;
    gap: 0.6rem;
  }

  .hero-social-link span {
    display: none;
  }

  .hero-social-link svg {
    width: 2.45rem;
    height: 2.45rem;
  }

  .menu-panel {
    padding: 6.4rem 1.5rem 1.5rem;
  }

  .mobile-menu nav a,
  .mobile-menu.is-open nav a {
    font-size: clamp(1.6rem, 7vw, 1.85rem);
  }

  .mobile-menu-meta {
    display: flex;
    font-size: 0.69rem;
  }

  .rating-column {
    align-items: flex-start;
  }

  .review-awards {
    grid-template-columns: repeat(3, 4.25rem);
  }

  .review-awards img {
    width: 4.25rem;
    height: 4.25rem;
  }

  .review-links-summary a {
    width: 4.25rem;
    height: 4.25rem;
    font-size: 0.47rem;
  }

  .review-awards > span {
    display: block;
    text-align: left;
  }

  .rating-block {
    max-width: none;
    padding: 0;
  }

  .rating-block strong {
    font-size: 2.4rem;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .center-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .center-cta .outline-button {
    width: 100%;
  }

  .card-header {
    min-height: 4.8rem;
    padding: 0 1rem;
    grid-template-columns: 1fr auto;
  }

  .card-header > img {
    width: 6.5rem;
  }

  .card-logo {
    font-size: 1.9rem;
  }

  .card-tabs {
    position: absolute;
    top: 4.8rem;
    right: 0;
    left: 0;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid rgba(10, 18, 15, 0.18);
    background: var(--paper);
  }

  .card-tabs button {
    flex: 1;
  }

  .card-body {
    padding: 7rem 1.25rem 4rem;
  }

  .card-intro {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    margin-bottom: 3.5rem;
  }

  .card-intro .section-kicker {
    grid-column: 1;
  }

  .card-intro h2 {
    font-size: clamp(3.8rem, 18vw, 5.2rem);
  }

  .catalog-section {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .catalog-section h3 {
    font-size: 2.4rem;
  }

  .booking-dialog {
    padding: 5.2rem 1.35rem 2rem;
  }

  .booking-dialog h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* Absolute final compact footer override */
@media (min-width: 761px) {
  .site-footer {
    padding: 1.55rem var(--page-x) 0.8rem;
  }

  .footer-main {
    display: flex;
    padding-bottom: 0.75rem;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }

  .footer-logo {
    font-size: clamp(2.15rem, 3.4vw, 3rem);
  }

  .footer-main > p:not(.footer-phone) {
    max-width: 14rem;
    font-size: 0.86rem;
    line-height: 1.18;
    text-align: left;
  }

  .footer-phone {
    font-size: 0.78rem;
  }

  .footer-social-link {
    width: 2.25rem;
    height: 2.25rem;
    min-height: 2.25rem;
  }

  .footer-social-link svg {
    width: 1rem;
    height: 1rem;
  }

  .footer-bottom {
    font-size: 0.58rem;
    line-height: 1.35;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 1.55rem var(--page-x) 1rem;
  }

  .footer-main {
    gap: 0.42rem;
    padding-bottom: 0.72rem;
  }

  .footer-logo {
    font-size: clamp(2.05rem, 9vw, 2.7rem);
  }

  .footer-main > p:not(.footer-phone) {
    max-width: 13rem;
    font-size: 0.82rem;
    line-height: 1.16;
  }

  .footer-phone {
    font-size: 0.76rem;
  }

  .footer-socials {
    gap: 0.4rem;
  }

  .footer-social-link {
    width: 2.25rem;
    height: 2.25rem;
    min-height: 2.25rem;
  }

  .footer-social-link svg {
    width: 0.98rem;
    height: 0.98rem;
  }

  .footer-bottom {
    font-size: 0.56rem;
    line-height: 1.25;
  }
}

/* Absolute final logo/icon correction */
.brand-fish {
  width: clamp(5.15rem, 7.8vw, 7rem);
  color: currentColor;
}

.brand-fish-body,
.brand-fish-fin,
.brand-fish-gill {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.brand-fish-body {
  stroke-width: 1.5;
}

.brand-fish-fin {
  stroke-width: 1.16;
}

.brand-fish-gill {
  stroke-width: 1.08;
  opacity: 0.82;
}

.brand-fish-eye {
  fill: currentColor;
  stroke: none;
}

.whatsapp-cta-icon {
  width: 1.32rem;
  height: 1.32rem;
  color: var(--ink);
  fill: none;
  stroke: none;
  filter: none;
}

.whatsapp-icon-mark {
  fill: currentColor;
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
  animation: whatsappMarkSettle 4.2s ease-in-out infinite;
}

:where(.book-link, .menu-book, .hero-primary, .mobile-sticky-book, .contact-book, .whatsapp-submit):hover .whatsapp-cta-icon,
:where(.book-link, .menu-book, .hero-primary, .mobile-sticky-book, .contact-book, .whatsapp-submit):focus-visible .whatsapp-cta-icon {
  color: var(--ink);
  filter: none;
  transform: translateY(-1px) scale(1.035);
}

.mobile-sticky-book .whatsapp-cta-icon {
  width: 1.54rem;
  height: 1.54rem;
}

/* Definitive final brand and WhatsApp correction */
.brand-fish {
  display: block;
  width: clamp(5.25rem, 7.4vw, 6.85rem);
  height: auto;
  color: currentColor;
  fill: none;
  stroke: none;
  filter: none;
}

.brand-fish-body,
.brand-fish-fin,
.brand-fish-gill {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.brand-fish-body {
  stroke-width: 1.58;
}

.brand-fish-fin {
  stroke-width: 1.42;
}

.brand-fish-gill {
  stroke-width: 1.04;
  opacity: 0.82;
}

.brand-fish-eye {
  fill: currentColor;
  stroke: none;
}

.whatsapp-cta-icon {
  display: block;
  width: 1.24rem;
  height: 1.24rem;
  flex: 0 0 1.24rem;
  overflow: visible;
  color: var(--ink);
  fill: currentColor;
  stroke: none;
  filter: none;
  transform-origin: center;
  animation: whatsappIconPulse 4.8s ease-in-out infinite;
}

.whatsapp-icon-mark {
  fill: currentColor;
  stroke: none;
  transform: none;
  animation: none;
}

:where(.book-link, .menu-book, .hero-primary, .mobile-sticky-book, .contact-book, .whatsapp-submit):hover .whatsapp-cta-icon,
:where(.book-link, .menu-book, .hero-primary, .mobile-sticky-book, .contact-book, .whatsapp-submit):focus-visible .whatsapp-cta-icon {
  color: var(--ink);
  filter: none;
  transform: translateY(-1px) scale(1.04);
}

.mobile-sticky-book .whatsapp-cta-icon {
  width: 1.42rem;
  height: 1.42rem;
  flex-basis: 1.42rem;
}

@keyframes whatsappIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.055); }
}

/* Definitive requested Aug 6 corrections */
html,
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.hero :where(.hero-overline, .hero-hours, .hero-hours span, .hero-edge, .scroll-cue, .hero-social-link) {
  color: var(--white);
}

.location-section :where(.section-kicker, .location-card figcaption, .carousel-footer > p),
.reviews-section :where(.section-kicker, .review-links-summary a, .stars, .reviews-link a),
.contact-section :where(.section-kicker, .contact-list h3, .contact-list a, .contact-list p, .contact-social-link) {
  color: var(--ink);
}

.hero-picture {
  background-image: url("assets/hero-wine-desktop.jpg");
  background-position: center center;
  background-size: cover;
}

.brand-name {
  font-weight: 500;
  letter-spacing: 0;
}

.brand-fish {
  display: block;
  width: clamp(5.9rem, 8.8vw, 8.25rem);
  height: auto;
  color: currentColor;
  fill: none;
  stroke: none;
  filter: none;
}

.brand-fish-body,
.brand-fish-fin,
.brand-fish-gill {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.brand-fish-body {
  stroke-width: 0.86;
}

.brand-fish-fin {
  stroke-width: 0.72;
  opacity: 0.94;
}

.brand-fish-gill {
  stroke-width: 0.64;
  opacity: 0.68;
}

.brand-fish-eye {
  fill: currentColor;
  stroke: none;
  opacity: 0.86;
}

.card-brand-mark {
  width: clamp(8.4rem, 12vw, 11.2rem);
  min-width: 8.4rem;
  color: var(--ink);
  justify-self: start;
}

.card-brand-mark .brand-name,
.card-brand-mark .brand-fish {
  color: var(--ink);
  filter: none;
  text-shadow: none;
}

.card-modal :where(.section-kicker, .card-intro h2 em, .catalog-section h3, .catalog-item > span) {
  color: var(--ink);
}

.card-modal :where(.card-tabs button.is-active, .card-close) {
  border-color: var(--ink);
  color: var(--ink);
}

.card-modal :where(.card-header, .catalog-section, .catalog-items, .catalog-item, .catalog-note) {
  border-color: rgba(10, 18, 15, 0.28);
}

.contact-socials {
  display: flex;
  margin: 0 0 1.2rem;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-social-link {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid rgba(10, 18, 15, 0.34);
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-size: 0.72rem;
}

.contact-social-link svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
}

.tripadvisor-badge {
  border: 1px solid rgba(10, 18, 15, 0.16);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.5) 46%, transparent 70%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(226, 216, 199, 0.76));
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 248, 0.58),
    0 1.1rem 2.4rem rgba(10, 18, 15, 0.11);
}

.tripadvisor-badge::after {
  inset: 0.5rem;
  border: 1px solid rgba(10, 18, 15, 0.08);
  background: transparent;
  opacity: 1;
  animation: owlPremiumHalo 5.6s ease-in-out infinite;
}

.tripadvisor-badge svg {
  width: 3rem;
  height: 2.25rem;
  color: var(--ink);
  stroke-width: 0;
}

.tripadvisor-badge .tripadvisor-owl {
  animation: owlPremiumFloat 5.2s var(--ease-out) infinite;
}

.tripadvisor-badge .owl-frame,
.tripadvisor-badge .owl-eye,
.tripadvisor-badge .owl-beak,
.tripadvisor-badge .owl-gesture {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.tripadvisor-badge .owl-frame {
  stroke-width: 3.25;
}

.tripadvisor-badge .owl-eye {
  fill: rgba(255, 253, 248, 0.92);
  stroke-width: 3.05;
  animation: owlPremiumBlink 6.6s ease-in-out infinite;
}

.tripadvisor-badge .owl-pupil {
  fill: var(--ink);
  stroke: none;
  animation: owlPremiumLook 4.8s ease-in-out infinite;
}

.tripadvisor-badge .owl-beak {
  stroke-width: 2.1;
  animation: owlPremiumBeak 4.8s ease-in-out infinite;
}

.tripadvisor-badge .owl-gesture {
  stroke-width: 3.4;
  transform-box: fill-box;
  transform-origin: center;
}

.owl-no-speak .owl-speak-cover {
  animation: owlSpeakCover 4.4s ease-in-out infinite;
}

.owl-no-hear .owl-ear-left {
  transform-origin: right center;
  animation: owlHearLeft 4.2s ease-in-out infinite;
}

.owl-no-hear .owl-ear-right {
  transform-origin: left center;
  animation: owlHearRight 4.2s ease-in-out infinite;
}

.owl-no-see .owl-eye-cover {
  stroke-width: 4;
  animation: owlSeeCover 4.6s ease-in-out infinite;
}

.owl-no-see .owl-pupil {
  animation: none;
  opacity: 0.18;
}

@media (min-width: 761px) {
  .hero-image {
    object-position: center center;
    filter: brightness(0.92) contrast(1.06) saturate(1.04);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 9, 7, 0.34), rgba(4, 9, 7, 0.12) 34%, rgba(4, 9, 7, 0.1) 66%, rgba(4, 9, 7, 0.32)),
      linear-gradient(90deg, rgba(4, 9, 7, 0.28), rgba(4, 9, 7, 0.04) 50%, rgba(4, 9, 7, 0.18));
  }

  .reviews-intro {
    display: flex;
    max-width: 86rem;
    margin-bottom: clamp(3rem, 5vw, 5rem);
    align-items: center;
    flex-direction: column;
    gap: 1.15rem;
    text-align: center;
  }

  .reviews-intro > div:first-child,
  .reviews-intro h2 {
    justify-self: center;
    text-align: center;
  }

  .rating-column {
    width: 100%;
    align-items: center;
  }

  .review-awards {
    justify-content: center;
    gap: 0.95rem;
  }

  .review-awards > span {
    display: none;
  }

  .review-links-summary a {
    width: 5.65rem;
    height: 5.65rem;
    min-height: 5.65rem;
  }

  .contact-list > div:nth-child(2) {
    border-right: 1px solid rgba(10, 18, 15, 0.2);
  }

  .site-footer {
    padding: clamp(2.8rem, 4.2vw, 4rem) var(--page-x) 1.2rem;
    text-align: center;
  }

  .footer-main {
    display: flex;
    padding-bottom: 1.4rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
  }

  .footer-logo,
  .footer-main > p,
  .footer-phone,
  .footer-main > a:not(.footer-logo) {
    align-self: center;
    justify-self: center;
    text-align: center;
  }

  .footer-logo {
    font-size: clamp(2.55rem, 3.8vw, 3.65rem);
  }

  .footer-main > p:not(.footer-phone) {
    max-width: 20rem;
    text-align: center;
  }

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

  .footer-main > a:not(.footer-logo) {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .card-brand-mark {
    width: 7.2rem;
    min-width: 7.2rem;
  }

  .card-brand-mark .brand-name {
    font-size: 1.05rem;
  }

  .card-brand-mark .brand-fish {
    width: 5rem;
  }
}

@keyframes owlPremiumFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  28% { transform: translateY(-1.6px) rotate(-1.4deg); }
  62% { transform: translateY(0.8px) rotate(1.1deg); }
}

@keyframes owlPremiumHalo {
  0%, 100% { transform: scale(0.96); opacity: 0.58; }
  50% { transform: scale(1.04); opacity: 0.96; }
}

@keyframes owlPremiumBlink {
  0%, 86%, 94%, 100% { transform: scaleY(1); }
  90% { transform: scaleY(0.18); }
}

@keyframes owlPremiumLook {
  0%, 100% { transform: translateX(0); }
  30% { transform: translateX(1.4px); }
  64% { transform: translateX(-1.2px); }
}

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

@keyframes owlSpeakCover {
  0%, 100% { transform: translateY(0) scaleX(1); }
  45% { transform: translateY(-1px) scaleX(1.08); }
}

@keyframes owlHearLeft {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(1.3px) rotate(4deg); }
}

@keyframes owlHearRight {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(-1.3px) rotate(-4deg); }
}

@keyframes owlSeeCover {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-1.2px); }
}

/* Definitive black and white detail pass */
.site-header,
.hero,
.restaurant-section,
.site-footer,
.mobile-menu,
.mobile-menu .menu-panel {
  --section-detail: var(--white);
}

.location-section,
.reviews-section,
.contact-section,
.card-modal,
.booking-modal {
  --section-detail: var(--ink);
}

:where(.site-header, .hero, .restaurant-section, .site-footer, .mobile-menu)
  :where(.section-kicker, .hero-overline, .hero-hours, .hero-hours span, .hero-address, .hero-edge, .scroll-cue, .menu-panel-kicker, .mobile-menu-meta, .desktop-nav a, .brand-mark, .footer-logo, .footer-phone a, .footer-main > p, .footer-main > a, .footer-bottom, .footer-social-link) {
  color: var(--white);
}

:where(.location-section, .reviews-section, .contact-section, .card-modal, .booking-modal)
  :where(.section-kicker, h3, figcaption, figcaption span, .carousel-footer > p, .review-links-summary a, .reviews-link a, .stars, .contact-list a, .contact-list p, .contact-social-link, h2 em, .card-intro h2 em, .catalog-section h3, .catalog-item > span, form label > span) {
  color: var(--ink);
}

.desktop-nav a::after,
.footer-main > a::after,
.restaurant-section .section-kicker::after,
.mobile-menu nav a::after {
  background: var(--white);
}

.location-section .section-kicker::after,
.reviews-section .section-kicker::after,
.contact-section .section-kicker::after,
.card-modal .section-kicker::after,
.booking-modal .section-kicker::after {
  background: var(--ink);
}

.language-switch,
.language-switch button,
.language-switch span,
.mobile-menu nav a,
.mobile-menu nav a span,
.mobile-menu nav a b,
.mobile-menu nav a .ui-icon,
.mobile-menu-meta a,
.mobile-menu-meta .ui-icon,
.menu-toggle,
.menu-toggle span {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.3);
}

.mobile-menu .menu-book {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
  box-shadow: 0 1rem 2.6rem rgba(0, 0, 0, 0.24);
}

.mobile-menu .menu-book :where(.whatsapp-cta-icon, .whatsapp-icon-mark) {
  color: currentColor;
  fill: currentColor;
}

.mobile-sticky-book {
  display: none;
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.mobile-sticky-book.is-on-dark {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.mobile-sticky-book.is-on-light {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.mobile-sticky-book :where(.whatsapp-cta-icon, .whatsapp-icon-mark),
:where(.book-link, .hero-primary, .contact-book, .whatsapp-submit) :where(.whatsapp-cta-icon, .whatsapp-icon-mark) {
  color: currentColor;
  fill: currentColor;
}

.book-link,
.hero-primary,
.contact-book,
.whatsapp-submit {
  border-color: currentColor;
}

.book-link,
.hero-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.hero-primary,
.contact-book,
.whatsapp-submit {
  color: var(--ink);
}

.contact-book,
.whatsapp-submit {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.mobile-menu .menu-book:hover .whatsapp-cta-icon,
.mobile-menu .menu-book:focus-visible .whatsapp-cta-icon,
.mobile-sticky-book.is-on-dark:hover .whatsapp-cta-icon,
.mobile-sticky-book.is-on-dark:focus-visible .whatsapp-cta-icon {
  color: var(--ink);
}

.mobile-sticky-book.is-on-light:hover .whatsapp-cta-icon,
.mobile-sticky-book.is-on-light:focus-visible .whatsapp-cta-icon,
.contact-book:hover .whatsapp-cta-icon,
.contact-book:focus-visible .whatsapp-cta-icon,
.whatsapp-submit:hover .whatsapp-cta-icon,
.whatsapp-submit:focus-visible .whatsapp-cta-icon {
  color: var(--white);
}

.hero-social-link,
.footer-social-link {
  border-color: rgba(255, 253, 248, 0.42);
  color: var(--white);
}

.hero-social-link svg,
.footer-social-link svg,
.contact-social-link svg {
  color: currentColor;
  stroke: currentColor;
  fill: none;
}

.hero-social-link .facebook-mark,
.footer-social-link .facebook-mark,
.contact-social-link .facebook-mark {
  fill: currentColor;
  stroke: none;
}

.brand-fish {
  width: clamp(5.6rem, 8vw, 7.8rem);
  color: currentColor;
}

.brand-fish-body {
  stroke-width: 1.08;
}

.brand-fish-fin {
  stroke-width: 0.92;
}

.brand-fish-gill {
  stroke-width: 0.72;
  opacity: 0.72;
}

.contact-phone-cell {
  min-width: 0;
}

.contact-phone-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.8vw, 1.25rem);
}

.contact-phone-link {
  white-space: nowrap;
}

.contact-socials {
  margin: 0;
  justify-content: center;
}

.contact-social-link {
  min-height: 2.35rem;
  padding: 0 0.8rem;
  border-color: rgba(10, 18, 15, 0.32);
  color: var(--ink);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.booking-dialog h2 em,
.booking-dialog label > span {
  color: var(--ink);
}

.booking-dialog input:focus,
.booking-dialog select:focus,
.booking-dialog textarea:focus {
  border-bottom-color: var(--ink);
}

.map-label {
  border-color: rgba(255, 253, 248, 0.36);
}

.map-label > span,
.map-label a,
.map-label a .ui-icon {
  color: var(--white);
}

.map-label a {
  border-color: rgba(255, 253, 248, 0.5);
}

.map-label a:hover,
.map-label a:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.site-header .brand-mark,
.site-header .brand-name,
.site-header .brand-fish,
.site-header .desktop-nav a,
.site-header .language-switch,
.site-header .language-switch button,
.site-header .language-switch span {
  color: var(--white);
}

.hero .hero-overline,
.hero .hero-address,
.hero .hero-hours,
.hero .hero-hours span,
.hero .hero-edge,
.hero .scroll-cue,
.restaurant-section .section-kicker,
.restaurant-section .heading-copy,
.restaurant-section .heading-copy p {
  color: var(--white);
}

.location-section .section-kicker,
.location-section .location-card figcaption,
.location-section .location-card figcaption span,
.reviews-section .section-kicker,
.reviews-section h2 em,
.reviews-section .stars,
.contact-section .section-kicker,
.contact-section h2 em,
.contact-section .contact-list h3,
.contact-section .contact-list a,
.contact-section .contact-list p {
  color: var(--ink);
}

.site-footer .footer-logo,
.site-footer .footer-main > p,
.site-footer .footer-phone a,
.site-footer .footer-main > a:not(.footer-logo),
.site-footer .footer-bottom,
.site-footer .footer-social-link {
  color: var(--white);
}

.hero-actions {
  display: flex;
  margin-top: 1.35rem;
  justify-content: center;
}

.hero-primary {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0 1.2rem;
  border-width: 1px;
  border-style: solid;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.tripadvisor-badge {
  border-color: rgba(10, 18, 15, 0.13);
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 248, 0.52),
    0 0.9rem 2rem rgba(10, 18, 15, 0.09);
}

.tripadvisor-badge::after {
  border-color: rgba(10, 18, 15, 0.06);
}

.tripadvisor-badge svg {
  width: 2.9rem;
  height: 2.15rem;
  color: var(--ink);
}

.tripadvisor-badge .owl-frame {
  stroke-width: 2.05;
}

.tripadvisor-badge .owl-eye {
  stroke-width: 1.85;
}

.tripadvisor-badge .owl-beak {
  stroke-width: 1.15;
}

.tripadvisor-badge .owl-gesture {
  stroke-width: 2;
}

@media (min-width: 761px) {
  .hero .hero-socials {
    position: absolute;
    right: auto;
    bottom: clamp(6.2rem, 9vh, 7.4rem);
    left: 50%;
    justify-content: center;
    transform: translateX(-50%);
  }

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

  .contact-list > div:nth-child(2) {
    border-right: 1px solid rgba(10, 18, 15, 0.2);
  }

  .contact-phone-cell {
    display: flex;
    min-height: 11rem;
    flex-direction: column;
  }

  .contact-phone-row {
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contact-socials {
    width: 100%;
    gap: 0.5rem;
  }

  .contact-social-link {
    min-height: 2.2rem;
    padding: 0 0.68rem;
  }

  .site-footer .footer-main {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
  }
}

@media (max-width: 760px) {
  .hero .hero-socials {
    right: var(--page-x);
    bottom: 4.8rem;
    left: auto;
    transform: none;
  }

  .contact-phone-row {
    flex-direction: column;
  }

  .mobile-sticky-book {
    position: fixed;
    z-index: 55;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    min-height: calc(3.25rem + env(safe-area-inset-bottom));
    padding: 0.85rem var(--page-x) calc(0.85rem + env(safe-area-inset-bottom));
    border-width: 1px 0 0;
    border-style: solid;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    transition: transform 220ms var(--ease-out);
  }

  .mobile-sticky-book .whatsapp-cta-icon {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 1.1rem;
  }

  body .mobile-sticky-book.is-on-light {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
  }

  body .mobile-sticky-book.is-on-dark {
    background: var(--white);
    border-color: var(--white);
    color: var(--ink);
  }

  body.menu-open .mobile-sticky-book {
    opacity: 0;
    pointer-events: none;
  }
}

/* Final brand image and no-gold corrections */
:root {
  --gold: var(--ink);
  --gold-light: var(--ink);
  --orange: var(--ink);
  --accent-gold: var(--ink);
  --accent-gold-bright: var(--ink);
}

.site-header,
.hero,
.restaurant-section,
.site-footer,
.mobile-menu,
.mobile-menu .menu-panel,
.map-label {
  --gold: var(--white);
  --gold-light: var(--white);
  --orange: var(--white);
  --accent-gold: var(--white);
  --accent-gold-bright: var(--white);
}

.location-section,
.reviews-section,
.contact-section,
.card-modal,
.booking-modal {
  --gold: var(--ink);
  --gold-light: var(--ink);
  --orange: var(--ink);
  --accent-gold: var(--ink);
  --accent-gold-bright: var(--ink);
}

.site-header .header-brand-mark {
  display: block;
  width: clamp(6.8rem, 8vw, 8.6rem);
  color: var(--white);
  line-height: 0;
}

.site-header .brand-logo-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0.2rem 0.55rem rgba(0, 0, 0, 0.28));
}

.site-header .brand-name,
.site-header .brand-fish {
  display: none;
}

.site-header :where(.desktop-nav a, .language-switch, .language-switch button, .language-switch span, .menu-toggle, .menu-toggle span),
.mobile-menu :where(.menu-panel-kicker, nav a, nav a span, nav a b, nav a .ui-icon, .mobile-menu-meta, .mobile-menu-meta a, .mobile-menu-meta .ui-icon) {
  color: var(--white);
}

.hero :where(.hero-overline, .hero-address, .hero-hours, .hero-hours span, .hero-edge, .scroll-cue, .hero-social-link),
.restaurant-section :where(.section-kicker, .heading-copy, .heading-copy p, .restaurant-mobile-copy),
.site-footer :where(.footer-logo, .footer-main > p, .footer-phone a, .footer-main > a, .footer-bottom, .footer-social-link) {
  color: var(--white);
}

.location-section :where(.section-kicker, h2 em, figcaption, figcaption span, .carousel-footer > p),
.reviews-section :where(.section-kicker, h2 em, .stars, .review-links-summary a, .reviews-link a),
.contact-section :where(.section-kicker, h2 em, .contact-list h3, .contact-list a, .contact-list p, .contact-social-link),
.card-modal :where(.section-kicker, h2 em, .catalog-section h3, .catalog-item > span),
.booking-modal :where(.section-kicker, h2 em, label > span) {
  color: var(--ink);
}

.desktop-nav a::after,
.mobile-menu nav a::after,
.restaurant-section .section-kicker::after,
.site-footer .footer-main > a::after {
  background: var(--white);
}

.location-section .section-kicker::after,
.reviews-section .section-kicker::after,
.contact-section .section-kicker::after,
.card-modal .section-kicker::after,
.booking-modal .section-kicker::after {
  background: var(--ink);
}

.whatsapp-cta-icon {
  color: currentColor;
  filter: none;
}

:where(.book-link, .menu-book, .hero-primary, .mobile-sticky-book, .contact-book, .whatsapp-submit):hover .whatsapp-cta-icon,
:where(.book-link, .menu-book, .hero-primary, .mobile-sticky-book, .contact-book, .whatsapp-submit):focus-visible .whatsapp-cta-icon {
  color: currentColor;
  filter: none;
}

.map-label {
  border-color: rgba(255, 253, 248, 0.36);
}

.map-label a {
  border-color: rgba(255, 253, 248, 0.5);
}

.tripadvisor-badge .owl-pupil {
  fill: var(--ink);
}

@media (min-width: 761px) {
  .hero .hero-socials {
    right: var(--page-x);
    bottom: clamp(2rem, 4vh, 3.2rem);
    left: auto;
    justify-content: flex-end;
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header .header-brand-mark {
    width: 6.2rem;
  }

  .hero .hero-socials {
    right: var(--page-x);
    bottom: 1rem;
    left: auto;
    gap: 0.6rem;
    transform: none;
  }
}

/* Final mobile hero and contact cleanup */
.site-header .header-brand-mark {
  width: clamp(8.8rem, 11vw, 11.8rem);
}

.site-header .brand-logo-img {
  opacity: 1;
  filter:
    drop-shadow(0 0 0.08rem rgba(0, 0, 0, 0.95))
    drop-shadow(0 0.28rem 0.85rem rgba(0, 0, 0, 0.72));
}

.contact-socials {
  display: none;
}

@media (min-width: 761px) {
  .hero .hero-socials {
    right: var(--page-x);
    bottom: clamp(2rem, 4vh, 3.2rem);
    left: auto;
    justify-content: flex-end;
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 5.6rem;
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
  }

  .site-header .header-brand-mark {
    width: 8.25rem;
  }

  .hero {
    display: grid;
    min-height: 100svh;
    padding: 7.2rem var(--page-x) calc(5.6rem + env(safe-area-inset-bottom));
    place-items: center;
  }

  .hero-title-wrap {
    display: flex;
    max-width: min(100%, 24rem);
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: inline;
  }

  .hero h1 {
    order: 1;
    width: 100%;
    font-size: clamp(3rem, 14.8vw, 4.25rem);
    letter-spacing: 0;
    line-height: 0.9;
    white-space: nowrap;
  }

  .hero-overline {
    order: 2;
    margin: 0.85rem 0 0;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    line-height: 1.2;
  }

  .hero-address {
    display: flex;
    order: 3;
    margin: 0.75rem 0 0;
    justify-content: center;
    gap: 0.38rem;
    flex-wrap: wrap;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1.35;
  }

  .hero-address p {
    display: inline;
  }

  .hero-hours,
  .hero-actions {
    display: none;
  }

  .hero .hero-socials {
    top: calc(50% + 6.55rem);
    right: auto;
    bottom: auto;
    left: 50%;
    justify-content: center;
    gap: 0.72rem;
    transform: translateX(-50%);
  }

  .hero-social-link {
    gap: 0;
  }

  .hero-social-link span {
    display: none;
  }

  .hero-social-link svg {
    width: 2.55rem;
    height: 2.55rem;
  }

  .hero-edge {
    display: block;
    top: 54%;
    color: var(--white);
    font-size: 0.48rem;
    letter-spacing: 0.18em;
    opacity: 0.82;
  }

  .hero-edge-left {
    left: 1rem;
  }

  .hero-edge-right {
    right: 1rem;
  }

  .section-heading,
  .reviews-intro,
  .contact-panel {
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .section-heading .section-kicker,
  .section-heading h2,
  .heading-copy,
  .heading-copy p,
  .reviews-intro h2,
  .contact-panel h2,
  .contact-list,
  .contact-list h3,
  .contact-list p,
  .contact-list a {
    text-align: center;
  }

  .heading-copy {
    max-width: 24rem;
    margin-right: auto;
    margin-left: auto;
    padding-top: 0;
  }

  .review-awards,
  .rating-column,
  .reviews-link,
  .contact-phone-row {
    align-items: center;
    justify-content: center;
  }
}

/* Final screenshot fixes */
.hero-image {
  color: transparent;
  font-size: 0;
}

@media (min-width: 761px) {
  .contact-section .contact-actions .contact-book {
    background: var(--paper);
    border-color: rgba(10, 18, 15, 0.45);
    color: var(--ink);
    box-shadow: none;
  }

  .contact-section .contact-actions .contact-book:hover,
  .contact-section .contact-actions .contact-book:focus-visible {
    background: var(--paper);
    border-color: var(--ink);
    color: var(--ink);
  }

  .contact-section .contact-actions .contact-book :where(svg, .whatsapp-cta-icon, .whatsapp-icon-mark) {
    color: currentColor;
    fill: currentColor;
  }
}

/* Absolute final logo visibility, slim mobile header, and location order */
.site-header .header-brand-mark {
  display: inline-flex;
  width: auto;
  min-width: 0;
  height: clamp(3.15rem, 4.4vw, 4.2rem);
  align-items: center;
  line-height: 0;
}

.site-header .brand-logo-img,
.card-brand-mark .brand-logo-img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: none;
}

.card-brand-mark {
  width: auto;
  min-width: 0;
  height: clamp(4.05rem, 5.5vw, 5.25rem);
}

.location-card:nth-child(2) img {
  object-position: center 54%;
}

.location-card:nth-child(3) img {
  object-position: center center;
}

.location-card:nth-child(4) img {
  object-position: center center;
}

@media (min-width: 761px) {
  .hero-edge {
    top: 50%;
  }

  .hero-edge-left {
    left: clamp(0.9rem, 1.4vw, 1.35rem);
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
    transform-origin: center;
  }

  .hero-edge-right {
    right: clamp(0.9rem, 1.4vw, 1.35rem);
    writing-mode: vertical-rl;
    transform: translateY(-50%);
    transform-origin: center;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 3.55rem;
    padding-top: 0.22rem;
    padding-bottom: 0.22rem;
  }

  .site-header .header-brand-mark {
    height: 2.55rem;
  }

  .language-switch {
    font-size: 0.54rem;
  }

  .menu-toggle {
    width: 2.12rem;
    height: 2.12rem;
  }

  .card-brand-mark {
    height: 3.45rem;
  }
}

/* Absolute final white header logo override */
.site-header .header-brand-mark {
  display: inline-flex;
  width: auto;
  min-width: 0;
  height: clamp(4.35rem, 5.9vw, 6rem);
  align-items: center;
  line-height: 0;
}

.site-header .brand-logo-img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transform: translateZ(0);
}

@media (max-width: 760px) {
  .site-header .header-brand-mark {
    height: 2.7rem;
  }
}

/* Story and luggage service additions */
.desktop-nav {
  gap: clamp(0.7rem, 1.45vw, 1.55rem);
}

.mobile-menu.is-open nav a:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu.is-open nav a:nth-child(6) { transition-delay: 0.25s; }

.story-section,
.luggage-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-y) var(--page-x);
}

.story-section {
  display: grid;
  min-height: auto;
  padding-top: clamp(3.2rem, 5.2vw, 5.4rem);
  padding-bottom: clamp(3.2rem, 5.2vw, 5.4rem);
  grid-template-columns: minmax(18rem, 0.76fr) minmax(24rem, 0.82fr);
  gap: clamp(2rem, 4.5vw, 4.8rem);
  align-items: center;
}

.story-copy {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  max-width: 37rem;
  padding: 0;
}

.story-copy .section-kicker,
.luggage-panel .section-kicker {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.story-copy h2 {
  margin: 1.1rem 0 0;
  font-family: var(--serif);
  font-size: 5.2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.story-body {
  display: grid;
  max-width: 36rem;
  margin-top: clamp(1.2rem, 2.4vw, 2rem);
  padding-top: clamp(1.1rem, 2vw, 1.6rem);
  padding-bottom: clamp(1.1rem, 2vw, 1.6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  gap: clamp(0.58rem, 1vw, 0.78rem);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.52;
}

.story-body p,
.story-body blockquote {
  margin: 0;
}

.story-body strong {
  color: var(--white);
  font-weight: 600;
}

.story-body blockquote {
  padding: 0.72rem 0;
  border-left: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.18;
}

.story-visual {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: min(100%, 42rem);
  min-height: clamp(25rem, 42vw, 35.5rem);
}

.story-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #080d0b;
  box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.28);
}

.story-photo-main {
  width: min(72%, 25.8rem);
  height: clamp(24rem, 40vw, 34rem);
}

.story-photo-inset {
  position: absolute;
  right: 0;
  bottom: clamp(1.4rem, 3.6vw, 3rem);
  width: min(44%, 17rem);
  height: clamp(14.5rem, 22vw, 19.5rem);
  border: 0.45rem solid #10110f;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.04) saturate(1.02);
}

.story-photo-main img {
  object-position: center 42%;
}

.story-photo-inset img {
  object-position: center 44%;
}

.luggage-section {
  display: grid;
  grid-template-columns: minmax(21rem, 0.8fr) minmax(22rem, 0.86fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.luggage-panel {
  display: grid;
  max-width: 42rem;
  gap: clamp(1.4rem, 2.6vw, 2.1rem);
}

.luggage-panel h2 {
  margin-top: 0;
  font-family: var(--serif);
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  max-width: 11ch;
}

.luggage-panel > p:not(.section-kicker) {
  max-width: 36rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  line-height: 1.7;
}

.luggage-service-card {
  position: relative;
  display: grid;
  padding: clamp(1.25rem, 2.6vw, 2.05rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    #10110f;
  gap: clamp(1rem, 2vw, 1.55rem);
  box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.2);
}

.luggage-service-head {
  display: grid;
  padding-bottom: clamp(0.8rem, 1.5vw, 1.1rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.luggage-service-head span {
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.luggage-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.luggage-options article {
  display: grid;
  min-height: 7.2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  align-content: space-between;
  background: rgba(255, 255, 255, 0.045);
}

.luggage-options span {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.luggage-options strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1;
}

.luggage-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.luggage-section .contact-book {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
}

.luggage-section .contact-book:hover,
.luggage-section .contact-book:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.luggage-modal {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
}

.luggage-modal[hidden] {
  display: none;
}

.luggage-modal.is-open {
  visibility: visible;
}

.luggage-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(2, 7, 5, 0.68);
  backdrop-filter: blur(7px);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

.luggage-modal.is-open .luggage-backdrop {
  opacity: 1;
}

.luggage-dialog {
  position: relative;
  z-index: 2;
  width: min(43rem, 100%);
  height: 100%;
  padding: clamp(4.5rem, 7vw, 7rem) clamp(1.5rem, 5vw, 4.5rem) 3rem;
  background: var(--paper);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.luggage-modal.is-open .luggage-dialog {
  transform: none;
}

.luggage-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(10, 18, 15, 0.3);
  border-radius: 50%;
  background: transparent;
  place-content: center;
  cursor: pointer;
}

.luggage-close span {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: var(--ink);
}

.luggage-close span:first-child {
  transform: translateY(0.5px) rotate(45deg);
}

.luggage-close span:last-child {
  transform: translateY(-0.5px) rotate(-45deg);
}

.luggage-dialog h2 {
  margin: 1.2rem 0 1.4rem;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.3vw, 5.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
}

.luggage-dialog h2 em,
.luggage-dialog label > span {
  color: var(--ink);
}

.luggage-dialog form,
.luggage-dialog label {
  display: flex;
  flex-direction: column;
}

.luggage-dialog form {
  gap: 1.4rem;
}

.luggage-dialog label > span {
  margin-bottom: 0.55rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.luggage-dialog input,
.luggage-dialog select,
.luggage-dialog textarea {
  width: 100%;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid rgba(10, 18, 15, 0.3);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font: 400 0.95rem var(--sans);
}

.luggage-dialog textarea {
  resize: vertical;
}

.luggage-dialog input:focus,
.luggage-dialog select:focus,
.luggage-dialog textarea:focus {
  border-bottom-color: var(--gold);
}

@media (max-width: 1020px) {
  .story-section,
  .luggage-section {
    grid-template-columns: 1fr;
  }

  .story-copy,
  .story-visual {
    grid-column: 1;
    grid-row: auto;
  }

  .story-copy {
    padding-bottom: 0;
  }

  .story-visual {
    width: min(100%, 38rem);
  }

  .story-copy h2 {
    font-size: 4.35rem;
  }

  .luggage-panel h2 {
    font-size: 4.8rem;
  }
}

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

  .story-section,
  .luggage-section {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: clamp(3.6rem, 13vw, 5rem);
    padding-bottom: clamp(3.6rem, 13vw, 5rem);
  }

  .story-copy,
  .luggage-panel {
    display: contents;
  }

  .story-copy .section-kicker,
  .luggage-panel .section-kicker {
    order: 1;
    align-self: stretch;
  }

  .story-copy h2,
  .luggage-panel h2 {
    order: 2;
    align-self: stretch;
    font-size: 3.4rem;
  }

  .story-visual {
    order: 3;
    align-self: stretch;
    min-height: clamp(26rem, 112vw, 33rem);
  }

  .story-photo-main {
    width: 76%;
    height: clamp(24rem, 104vw, 31rem);
  }

  .story-photo-inset {
    right: 0;
    bottom: 0.8rem;
    width: 50%;
    height: clamp(13rem, 58vw, 18rem);
    border-width: 0.32rem;
  }

  .story-body {
    order: 4;
    align-self: stretch;
    font-size: 0.78rem;
    line-height: 1.5;
    gap: 0.62rem;
  }

  .story-body blockquote {
    font-size: 1.12rem;
  }

  .luggage-options,
  .luggage-actions,
  .luggage-form-row {
    grid-template-columns: 1fr;
  }

  .luggage-panel > p:not(.section-kicker) {
    order: 3;
    align-self: stretch;
  }

  .luggage-service-card {
    order: 4;
    width: 100%;
  }

  .luggage-service-head {
    display: none;
  }

  .luggage-actions {
    order: 5;
    width: 100%;
  }

  .luggage-actions .contact-book {
    gap: 1rem;
  }

  .luggage-dialog {
    padding: 5.2rem 1.35rem 2rem;
  }

  .luggage-dialog h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }
}

/* Legal pages, consent banner, and external map gate */
.footer-bottom a,
.footer-legal-links button {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18rem;
}

.footer-legal-links {
  display: flex;
  padding-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.1rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-legal-links button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.footer-legal-links button:hover,
.footer-legal-links button:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold-light);
}

.map-frame:not(.map-loaded) iframe {
  opacity: 0;
}

.map-consent {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  padding: clamp(1.2rem, 4vw, 2.5rem);
  place-content: center;
  justify-items: center;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(7, 13, 10, 0.82), rgba(7, 13, 10, 0.74)),
    url("assets/location-terrace-01.jpg") center / cover;
  color: var(--white);
  text-align: center;
}

.map-consent[hidden],
.map-frame.map-loaded .map-consent {
  display: none;
}

.map-consent p {
  max-width: 24rem;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(0.86rem, 2vw, 1rem);
  line-height: 1.55;
}

.map-consent button,
.cookie-actions button {
  min-height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid rgba(240, 207, 138, 0.7);
  border-radius: var(--radius-soft);
  background: var(--gold-light);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  z-index: 240;
  right: var(--page-x);
  bottom: 1.1rem;
  left: var(--page-x);
  display: grid;
  max-width: 58rem;
  padding: 1rem;
  border: 1px solid rgba(240, 207, 138, 0.42);
  border-radius: var(--radius-soft);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  background: rgba(7, 13, 10, 0.96);
  color: var(--white);
  font-family: var(--sans);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: none;
}

.cookie-banner h2 {
  margin: 0 0 0.25rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 0;
  color: var(--white);
  font-size: 0.74rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.cookie-actions button:first-child,
.cookie-actions button:last-child {
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
  color: var(--white);
}

.cookie-actions button[data-cookie-accept] {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.legal-modal {
  position: fixed;
  z-index: 260;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(0.85rem, 3vw, 2rem);
  background: rgba(7, 13, 10, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.legal-modal[hidden] {
  display: none;
}

.legal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.legal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
}

.legal-dialog {
  position: relative;
  display: grid;
  width: min(66rem, 100%);
  max-height: min(48rem, calc(100vh - 2rem));
  padding: clamp(1.2rem, 3vw, 2.4rem);
  border: 1px solid rgba(184, 135, 70, 0.28);
  border-radius: var(--radius-soft);
  background: var(--paper);
  color: var(--ink);
  gap: 1.2rem;
  overflow-y: auto;
  box-shadow: 0 1.8rem 5rem rgba(0, 0, 0, 0.34);
  transform: translateY(1rem);
  transition: transform 0.28s var(--ease-out);
}

.legal-modal.is-open .legal-dialog {
  transform: none;
}

.legal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(10, 18, 15, 0.2);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.legal-close span {
  position: absolute;
  width: 0.9rem;
  height: 1px;
  background: currentColor;
}

.legal-close span:first-child {
  transform: rotate(45deg);
}

.legal-close span:last-child {
  transform: rotate(-45deg);
}

.legal-dialog > .section-kicker {
  margin: 0;
  padding-right: 3rem;
}

.legal-dialog h2 {
  max-width: 42rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
}

.legal-dialog h2 em {
  color: var(--gold);
  font-style: normal;
}

.legal-tabs {
  display: flex;
  padding: 0.28rem;
  border: 1px solid rgba(10, 18, 15, 0.18);
  border-radius: var(--radius-soft);
  flex-wrap: wrap;
  gap: 0.25rem;
  width: fit-content;
}

.legal-tabs button {
  min-height: 2.35rem;
  padding: 0 0.9rem;
  border: 0;
  border-radius: calc(var(--radius-soft) * 0.8);
  background: transparent;
  color: rgba(10, 18, 15, 0.64);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-tabs button.is-active {
  background: var(--ink);
  color: var(--white);
}

.legal-content {
  border-top: 1px solid rgba(10, 18, 15, 0.18);
}

.legal-panel {
  display: none;
  max-width: 52rem;
  padding-top: 1.2rem;
}

.legal-panel.is-active {
  display: block;
}

.legal-panel h3,
.legal-panel h4 {
  margin: 1rem 0 0.55rem;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.legal-panel h3 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.legal-panel h4 {
  font-size: 1.3rem;
}

.legal-panel p,
.legal-panel li {
  color: rgba(10, 18, 15, 0.68);
  font-size: 0.86rem;
  line-height: 1.65;
}

.legal-panel p {
  margin: 0.65rem 0;
}

.legal-panel ul {
  padding-left: 1.1rem;
  margin: 0.5rem 0 1rem;
}

.legal-panel a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.16rem;
}

@media (max-width: 760px) {
  .cookie-banner {
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
    left: 0.75rem;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions button {
    flex: 1 1 100%;
  }

  .legal-dialog {
    max-height: calc(100vh - 1.2rem);
    padding: 1.1rem;
  }

  .legal-tabs {
    width: 100%;
  }

  .legal-tabs button {
    flex: 1 1 auto;
  }
}

.reviews-intro {
  grid-template-columns: 1fr;
}

@media (min-width: 761px) {
  .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-list > div:nth-child(2) {
    border-right: 0;
  }

  .contact-phone-cell {
    min-height: 0;
  }

  .contact-phone-row {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

/* Absolute final white header logo override */
.site-header .header-brand-mark {
  display: inline-flex;
  width: auto;
  min-width: 0;
  height: clamp(3.95rem, 5.35vw, 5.45rem);
  align-items: center;
  line-height: 0;
}

.site-header .brand-logo-img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: none;
}

@media (max-width: 760px) {
  .site-header .header-brand-mark {
    height: 2.7rem;
  }
}

/* Final white hero/header logo pass */
.site-header .header-brand-mark {
  height: clamp(3.75rem, 5vw, 5.15rem);
}

.site-header .brand-logo-img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: none;
}

@media (max-width: 760px) {
  .site-header .header-brand-mark {
    height: 2.7rem;
  }
}

/* Final brand replacement, location exterior, and desktop hero edge pass */
.site-header .brand-logo-img,
.footer-brand-mark .brand-logo-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 0.08rem rgba(0, 0, 0, 0.95))
    drop-shadow(0 0.28rem 0.85rem rgba(0, 0, 0, 0.72));
}

.card-brand-mark .brand-logo-img {
  filter: none;
}

.footer-brand-mark {
  display: inline-flex;
  width: clamp(4.85rem, 6.5vw, 6.8rem);
  min-width: 4.85rem;
  line-height: 0;
}

.footer-brand-mark .brand-logo-img {
  opacity: 0.96;
}

.location-card:nth-child(2) img {
  object-position: center center;
}

.location-card:nth-child(3) img {
  object-position: center 54%;
}

.location-card:nth-child(4) img {
  object-position: center center;
}

@media (min-width: 761px) {
  .hero-edge {
    top: 50%;
  }

  .hero-edge-left {
    left: clamp(0.9rem, 1.4vw, 1.35rem);
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
    transform-origin: center;
  }

  .hero-edge-right {
    right: clamp(0.9rem, 1.4vw, 1.35rem);
    writing-mode: vertical-rl;
    transform: translateY(-50%);
    transform-origin: center;
  }
}

@media (max-width: 760px) {
  .footer-brand-mark {
    width: 5.8rem;
    min-width: 5.8rem;
  }
}

/* Final cross-device consistency for menu card, owls, and phone CTA */
.tripadvisor-badge b {
  color: var(--ink);
}

.card-brand-mark .brand-logo-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

.card-brand-mark .brand-name,
.card-brand-mark .brand-fish {
  display: none;
}

.contact-section .contact-actions .contact-call .phone-line-icon,
.contact-section .contact-actions .contact-call .phone-line-icon path {
  fill: none;
  stroke: currentColor;
}

.contact-section .contact-actions .contact-call .phone-line-icon {
  width: 1.06rem;
  height: 1.06rem;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.08;
}

@media (max-width: 760px) {
  .card-brand-mark {
    width: 6.85rem;
    min-width: 6.85rem;
  }

  .contact-section .contact-actions .contact-call .phone-line-icon,
  .contact-section .contact-actions .contact-call .phone-line-icon path {
    fill: none;
    stroke: currentColor;
  }
}

/* Final modal brand and desktop contact refinements */
.card-brand-mark {
  display: inline-flex;
  width: clamp(8.15rem, 12vw, 11rem);
  min-width: 8.15rem;
  height: auto;
  align-items: center;
  justify-self: start;
}

.card-brand-mark .brand-logo-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  opacity: 1;
  filter: none;
}

.card-brand-mark .brand-name,
.card-brand-mark .brand-fish {
  display: none;
}

.contact-call .phone-line-icon {
  width: 1.06rem;
  height: 1.06rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.08;
  vector-effect: non-scaling-stroke;
}

.contact-call .phone-line-icon path {
  fill: none;
  stroke: currentColor;
}

@media (min-width: 761px) {
  .contact-phone-cell {
    padding-left: 1rem;
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .card-brand-mark {
    width: 6.85rem;
    min-width: 6.85rem;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: clamp(2.8rem, 4.2vw, 4rem) var(--page-x) 1.2rem;
    text-align: center;
  }

  .footer-main {
    display: flex;
    padding-bottom: 1.4rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
  }

  .footer-logo,
  .footer-main > p,
  .footer-phone,
  .footer-main > a:not(.footer-logo) {
    align-self: center;
    justify-self: center;
    text-align: center;
  }

  .footer-logo {
    font-size: clamp(2.55rem, 10vw, 3.25rem);
  }

  .footer-main > p:not(.footer-phone) {
    max-width: 20rem;
    text-align: center;
  }

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

  .footer-main > a:not(.footer-logo) {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
  }
}

/* Final mobile-only polish pass */
@media (max-width: 760px) {
  .site-header {
    min-height: 4.35rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(14px);
  }

  .site-header::after {
    opacity: 0.42;
  }

  .site-header .header-brand-mark {
    width: 6.65rem;
  }

  .header-actions {
    gap: 0.42rem;
  }

  .language-switch {
    font-size: 0.58rem;
  }

  .menu-toggle {
    width: 2.35rem;
    height: 2.35rem;
  }

  .hero {
    padding-top: 6.1rem;
    padding-bottom: calc(6.2rem + env(safe-area-inset-bottom));
  }

  .hero-overline {
    order: 1;
    margin: 0 0 0.72rem;
    font-size: 0.56rem;
    letter-spacing: 0.2em;
  }

  .hero h1 {
    order: 2;
    font-size: clamp(3rem, 14.3vw, 4.15rem);
  }

  .hero-address {
    order: 3;
    margin-top: 0.82rem;
  }

  .hero .hero-socials {
    top: calc(50% + 5.75rem);
  }

  .hero-edge {
    top: 50%;
    font-size: 0.46rem;
    letter-spacing: 0.18em;
    opacity: 0.9;
  }

  .hero-edge-left {
    left: 0.72rem;
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
    transform-origin: center;
  }

  .hero-edge-right {
    right: 0.72rem;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
    transform-origin: center;
  }

  .mobile-sticky-book {
    right: var(--page-x);
    bottom: calc(1rem + env(safe-area-inset-bottom));
    left: var(--page-x);
    width: auto;
    min-height: 3.35rem;
    padding: 0 1.15rem;
    border-width: 1px;
    border-radius: 6px;
    box-shadow: 0 0.9rem 2.1rem rgba(0, 0, 0, 0.22);
  }

  .reviews-intro {
    gap: 1rem;
    margin-bottom: clamp(2.4rem, 8vw, 3.2rem);
  }

  .rating-column {
    width: 100%;
    align-items: center;
  }

  .review-awards {
    margin-top: 0.35rem;
    justify-content: center;
    gap: 0.55rem;
  }

  .review-awards > span {
    display: none;
  }

  .review-links-summary a {
    width: 4.45rem;
    height: 4.45rem;
    min-height: 4.45rem;
    color: var(--ink);
  }

  .tripadvisor-badge b,
  .tripadvisor-badge .tripadvisor-owl {
    color: var(--ink);
  }

  .tripadvisor-badge .owl-frame,
  .tripadvisor-badge .owl-eye,
  .tripadvisor-badge .owl-beak,
  .tripadvisor-badge .owl-gesture {
    stroke: var(--ink);
  }

  .tripadvisor-badge .owl-pupil {
    fill: var(--ink);
  }

  .contact-section .contact-actions .contact-book {
    background: var(--paper);
    border-color: rgba(10, 18, 15, 0.42);
    color: var(--ink);
    box-shadow: none;
  }

  .contact-section .contact-actions .contact-book:hover,
  .contact-section .contact-actions .contact-book:focus-visible {
    background: var(--paper);
    border-color: var(--ink);
    color: var(--ink);
  }

  .contact-section .contact-actions .contact-book :where(svg, .whatsapp-cta-icon, .whatsapp-icon-mark) {
    color: currentColor;
    fill: currentColor;
  }
}

/* Post-screenshot logo fix and final mobile header pass */
.site-header .header-brand-mark {
  display: inline-flex;
  width: auto;
  min-width: 0;
  height: clamp(3.15rem, 4.4vw, 4.2rem);
  align-items: center;
  line-height: 0;
}

.site-header .brand-logo-img,
.card-brand-mark .brand-logo-img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: none;
}

.card-brand-mark {
  width: auto;
  min-width: 0;
  height: clamp(4.05rem, 5.5vw, 5.25rem);
}

.location-card:nth-child(2) img {
  object-position: center 54%;
}

.location-card:nth-child(3) img {
  object-position: center center;
}

.location-card:nth-child(4) img {
  object-position: center center;
}

@media (min-width: 761px) {
  .hero-edge {
    top: 50%;
  }

  .hero-edge-left {
    left: clamp(0.9rem, 1.4vw, 1.35rem);
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
    transform-origin: center;
  }

  .hero-edge-right {
    right: clamp(0.9rem, 1.4vw, 1.35rem);
    writing-mode: vertical-rl;
    transform: translateY(-50%);
    transform-origin: center;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 3.55rem;
    padding-top: 0.22rem;
    padding-bottom: 0.22rem;
  }

  .site-header .header-brand-mark {
    height: 2.55rem;
  }

  .language-switch {
    font-size: 0.54rem;
  }

  .menu-toggle {
    width: 2.12rem;
    height: 2.12rem;
  }

  .card-brand-mark {
    height: 3.45rem;
  }
}
/* Absolute EOF white header logo override */
.site-header .header-brand-mark {
  display: inline-flex;
  width: auto;
  min-width: 0;
  height: clamp(4.35rem, 5.9vw, 6rem);
  align-items: center;
  line-height: 0;
}

.site-header .brand-logo-img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transform: translateZ(0);
}

@media (max-width: 760px) {
  .site-header .header-brand-mark {
    height: 2.7rem;
  }
}

/* Final mobile section alignment and compact consent banner */
@media (max-width: 760px) {
  .story-section,
  .luggage-section {
    align-items: center;
    text-align: center;
  }

  .story-copy .section-kicker,
  .luggage-panel .section-kicker,
  .story-copy h2,
  .luggage-panel h2,
  .story-body,
  .story-body p,
  .story-body blockquote,
  .luggage-panel > p:not(.section-kicker),
  .luggage-options article,
  .luggage-options span,
  .luggage-options strong {
    text-align: center;
  }

  .story-copy .section-kicker,
  .luggage-panel .section-kicker,
  .story-copy h2,
  .luggage-panel h2,
  .story-body,
  .luggage-panel > p:not(.section-kicker),
  .luggage-service-card,
  .luggage-actions {
    margin-right: auto;
    margin-left: auto;
  }

  .story-copy .section-kicker,
  .luggage-panel .section-kicker {
    justify-self: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.56rem;
    letter-spacing: 0.24em;
  }

  .story-body {
    max-width: min(100%, 32rem);
    justify-items: center;
  }

  .story-body blockquote {
    padding: 0.75rem 0 0;
    border-top: 0;
    border-left: 0;
  }

  .luggage-panel > p:not(.section-kicker) {
    max-width: 30rem;
  }

  .luggage-options article {
    justify-items: center;
  }

  .cookie-banner {
    right: 0.78rem;
    bottom: calc(0.72rem + env(safe-area-inset-bottom));
    left: 0.78rem;
    padding: 0.78rem;
    border-radius: 0.48rem;
    grid-template-columns: 1fr;
    gap: 0.66rem;
    background: rgba(7, 13, 10, 0.97);
    color: var(--white);
  }

  .cookie-banner h2 {
    margin-bottom: 0.12rem;
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.18rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
  }

  .cookie-banner p {
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.68rem;
    line-height: 1.34;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
  }

  .cookie-actions button {
    min-height: 2.15rem;
    padding: 0.45rem 0.55rem;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }

  .cookie-actions button[data-cookie-accept] {
    grid-column: 1 / -1;
    order: -1;
  }
}
