:root {
  --wine: oklch(48% 0.13 8);
  --wine-light: oklch(56% 0.125 10);
  --wine-deep: oklch(31% 0.085 8);
  --coastal-cream: oklch(97% 0.024 83);
  --coastal-paper: oklch(99% 0.012 83);
  --coastal-ink: oklch(24% 0.032 22);
  --coastal-mist: oklch(92% 0.035 219);
  --coastal-gold: oklch(79% 0.12 76);
  --coastal-gold-light: oklch(88% 0.10 76);
  --crimson: var(--wine);
  --crimson-dark: var(--wine-deep);
  --pos-red: var(--wine);
  --pos-crimson: var(--wine);
  --pos-crimson-dark: var(--wine-deep);
}

/* Public website: a full-bleed, sign-like composition built around the real view. */
.site-shell {
  overflow: clip;
  background: var(--coastal-cream);
  color: var(--coastal-ink);
}

.site-shell .button {
  border-radius: 3px;
  background: var(--wine);
  color: var(--coastal-paper);
  box-shadow: 0 5px 0 var(--wine-deep);
  transition: background-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}

.site-shell .button:hover {
  background: var(--wine-light);
  box-shadow: 0 3px 0 var(--wine-deep);
  transform: translateY(2px);
}

.site-shell .site-header {
  inset: 0 0 auto;
  display: grid;
  height: auto;
  min-height: 104px;
  grid-template-columns: clamp(78px, 8vw, 112px) minmax(0, 1fr) clamp(78px, 8vw, 112px);
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: 8px clamp(18px, 4vw, 64px);
  color: var(--coastal-paper);
}

.site-shell .site-header.menu-open {
  z-index: 30;
}

.site-shell .brand {
  position: relative;
  z-index: 1;
  display: block;
  grid-column: 1;
  justify-self: start;
  line-height: 0;
}

.site-shell .brand img {
  width: auto;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px oklch(13% 0.02 20 / .34));
}

.site-shell .site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  width: auto;
  min-width: 0;
  grid-column: 2;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 35px);
  color: var(--coastal-paper);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
  text-shadow: 0 2px 12px oklch(13% 0.02 20 / .9);
}

.site-shell .site-nav > a:not(.button),
.site-shell .site-nav > .quiet-link {
  font-size: .7rem;
  letter-spacing: .14em;
}

.site-shell .site-nav > a:not(.button)::after {
  height: 2px;
  margin-top: 5px;
  background: var(--coastal-gold);
}

.site-shell .language-toggle {
  min-height: 36px;
  border: 1px solid color-mix(in oklch, var(--coastal-paper) 72%, transparent);
  border-radius: 2px;
  background: transparent;
  color: var(--coastal-paper);
  padding: 5px 9px;
  text-shadow: inherit;
}

.site-shell .button--nav {
  min-height: 42px;
  padding: 9px 18px;
  text-shadow: none;
}

/* A tiny top-down dining table makes the reservation action part of the place. */
.site-shell .table-reserve,
.site-shell .table-reserve:hover {
  position: relative;
  display: grid;
  width: 78px;
  min-width: 78px;
  height: 82px;
  min-height: 82px;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  transform: none;
}

.site-shell .header-actions {
  display: flex;
  grid-column: 3;
  grid-row: 1;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 6px;
  justify-self: end;
}

.site-shell .header-actions > * {
  flex: 0 0 auto;
}

.site-shell .table-top {
  position: relative;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 48px;
  place-items: center;
  border: 1.5px solid var(--coastal-paper);
  border-radius: 2px;
  background: var(--wine);
  box-shadow: inset 0 0 0 2px color-mix(in oklch, var(--wine-deep) 42%, transparent);
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}

.site-shell .table-top > span {
  display: block;
  width: 6.5ch;
  color: var(--coastal-paper);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.site-shell .table-chair {
  position: absolute;
  left: 50%;
  width: 34px;
  height: 11px;
  border: 1.5px solid var(--coastal-paper);
  border-radius: 9px 9px 3px 3px;
  background: var(--wine-deep);
  transform: translateX(-50%);
}

.site-shell .table-chair--left { top: 1px; }
.site-shell .table-chair--right { top: auto; right: auto; bottom: 1px; transform: translateX(-50%) rotate(180deg); }
.site-shell .table-reserve:hover .table-top { border-color: var(--coastal-gold); background: var(--wine-light); }
.site-shell .table-reserve:hover .table-chair { border-color: var(--coastal-gold); }

.site-shell .hero {
  height: 100svh;
  min-height: 760px;
  max-height: none;
  background: var(--coastal-ink);
  color: var(--coastal-paper);
}

.site-shell .hero-media img {
  object-position: center 50%;
  filter: brightness(.72) saturate(1.06);
  transform: scale(1.012);
}

.site-shell .hero-wash,
.site-shell .hero::before,
.site-shell .hero::after {
  display: none;
  content: none;
}

html .site-shell .hero-copy {
  position: absolute;
  z-index: 2;
  top: calc(51svh + clamp(182px, calc(min(19.4vw, 22.7vh) + 20px), 252px));
  right: 0;
  left: 0;
  bottom: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 18px;
  background: none;
  color: var(--coastal-paper);
  text-align: center;
  transform: none;
}

.site-shell .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-shell .hero-flight-mark {
  position: absolute;
  z-index: 7;
  top: 51vh;
  top: 51svh;
  left: 50%;
  width: clamp(300px, min(36vw, 42vh), 430px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transform-origin: center;
  will-change: transform, opacity;
}

.logo-flight-ready .site-shell .hero-flight-mark {
  position: fixed;
}

.site-shell .hero-flight-mark img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 28px oklch(13% 0.02 20 / .5));
}

.site-shell .hero-copy > .hero-location {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--coastal-paper);
  font-size: clamp(.95rem, 1.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: clamp(.18em, .55vw, .4em);
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 3px 18px oklch(13% 0.02 20 / .88);
  text-transform: uppercase;
  will-change: opacity;
}

html[lang="es"] .site-shell .hero-copy {
  right: 0;
  left: 0;
}

.logo-flight-ready .site-shell .site-header {
  position: fixed;
  background-color: oklch(31% 0.085 8 / var(--header-chrome, 0));
}

.logo-flight-ready .site-shell .site-header.is-docked {
  box-shadow: 0 1px 0 oklch(97% 0.024 83 / .22), 0 10px 30px oklch(18% 0.04 8 / .2);
}

.logo-flight-ready .site-shell .brand {
  opacity: var(--destination-opacity, 0);
}

.site-shell .hero-scroll {
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: clamp(22px, 4vh, 42px);
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--coastal-paper) 74%, transparent);
  border-radius: 50%;
  color: var(--coastal-paper);
  font-size: 1.3rem;
  transform: translateX(50%);
  transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}

.site-shell .hero-scroll:hover {
  background: var(--coastal-paper);
  color: var(--wine-deep);
  transform: translate(50%, 3px);
}

/* The reservation journey is a user-triggered concierge sheet, not a homepage section. */
body:has(.reservation-dialog[open]) {
  overflow: hidden;
}

.reservation-dialog {
  width: min(960px, calc(100vw - 32px));
  max-width: none;
  max-height: min(92svh, 860px);
  margin: auto;
  overflow: hidden;
  border: 1px solid oklch(80% 0.025 20);
  border-radius: 18px;
  background: var(--coastal-paper);
  color: var(--coastal-ink);
  padding: 0;
  box-shadow: 0 30px 90px oklch(13% 0.03 20 / .42);
}

.reservation-dialog::backdrop {
  background: oklch(14% 0.025 20 / .78);
}

.reservation-dialog[open] {
  animation: reservation-arrival .28s cubic-bezier(.22, 1, .36, 1);
}

.reservation-modal {
  display: grid;
  max-height: min(92svh, 860px);
  grid-template-rows: auto auto minmax(0, 1fr);
}

.reservation-modal-header {
  position: relative;
  display: grid;
  justify-items: center;
  background: var(--wine);
  color: var(--coastal-paper);
  padding: 24px clamp(70px, 9vw, 96px) 25px;
  text-align: center;
}

.reservation-modal-header > div {
  width: min(100%, 680px);
}

.reservation-modal-header .eyebrow {
  margin: 0 0 5px;
  color: var(--coastal-gold-light);
}

.reservation-modal-header h2 {
  margin: 0;
  color: var(--coastal-paper);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
}

.reservation-modal-header p:last-child {
  max-width: 56ch;
  margin: 10px auto 0;
  color: color-mix(in oklch, var(--coastal-paper) 84%, transparent);
  font-size: .9rem;
}

.reservation-dialog-close {
  position: absolute;
  top: 22px;
  right: clamp(22px, 4vw, 38px);
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--coastal-paper) 48%, transparent);
  border-radius: 50%;
  background: transparent;
  color: var(--coastal-paper);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.reservation-dialog-close:hover {
  background: color-mix(in oklch, var(--coastal-paper) 12%, transparent);
}

.reservation-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-bottom: 1px solid oklch(88% 0.018 22);
  background: var(--coastal-cream);
  padding: 0;
  list-style: none;
}

.reservation-progress li {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid oklch(88% 0.018 22);
  padding: 15px clamp(14px, 2.6vw, 24px);
  color: oklch(50% 0.025 22);
}

.reservation-progress li:last-child {
  border-right: 0;
}

.reservation-progress li > span {
  position: relative;
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid oklch(73% 0.03 22);
  border-radius: 50%;
  font-size: .77rem;
  font-weight: 700;
}

.reservation-progress li div {
  display: grid;
  min-width: 0;
}

.reservation-progress b {
  overflow: hidden;
  font-size: .79rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reservation-progress small {
  overflow: hidden;
  font-size: .68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reservation-progress .is-current {
  background: color-mix(in oklch, var(--wine) 8%, var(--coastal-paper));
  color: var(--wine-deep);
}

.reservation-progress .is-current > span {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--coastal-paper);
}

.reservation-progress .is-complete > span {
  border-color: var(--wine);
  color: transparent;
}

.reservation-progress .is-complete > span::before {
  position: absolute;
  content: '✓';
  color: var(--wine);
}

.reservation-dialog .booking-experience {
  width: 100%;
  min-height: 0;
  margin: 0;
  overflow-y: auto;
  border: 0;
  padding: clamp(24px, 4vw, 38px);
  text-align: center;
}

.reservation-dialog .booking-step-head {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.reservation-dialog .booking-step-head > div {
  width: min(100%, 720px);
}

.reservation-dialog .booking-step-head .eyebrow {
  margin: 0 0 7px;
  color: var(--wine);
}

.reservation-dialog .booking-step-head h3,
.reservation-dialog .booking-success h3 {
  margin: 0;
  color: var(--coastal-ink);
  font: 600 clamp(1.65rem, 3vw, 2.45rem)/1.08 var(--display);
  letter-spacing: -.035em;
}

.reservation-dialog .booking-guidance {
  max-width: 67ch;
  margin: 12px auto 22px;
  color: oklch(45% 0.025 22);
  font-size: .9rem;
  text-align: center;
}

.reservation-dialog .booking-back {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  min-height: 42px;
  flex: 0 0 auto;
  border: 1px solid oklch(78% 0.03 22);
  border-radius: 3px;
  background: transparent;
  color: var(--wine);
  padding: 8px 12px;
  cursor: pointer;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.reservation-dialog .booking-form--modal {
  display: grid;
  width: min(100%, 800px);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 18px;
}

.reservation-dialog .booking-form--modal > * {
  width: 100%;
  grid-column: 1;
}

.reservation-dialog .booking-search-fields {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
}

.reservation-dialog .booking-form label,
.reservation-dialog .guest-details label {
  min-width: 0;
  color: var(--coastal-ink);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: left;
  text-transform: none;
}

.reservation-dialog .booking-search-fields label {
  display: grid;
  grid-template-rows: auto 54px;
}

.reservation-dialog .booking-form label span,
.reservation-dialog .guest-details label > span:first-child {
  display: block;
  margin-bottom: 6px;
}

.reservation-dialog .booking-form input,
.reservation-dialog .booking-form select,
.reservation-dialog .guest-details input:not([type='checkbox']) {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 54px;
  min-height: 54px;
  border: 1px solid oklch(79% 0.025 22);
  border-radius: 3px;
  background: var(--coastal-paper);
  color: var(--coastal-ink);
  padding: 0 14px;
  font-size: 1rem;
  line-height: 1;
}

.reservation-dialog .booking-form select {
  padding-right: 40px;
}

.reservation-dialog .button.reservation-primary {
  width: max-content;
  justify-self: center;
  min-height: 50px;
  border: 0;
  border-radius: 3px;
  background: var(--wine);
  color: var(--coastal-paper);
  padding: 12px 20px;
  box-shadow: 0 4px 0 var(--wine-deep);
}

.reservation-dialog .booking-form--modal > .button.reservation-primary {
  width: max-content;
}

.reservation-dialog .button.reservation-primary:hover:not(:disabled) {
  background: var(--wine-light);
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--wine-deep);
}

.reservation-dialog .button.reservation-primary:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.reservation-dialog .booking-disclaimer {
  max-width: 62ch;
  margin: 0 auto;
  color: oklch(49% 0.025 22);
  font-size: .78rem;
  text-align: center;
}

.reservation-dialog .form-note {
  min-height: 1.4em;
  margin: 13px auto 0;
  color: oklch(48% 0.16 25);
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
}

.reservation-dialog .booking-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  margin: 20px 0 22px;
  border-block: 1px solid oklch(88% 0.018 22);
  padding: 12px 0;
}

.reservation-dialog .booking-summary div {
  min-width: 0;
  padding: 4px 16px 4px 0;
}

.reservation-dialog .booking-summary dt {
  color: oklch(52% 0.025 22);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reservation-dialog .booking-summary dd {
  overflow: hidden;
  margin: 2px 0 0;
  color: var(--coastal-ink);
  font-size: .9rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reservation-dialog .booking-zone-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 14px 0 12px;
  border: 1px solid color-mix(in oklch, var(--wine) 30%, var(--coastal-paper));
  border-radius: 8px;
  background: color-mix(in oklch, var(--wine) 6%, var(--coastal-paper));
  padding: 4px;
}

.reservation-dialog .booking-zone-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--coastal-ink);
  padding: 0 16px;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.reservation-dialog .booking-zone-tabs button.is-active {
  background: var(--wine);
  color: var(--coastal-paper);
  box-shadow: 0 4px 10px color-mix(in oklch, var(--wine) 30%, transparent);
}

.reservation-dialog .booking-zone-tabs button:hover:not(.is-active) {
  background: color-mix(in oklch, var(--wine) 14%, var(--coastal-paper));
}

.reservation-dialog .booking-zone-tabs button:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: 2px;
}

.reservation-dialog .booking-contact-fallback {
  display: grid;
  gap: 14px;
  justify-items: start;
  margin-top: 10px;
  border: 1px solid color-mix(in oklch, var(--wine) 30%, var(--coastal-paper));
  border-radius: 8px;
  background: color-mix(in oklch, var(--wine) 6%, var(--coastal-paper));
  padding: 20px;
}

.reservation-dialog .booking-contact-fallback p {
  margin: 0;
  color: var(--coastal-ink);
  font-size: .9rem;
  line-height: 1.5;
}

.reservation-dialog .guest-floor-plan {
  width: 100%;
  min-width: 720px;
  min-height: 330px;
  border: 1px solid color-mix(in oklch, var(--wine) 62%, var(--coastal-paper));
  border-radius: 4px;
  background: var(--wine-deep);
}

.reservation-dialog .guest-floor-scroll {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 8px;
  scrollbar-color: color-mix(in oklch, var(--wine) 58%, var(--coastal-paper)) var(--coastal-cream);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.reservation-dialog .guest-floor-scroll:focus-visible {
  outline: 3px solid var(--coastal-gold);
  outline-offset: 3px;
}

.reservation-dialog .guest-floor-plan::before {
  background: color-mix(in oklch, var(--coastal-mist) 28%, transparent);
  color: var(--coastal-paper);
}

html[lang='es'] .reservation-dialog .guest-floor-plan::before {
  content: 'LADO DEL MAR';
}

.reservation-dialog .guest-table.is-selected {
  border-color: var(--wine);
  background: var(--coastal-gold);
}

.reservation-dialog .booking-step-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 17px;
}

.reservation-dialog .table-selection {
  margin: 0;
  color: oklch(43% 0.025 22);
  font-size: .86rem;
}

.reservation-dialog .guest-details {
  display: grid;
  max-width: none;
  gap: 20px;
}

.reservation-dialog .guest-fields {
  display: grid;
  max-width: 620px;
  grid-template-columns: 1fr;
  gap: 14px;
}

.reservation-dialog .deposit-choice {
  max-width: 720px;
  margin: 0;
  border: 1px solid oklch(82% 0.035 22);
  border-radius: 4px;
  background: color-mix(in oklch, var(--wine) 5%, var(--coastal-paper));
  padding: 18px;
  color: var(--coastal-ink);
  font-size: .8rem;
  letter-spacing: 0;
  text-transform: none;
}

.reservation-dialog .deposit-choice legend {
  padding: 0 7px;
  color: var(--wine);
  font-weight: 700;
}

.reservation-dialog .deposit-choice p {
  margin: 0 0 14px;
  color: oklch(43% 0.025 22);
}

.reservation-dialog .deposit-agreement {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  line-height: 1.45;
}

.reservation-dialog .deposit-agreement input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--wine);
}

.reservation-dialog .booking-success {
  max-width: 650px;
  padding: 20px 0 28px;
}

.reservation-dialog .booking-success .eyebrow {
  color: var(--wine);
}

.reservation-dialog .booking-success p:not(.eyebrow) {
  max-width: 62ch;
  color: oklch(43% 0.025 22);
}

@keyframes reservation-arrival {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: none; }
}

/* The rest of the public page follows the new cream, wine and ocean rhythm. */
.site-shell .reviews {
  background: var(--coastal-cream);
}

/* Google-inspired review module. The rating is verified; live review content stays on Google. */
.site-shell .google-reviews {
  --google-blue: oklch(55% 0.19 255);
  --google-red: oklch(58% 0.19 28);
  --google-yellow: oklch(80% 0.16 84);
  --google-green: oklch(58% 0.15 145);
  --google-star: oklch(81% 0.16 84);
  --google-ink: oklch(29% 0.015 255);
  --google-muted: oklch(49% 0.018 255);
  --google-line: oklch(88% 0.01 255);
  display: block;
  padding: clamp(72px, 9vw, 132px) clamp(20px, 6vw, 96px);
  background: oklch(96.8% 0.006 255);
  font-family: Roboto, Arial, sans-serif;
}

.site-shell .google-review-panel {
  width: min(100%, 1120px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--google-line);
  border-radius: 14px;
  background: oklch(99.3% 0.003 255);
  color: var(--google-ink);
  box-shadow: 0 2px 8px oklch(29% 0.015 255 / .08), 0 16px 42px oklch(29% 0.015 255 / .06);
}

.site-shell .google-review-brand {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--google-line);
  padding: 16px clamp(22px, 3vw, 36px);
}

.site-shell .google-wordmark {
  font: 500 1.45rem/1 Arial, sans-serif;
  letter-spacing: -.045em;
}

.site-shell .google-blue { color: var(--google-blue); }
.site-shell .google-red { color: var(--google-red); }
.site-shell .google-yellow { color: var(--google-yellow); }
.site-shell .google-green { color: var(--google-green); }

.site-shell .google-review-label {
  color: var(--google-muted);
  font-size: 1.05rem;
  letter-spacing: -.01em;
}

.site-shell .google-review-layout {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.72fr);
}

.site-shell .google-review-score {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--google-line);
  padding: clamp(28px, 3.5vw, 44px);
}

.site-shell .google-place-name {
  margin: 0 0 18px;
  color: var(--google-ink);
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.35;
}

.site-shell .google-score-row {
  display: flex;
  align-items: center;
  gap: 17px;
}

.site-shell .google-score-row > strong {
  color: var(--google-ink);
  font-size: clamp(3.25rem, 5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1;
}

.site-shell .google-score-row > div {
  display: grid;
  gap: 7px;
}

.site-shell .google-stars {
  position: relative;
  display: block;
  width: max-content;
  font-size: 1.26rem;
  letter-spacing: .08em;
  line-height: 1;
}

.site-shell .google-stars-base {
  color: var(--google-line);
}

.site-shell .google-stars-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 96%;
  overflow: hidden;
  color: var(--google-star);
  white-space: nowrap;
}

.site-shell .google-review-count {
  width: max-content;
  color: var(--google-blue);
  font-size: .88rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.site-shell .google-review-count:hover {
  text-decoration-color: currentColor;
}

.site-shell .google-review-verified {
  max-width: 30ch;
  margin: 22px 0 0;
  color: var(--google-muted);
  font-size: .76rem;
  line-height: 1.5;
}

.site-shell .google-review-feed {
  min-width: 0;
  overflow: hidden;
  background: oklch(98.4% 0.004 255);
  padding-block: 20px 14px;
}

.site-shell .google-review-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(22px, 3vw, 36px) 18px;
}

.site-shell .google-review-feed-head h3 {
  margin: 0 0 3px;
  color: var(--google-ink);
  font: 500 1.08rem/1.35 Roboto, Arial, sans-serif;
  letter-spacing: -.015em;
}

.site-shell .google-review-feed-head p {
  margin: 0;
  color: var(--google-muted);
  font-size: .78rem;
}

.site-shell .google-review-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.site-shell .google-review-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--google-line);
  border-radius: 50%;
  background: oklch(99.3% 0.003 255);
  color: var(--google-muted);
  cursor: pointer;
  font: 400 1.7rem/1 Arial, sans-serif;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.site-shell .google-review-controls button:hover:not(:disabled) {
  border-color: color-mix(in oklch, var(--google-blue) 30%, var(--google-line));
  background: color-mix(in oklch, var(--google-blue) 7%, oklch(99.3% 0.003 255));
  color: var(--google-blue);
}

.site-shell .google-review-controls button:disabled {
  opacity: .38;
  cursor: default;
}

.site-shell .google-review-track {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: clamp(22px, 3vw, 36px);
  scroll-snap-type: inline mandatory;
  scrollbar-color: color-mix(in oklch, var(--google-blue) 50%, var(--google-line)) transparent;
  scrollbar-width: thin;
  touch-action: pan-x;
}

.site-shell .google-review-track:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: -3px;
}

.site-shell .google-review-card {
  display: flex;
  min-height: 208px;
  flex: 0 0 clamp(258px, 28vw, 310px);
  flex-direction: column;
  border-right: 1px solid var(--google-line);
  padding: 20px clamp(20px, 2.2vw, 26px) 22px;
  scroll-snap-align: start;
}

.site-shell .google-review-card:first-child {
  margin-left: clamp(22px, 3vw, 36px);
}

.site-shell .google-review-card:last-child {
  margin-right: clamp(22px, 3vw, 36px);
}

.site-shell .google-review-card > header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
}

.site-shell .google-reviewer-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: oklch(99% 0.003 255);
  font-size: 1rem;
  font-weight: 600;
}

.site-shell .google-reviewer-avatar--blue { background: var(--google-blue); }
.site-shell .google-reviewer-avatar--red { background: var(--google-red); }
.site-shell .google-reviewer-avatar--green { background: var(--google-green); }
.site-shell .google-reviewer-avatar--yellow { background: oklch(68% 0.14 78); }

.site-shell .google-review-card header div {
  display: grid;
  min-width: 0;
}

.site-shell .google-review-card header strong {
  overflow: hidden;
  color: var(--google-ink);
  font-size: .9rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-shell .google-review-card header div span {
  color: var(--google-muted);
  font-size: .72rem;
}

.site-shell .google-card-mark {
  color: var(--google-blue);
  font: 700 1.1rem/1 Arial, sans-serif;
}

.site-shell .google-card-stars {
  margin-top: 20px;
  color: var(--google-star);
  font-size: 1rem;
  letter-spacing: .06em;
}

.site-shell .google-review-card blockquote {
  margin: 16px 0 21px;
  color: var(--google-ink);
}

.site-shell .google-review-card blockquote p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.55;
}

.site-shell .google-review-card > a {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--google-blue);
  font-size: .78rem;
  font-weight: 600;
}

.site-shell .google-review-card > a:hover span:first-child {
  text-decoration: underline;
  text-underline-offset: 3px;
}


.site-shell .review-link,
.site-shell .text-link,
.site-shell .menu-dish-trigger i,
.site-shell .menu-item span,
.site-shell .menu-dish-trigger b {
  color: var(--wine);
}

.site-shell .story {
  background: var(--coastal-paper);
}

.site-shell .story-image::after {
  border-color: var(--wine-light);
}

.site-shell .gallery {
  background: var(--coastal-mist);
}

.site-shell .gallery-rail {
  scrollbar-color: var(--wine) transparent;
}

.site-shell .gallery-frame:nth-child(2n) {
  margin-top: clamp(24px, 4vw, 64px);
}

.site-shell .coastal-reel {
  background: var(--coastal-ink);
}

.site-shell .reel-frame::after {
  background: color-mix(in oklch, var(--coastal-ink) 38%, transparent);
}

.site-shell .menu-section {
  background: var(--coastal-cream);
}

.site-shell .section-intro {
  margin-inline: auto;
  text-align: center;
}

.site-shell .section-intro p:not(.eyebrow) {
  margin-inline: auto;
}

.site-shell .menu-tabs {
  width: max-content;
  max-width: 100%;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: clamp(38px, 5vw, 68px);
}

.site-shell .tab.active {
  border-color: var(--wine);
  color: var(--wine-deep);
}

.site-shell .menu-group h3,
.site-shell .menu-dish-trigger strong {
  color: var(--coastal-ink);
}

.site-shell .menu-dish-trigger:hover strong {
  color: var(--wine);
}

.site-shell .events {
  background: var(--wine-deep);
}

.site-shell .events .eyebrow {
  color: var(--coastal-gold);
}

.site-shell .button--light {
  background: var(--wine-light);
  color: var(--coastal-paper);
  box-shadow: 0 5px 0 oklch(23% 0.065 8);
}

.site-shell .wave-divider--reverse {
  background-color: var(--coastal-mist);
}

.site-shell .about {
  background: var(--coastal-mist);
}

.site-shell > footer {
  background: var(--wine-deep);
  color: var(--coastal-paper);
}

.site-shell > footer address {
  color: color-mix(in oklch, var(--coastal-paper) 79%, transparent);
}

.site-shell .footer-hours {
  display: grid;
  gap: 2px;
  margin-top: 13px;
  color: var(--coastal-paper);
  font-size: .88rem;
  line-height: 1.55;
}

.site-shell > footer a:hover {
  color: var(--coastal-gold);
}

.site-shell .button--outline {
  border-color: var(--wine-light);
  background: transparent;
  box-shadow: none;
}

.site-shell .floating-whatsapp {
  position: fixed;
  z-index: 22;
  right: clamp(18px, 2.6vw, 38px);
  bottom: max(22px, calc(env(safe-area-inset-bottom) + 16px));
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid oklch(96% 0.015 150);
  border-radius: 50%;
  background: oklch(69% 0.19 151);
  color: oklch(98.5% 0.007 150);
  box-shadow: 0 8px 24px oklch(25% 0.05 151 / .28), 0 2px 7px oklch(25% 0.05 151 / .2);
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s cubic-bezier(.16, 1, .3, 1);
}

.site-shell .floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

.site-shell .floating-whatsapp:hover {
  background: oklch(63% 0.18 151);
  box-shadow: 0 11px 28px oklch(25% 0.05 151 / .32), 0 3px 8px oklch(25% 0.05 151 / .22);
  transform: translateY(-3px);
}

.site-shell .floating-whatsapp:active {
  transform: translateY(0) scale(.97);
}

/* Shared accent correction: public CTA red also appears in owner and POS chrome. */
.dashboard-nav {
  border-top: 4px solid var(--wine);
}

.dash-tab.active {
  background: var(--wine);
}

.dashboard .mini-action,
.dashboard .verify-deposit {
  border-color: color-mix(in oklch, var(--wine) 62%, var(--paper));
  color: var(--wine);
}

.dashboard .mini-action:hover,
.dashboard .verify-deposit:hover {
  border-color: var(--wine);
  background: color-mix(in oklch, var(--wine) 10%, var(--paper));
}

.pos-topbar {
  border-bottom-color: var(--pos-crimson);
}

@media (prefers-reduced-motion: no-preference) {
  html:not(.logo-flight-ready) .site-shell .brand {
    animation: pepez-mark-arrival .8s cubic-bezier(.22, 1, .36, 1) both;
  }

  html:not(.logo-flight-ready) .site-shell .hero-copy {
    animation: pepez-title-arrival .9s .12s cubic-bezier(.22, 1, .36, 1) both;
  }
}

@keyframes pepez-mark-arrival {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: none; }
}

@keyframes pepez-title-arrival {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .site-shell .site-header {
    min-height: 96px;
    grid-template-columns: 78px minmax(0, 1fr) 78px;
    gap: 10px;
  }

  .site-shell .brand img {
    height: 78px;
  }

  .site-shell .site-nav {
    gap: 10px 14px;
    font-size: .68rem;
  }

  .site-shell .google-review-layout {
    grid-template-columns: 1fr;
  }

  .site-shell .google-review-score {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--google-line);
  }
}

@media (max-width: 640px) {
  .site-shell .site-header {
    display: grid;
    min-height: 86px;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    grid-template-rows: 82px;
    gap: 6px;
    padding: 6px 12px;
  }

  .site-shell .brand,
  .site-shell .header-actions {
    grid-row: 1;
    align-self: center;
  }

  .site-shell .brand img {
    height: 72px;
  }

  .site-shell .nav-toggle {
    position: relative;
    z-index: 3;
    top: auto;
    right: auto;
    display: block;
    justify-self: end;
    border: 1px solid color-mix(in oklch, var(--coastal-paper) 52%, transparent);
    border-radius: 50%;
    background: var(--wine);
  }

  .site-shell .site-nav {
    position: absolute;
    top: 86px;
    right: 12px;
    left: 12px;
    display: none;
    width: auto;
    grid-template-columns: 1fr;
    gap: 3px;
    border: 1px solid color-mix(in oklch, var(--coastal-paper) 22%, transparent);
    background: var(--wine-deep);
    padding: 20px;
    text-shadow: none;
  }

  .site-shell .site-nav.open {
    display: grid;
    z-index: 5;
  }

  .site-shell .site-nav > a:not(.button),
  .site-shell .site-nav > .quiet-link {
    padding: 10px 0;
  }

  .site-shell .language-toggle {
    width: 100%;
    margin: 4px 0;
  }

  .site-shell .hero {
    min-height: 700px;
  }

  .site-shell .hero-media img {
    object-position: 54% center;
  }

  .site-shell .hero-copy {
    top: calc(49svh + clamp(158px, calc(40vw + 18px), 202px));
    right: 0;
    width: 100%;
  }

  .site-shell .hero-flight-mark {
    top: 49vh;
    top: 49svh;
    width: clamp(260px, 74vw, 340px);
  }

  .site-shell .hero-copy > .hero-location {
    max-width: none;
    margin: 0 auto;
    font-size: .88rem;
    letter-spacing: .24em;
  }

  .site-shell .hero-scroll {
    bottom: 22px;
  }

  .site-shell .google-reviews {
    padding: 58px 14px;
  }

  .site-shell .google-review-panel {
    border-radius: 10px;
  }

  .site-shell .google-review-brand {
    min-height: 60px;
    padding: 14px 20px;
  }

  .site-shell .google-review-score {
    padding: 30px 22px;
  }

  .site-shell .google-score-row {
    align-items: flex-end;
  }

  .site-shell .google-score-row > strong {
    font-size: 3.55rem;
  }

  .site-shell .google-review-feed-head {
    align-items: flex-end;
    padding-inline: 20px;
  }

  .site-shell .google-review-feed-head p {
    max-width: 28ch;
  }

  .site-shell .google-review-card {
    min-height: 208px;
    flex-basis: min(82vw, 300px);
  }

  .site-shell .google-review-card:first-child {
    margin-left: 20px;
  }

  .site-shell .google-review-card:last-child {
    margin-right: 20px;
  }

  .site-shell .floating-whatsapp {
    right: 15px;
    bottom: max(16px, calc(env(safe-area-inset-bottom) + 12px));
    width: 56px;
    height: 56px;
  }

  .site-shell .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }

  .site-shell .gallery-frame:nth-child(2n) {
    margin-top: 28px;
  }

  .site-shell .table-reserve {
    justify-self: center;
    margin: 0;
    transform: scale(.86);
  }

  .site-shell .table-reserve:hover { transform: scale(.86); }

  .reservation-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100svh - 16px);
    border-radius: 13px;
  }

  .reservation-modal {
    max-height: calc(100svh - 16px);
  }

  .reservation-modal-header {
    padding: 18px 66px 19px;
  }

  .reservation-modal-header h2 {
    font-size: 2rem;
  }

  .reservation-modal-header p:last-child {
    margin-top: 7px;
    font-size: .78rem;
  }

  .reservation-dialog-close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .reservation-progress li {
    display: grid;
    justify-items: center;
    gap: 5px;
    padding: 10px 5px;
    text-align: center;
  }

  .reservation-progress li > span {
    width: 25px;
    height: 25px;
    font-size: .68rem;
  }

  .reservation-progress b {
    font-size: .64rem;
  }

  .reservation-progress small {
    display: none;
  }

  .reservation-dialog .booking-experience {
    padding: 22px 18px 26px;
  }

  .reservation-dialog .booking-step-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    text-align: left;
  }

  .reservation-dialog .booking-step-head > div {
    min-width: 0;
    width: auto;
  }

  .reservation-dialog .booking-step-head > div:only-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .reservation-dialog .booking-step-head h3 {
    font-size: 1.55rem;
  }

  .reservation-dialog .booking-back {
    position: static;
    transform: none;
    max-width: 116px;
    padding: 7px 9px;
    font-size: .59rem;
    line-height: 1.25;
  }

  .reservation-dialog .booking-search-fields {
    grid-template-columns: 1fr;
  }

  .reservation-dialog .button.reservation-primary {
    width: 100%;
  }

  .reservation-dialog .booking-summary {
    grid-template-columns: 1fr 1fr;
  }

  .reservation-dialog .guest-floor-plan {
    min-height: 405px;
  }

  .reservation-dialog .booking-zone-tabs button {
    flex: 1 1 auto;
    text-align: center;
  }

  .reservation-dialog .booking-step-action {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .reservation-dialog .deposit-choice {
    padding: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-shell .brand,
  .site-shell .hero-copy {
    animation: none;
  }

  .site-shell .floating-whatsapp {
    transition: none;
  }

  .reservation-dialog[open] {
    animation: none;
  }
}
