/* Kavinė Mažulė Matilda — layout shell */

:root {
  --red: #c41e3a;
  --red-dark: #9e1830;
  --green: #2d6a4f;
  --green-light: #40916c;
  --cream: #f6f0e8;
  --cream-dark: #ebe2d4;
  --brown: #3d2c29;
  --brown-muted: #5c4a47;
  --text: #2a2220;
  --text-muted: #6b5e5a;
  --white: #f9f4ec;
  --white-rgb: 249, 244, 236;
  --shadow: 0 4px 24px rgba(61, 44, 41, 0.08);
  --shadow-lg: 0 12px 40px rgba(61, 44, 41, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-hero: "Merriweather", Georgia, serif;
  --max-w: 1120px;
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

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

a {
  color: var(--red);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--red-dark);
}

.container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

.page-shell {
  width: 100%;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(246, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header-h);
  overflow: visible;
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

.logo-link:focus {
  outline: none;
}

.logo-link:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
  border-radius: 6px;
}

.logo {
  height: 48px;
  width: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.nav-toggle {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: 0;
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}

.site-nav {
  display: none;
}

.site-nav.is-open {
  display: block;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-list a {
  display: block;
  padding: 0.6rem 0.5rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
}

.nav-list a:hover {
  background: var(--cream-dark);
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: visible;
  flex-shrink: 0;
}

.header-contact {
  position: relative;
  flex-shrink: 0;
}

.header-contact-pill {
  display: flex;
  align-items: center;
}

.header-contact-toggle {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.header-contact-icon {
  display: none;
  flex-shrink: 0;
  stroke: currentColor;
}

.header-contact-label {
  display: inline;
}

.header-contact-panel {
  position: absolute;
  right: calc(100% + 0.5rem);
  top: 50%;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  height: 2.25rem;
  padding: 0 0.65rem;
  white-space: nowrap;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(10px) scale(0.96);
  transform-origin: right center;
  transition:
    opacity 0.25s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.25s ease;
}

.header-contact.is-open .header-contact-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0) scale(1);
}

.header-contact-link {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  color: var(--brown);
  text-decoration: none;
  padding: 0;
  flex-shrink: 0;
  transition: color var(--transition);
}

.header-contact-link:hover {
  color: var(--red);
}

.header-contact-link--email {
  max-width: 9.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-contact-sep {
  flex-shrink: 0;
  align-self: stretch;
  width: 1px;
  margin: 0.35rem 0.15rem;
  background: var(--cream-dark);
  user-select: none;
}

.header-lang {
  flex-shrink: 0;
}

.header-lang-toggle {
  display: none;
}

.header-lang-pill {
  display: flex;
  align-items: center;
}

.lang-switcher {
  display: flex;
  gap: 2px;
  background: var(--cream-dark);
  padding: 3px;
  border-radius: 8px;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 0.35rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  color: var(--text-muted);
  font-family: inherit;
}

.lang-btn.is-active {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--brown);
  border-color: var(--cream-dark);
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
}

.hero-actions .btn-find {
  border-color: var(--green-light);
  color: var(--green-light);
  background: var(--white);
}

.hero-actions .btn-find:hover {
  border-color: #9a9a9a;
  color: #7a7a7a;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(130, 130, 130, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 720px);
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 34, 32, 0.92) 0%,
    rgba(42, 34, 32, 0.5) 45%,
    rgba(42, 34, 32, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-top: 4rem;
}

.eyebrow,
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin: 0 0 0.5rem;
}

.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.75);
}

.hero .eyebrow {
  color: #5dcc96;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
  filter: none;
}

.hero h1 {
  font-family: var(--font-hero);
  font-size: clamp(2.15rem, 7vw, 3.35rem);
  font-weight: 550;
  line-height: 1.1;
  margin: 0 0 0.4rem;
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 32rem;
  margin: 0 0 0.85rem;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags li {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Quick bar */
.quick-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1.25rem 0;
  margin-top: -1px;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.quick-card {
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
}

.quick-card--highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border: none;
  color: var(--white);
}

.quick-card--highlight .quick-label {
  color: rgba(255, 255, 255, 0.85);
}

.quick-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.quick-value {
  font-size: 1rem;
  font-weight: 700;
}

.quick-card--highlight .quick-value {
  font-size: 1.25rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section h2 {
  font-family: var(--font-hero);
  font-weight: 400;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--brown);
  margin: 0 0 0.65rem;
}

.section-divider {
  width: 2.75rem;
  height: 1px;
  background: rgba(61, 44, 41, 0.22);
  margin: 0 0 0.65rem;
}

.section-divider--light {
  background: rgba(255, 255, 255, 0.35);
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0 0 2rem;
}

.section-lead--light {
  color: rgba(255, 255, 255, 0.88);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Lunch */
.lunch {
  background: var(--white);
  padding-top: 2.25rem;
}

.lunch .section-eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.about .section-eyebrow,
.events .section-eyebrow,
.gallery .section-eyebrow,
.find .section-eyebrow,
.reviews .section-eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  margin-top: -0.75rem;
  margin-bottom: 0.85rem;
}

.about,
.events,
.find {
  padding-top: 2.35rem;
}

.reviews {
  padding-top: 1.75rem;
  padding-bottom: 2rem;
}

.lunch-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.lunch-price {
  font-family: var(--font-sans);
  font-size: clamp(3.5rem, 10vw, 5rem);
  line-height: 1;
  color: var(--red);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
}

.lunch-price-eur {
  margin-left: 0.06em;
}

.lunch-price-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--red);
  margin: -0.5rem 0 0rem;
}

.lunch .section-lead {
  margin-bottom: 0.75rem;
}

.lunch-includes {
  list-style: none;
  margin: -0.25rem 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.lunch-includes li {
  padding-left: 1.75rem;
  position: relative;
  font-weight: 500;
}

.lunch-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

.lunch-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0;
}

.lunch-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.lunch-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lunch-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  max-width: calc(100% - 2.5rem);
  background: rgba(var(--white-rgb), 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  text-align: left;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--red);
}

.lunch-badge-label {
  margin: 0 0 0.15rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.lunch-badge-time {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.02em;
}

.lunch-badge-divider {
  height: 1px;
  margin: 0.55rem 0 0.5rem;
  background: var(--cream-dark);
}

.lunch-badge-price {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1;
  color: var(--red);
  display: inline-flex;
  align-items: baseline;
  font-variant-numeric: tabular-nums;
}

.lunch-badge-note {
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.3;
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-copy p {
  margin: 0 0 0.85rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.about-list li {
  padding-left: 1.5rem;
  position: relative;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.about-figure {
  margin: 0;
}

.about-stack-trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  position: relative;
}

.about-stack-trigger:focus-visible .about-stack-overlay {
  outline: 3px solid var(--green-light);
  outline-offset: 2px;
}

.about-stack {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  min-height: 260px;
  padding: 1.25rem 1.75rem 1.65rem 1rem;
}

.about-stack__card {
  position: absolute;
  top: 0.75rem;
  left: 0.5rem;
  right: 1rem;
  bottom: 1.25rem;
  width: calc(100% - 1.5rem);
  height: calc(100% - 2rem);
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  user-select: none;
  transition: transform 0.35s ease;
}

.about-stack-overlay {
  position: absolute;
  top: 0.75rem;
  left: 0.5rem;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s ease;
  pointer-events: none;
}

.about-stack-trigger:hover .about-stack-overlay,
.about-stack-trigger:focus-visible .about-stack-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.about-stack-hint {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  padding: 0 1rem;
  line-height: 1.35;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.about-stack-trigger:hover .about-stack-hint,
.about-stack-trigger:focus-visible .about-stack-hint {
  opacity: 1;
}

.about-stack__card--4 {
  z-index: 1;
  transform: rotate(-14deg) translate(-22px, 14px) scale(0.82);
  opacity: 0.7;
}

.about-stack__card--3 {
  z-index: 2;
  transform: rotate(11deg) translate(24px, -16px) scale(0.86);
  opacity: 0.78;
}

.about-stack__card--2 {
  z-index: 3;
  transform: rotate(-8deg) translate(-14px, -18px) scale(0.9);
  opacity: 0.85;
}

.about-stack__card--1 {
  z-index: 4;
  transform: rotate(6deg) translate(16px, 10px) scale(0.94);
  opacity: 0.92;
}

.about-stack__card--front {
  z-index: 5;
  transform: rotate(0deg);
  opacity: 1;
}

.about-stack-trigger:hover .about-stack__card--front,
.about-stack-trigger:focus-visible .about-stack__card--front {
  transform: rotate(-1deg) translateY(-2px);
}

.about-stack-trigger:hover .about-stack__card--1,
.about-stack-trigger:focus-visible .about-stack__card--1 {
  transform: rotate(8deg) translate(20px, 12px) scale(0.96);
}

.about-stack-trigger:hover .about-stack__card--2,
.about-stack-trigger:focus-visible .about-stack__card--2 {
  transform: rotate(-10deg) translate(-18px, -22px) scale(0.92);
}

.about-stack-trigger:hover .about-stack__card--3,
.about-stack-trigger:focus-visible .about-stack__card--3 {
  transform: rotate(13deg) translate(28px, -18px) scale(0.88);
}

.about-stack-trigger:hover .about-stack__card--4,
.about-stack-trigger:focus-visible .about-stack__card--4 {
  transform: rotate(-16deg) translate(-26px, 18px) scale(0.8);
}

/* Events */
.events {
  background: rgba(61, 44, 41, 0.45);
  color: var(--white);
}

.events h2 {
  color: var(--white);
}

.events-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.event-card {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.event-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.event-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.event-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.events-extra {
  color: rgba(255, 255, 255, 0.85);
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

/* Gallery */
.gallery {
  background: var(--cream-dark);
  padding-top: 1.5rem;
}

.gallery > .container {
  text-align: center;
}

.gallery .section-eyebrow {
  display: inline-block;
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
}

.gallery h2 {
  margin-inline: auto;
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.gallery .section-divider {
  width: min(11rem, 72%);
  height: 1px;
  margin-inline: auto;
  margin-bottom: 0.5rem;
  background: none;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(61, 44, 41, 0.32) 0,
    rgba(61, 44, 41, 0.32) 5px,
    transparent 5px,
    transparent 9px
  );
}

.gallery .section-lead {
  margin-inline: auto;
  margin-bottom: 0.65rem;
  text-align: center;
}

.gallery-carousel-wrap {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding-inline: clamp(0.5rem, 2vw, 1.25rem);
}

.gallery-carousel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 1400px;
  margin-inline: auto;
}

.gallery-carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.gallery-track {
  list-style: none;
  margin: 0;
  padding: 0.15rem 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  width: max-content;
}

.gallery-track li {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.gallery-item {
  display: block;
  width: clamp(220px, 50vw, 300px);
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--brown);
  transition: transform var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.gallery-item img {
  width: 100%;
  height: clamp(165px, 32vw, 240px);
  object-fit: cover;
  display: block;
}

.gallery-carousel__btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition:
    background var(--transition),
    color var(--transition),
    opacity var(--transition);
}

.gallery-carousel__btn:hover:not(:disabled) {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.gallery-carousel__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.gallery-carousel__btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.gallery-carousel__icon {
  display: block;
  flex-shrink: 0;
}

/* Find */
.find-lead {
  margin: 0 0 1rem;
  max-width: 40rem;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--brown);
  letter-spacing: 0.01em;
}

.find-lead__sep {
  font-weight: 500;
  color: var(--brown-muted);
}

.find-grid {
  display: grid;
  gap: 1.5rem;
}

.find-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: var(--radius);
  background: var(--cream-dark);
}

.map-placeholder-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.find-video-caption {
  display: none;
}

.find-video {
  aspect-ratio: 9 / 16;
  width: min(100%, 300px);
  max-height: 540px;
  margin-inline: auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--brown);
  margin-bottom: 1.25rem;
}

.find-video__player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
}

.find-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.find-actions .btn {
  width: auto;
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
}

/* Reviews */
.reviews > .container {
  text-align: center;
}

.reviews .section-eyebrow {
  display: inline-block;
}

.reviews h2 {
  margin-inline: auto;
}

.reviews .section-divider {
  width: min(11rem, 72%);
  height: 1px;
  margin-inline: auto;
  background: none;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(61, 44, 41, 0.32) 0,
    rgba(61, 44, 41, 0.32) 5px,
    transparent 5px,
    transparent 9px
  );
}

.reviews .section-lead {
  margin-inline: auto;
  text-align: center;
}

.reviews-summary {
  margin: -0.35rem auto 1rem;
  text-align: center;
  font-family: var(--font-hero);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brown);
}

.reviews-scroll-view {
  position: relative;
  margin-bottom: 1.5rem;
}

.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 1400px;
  margin-inline: auto;
}

.reviews-carousel__viewport {
  flex: 1;
  min-width: 0;
}

.reviews-placeholder {
  display: grid;
  gap: 1rem;
  margin-bottom: 0;
}

.review-card {
  background: var(--white);
  border: 1px dashed var(--cream-dark);
  border-radius: var(--radius);
  padding: 1rem 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
}

.review-card:not(.review-card--expanded) {
  min-height: 12.75rem;
}

.review-stars {
  color: #f4b400;
  margin-bottom: 0.1rem;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 3px;
  flex-shrink: 0;
}

.review-date {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--brown-muted);
}

.review-body {
  min-width: 0;
  flex: 1 1 auto;
  position: relative;
  padding-bottom: 1.3rem;
}

.review-text {
  margin: 0;
  line-height: 1.6;
  min-height: calc(1.6em * 4);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.review-card--expanded {
  min-height: auto;
}

.review-card--expanded .review-body {
  padding-bottom: 0;
}

.review-card--expanded .review-text {
  display: block;
  min-height: 0;
  -webkit-line-clamp: unset;
  overflow: visible;
  margin-bottom: 0;
}

.review-card--expanded .review-read-more {
  position: static;
  transform: none;
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  text-align: center;
}

.review-read-more {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: inline-block;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.review-read-more:hover {
  color: var(--red-dark);
}

.review-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: auto;
  flex-shrink: 0;
  padding-top: 0.35rem;
}

.reviews-cta {
  display: inline-flex;
  margin-top: 0.25rem;
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.65rem;
}

.reviews-attribution {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  margin-bottom: 0;
}

.reviews-scroll-hint {
  display: none;
}

@keyframes reviews-scroll-hint-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

.review-card--skeleton p {
  background: rgba(0, 0, 0, 0.06);
  min-height: 3rem;
  border-radius: 4px;
}

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
  padding: 1rem 0 0.65rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0.4rem;
}

.footer-brand-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer-brand-tagline {
  margin: 0;
  font-size: 0.75rem;
  font-style: italic;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.footer-contact {
  font-style: normal;
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

.footer-contact-line {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.footer-contact-line a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-line a:hover {
  color: var(--green-light);
}

.footer-contact-dot {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.footer-contact-address {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.6);
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  height: 3.25rem;
  box-sizing: border-box;
  background: rgba(var(--white-rgb), 0.35);
  border-radius: var(--radius);
  border: none;
  box-shadow: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow: visible;
}

.footer-bottom {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.footer-logo {
  height: 38px;
  width: auto;
  display: block;
  transform: scale(1.15);
  transform-origin: center center;
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.lang-switcher--footer {
  background: var(--cream-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  padding: 1px;
  border-radius: 5px;
  gap: 1px;
}

.lang-switcher--footer .lang-btn {
  color: var(--text-muted);
  padding: 0.15rem 0.35rem;
  font-size: 0.625rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.lang-switcher--footer .lang-btn.is-active {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

/* Lightbox */
.lightbox {
  border: none;
  padding: 0;
  width: min(96vw, 1100px);
  max-width: none;
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

.lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2.5rem 0.5rem 3rem;
}

.lightbox-viewport {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}

/* Fixed 16:9 slot — positions nav; border wraps the image only */
.lightbox-frame {
  width: min(min(82vw, 960px), calc(78vh * 16 / 9));
  aspect-ratio: 16 / 9;
  max-height: 78vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  box-sizing: border-box;
}

.lightbox-frame img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border: 0.75px solid var(--red);
  border-radius: var(--radius);
  box-sizing: border-box;
  user-select: none;
}

.lightbox--cover .lightbox-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  color: var(--green);
}

.lightbox-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(var(--white-rgb), 0.92);
  color: var(--brown);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.lightbox-nav:hover {
  background: var(--white);
  color: var(--red);
}

.lightbox-counter {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --header-h: 56px;
    --header-safe: env(safe-area-inset-top, 0px);
    --header-layout-top: calc(var(--header-h) + var(--header-safe));
    --header-vv-top: 0px;
    --page-pad-left: 0.625rem;
    --page-pad-right: 1rem;
    --header-flyout-ease: cubic-bezier(0.32, 0.72, 0, 1);
    --header-flyout-duration: 0.38s;
  }

  html {
    scroll-behavior: auto;
    scroll-padding-top: calc(var(--header-layout-top) + 1rem);
    overflow-x: hidden;
    width: 100%;
    overscroll-behavior-x: none;
  }

  body {
    padding-top: var(--header-layout-top);
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    position: relative;
    overscroll-behavior-x: none;
  }

  .page-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
  }

  main,
  .section {
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: var(--page-pad-left);
    padding-right: var(--page-pad-right);
    margin-inline: 0;
    box-sizing: border-box;
  }

  .quick-grid,
  .lunch-grid,
  .about-grid,
  .events-grid,
  .find-grid,
  .lunch-copy,
  .lunch-visual,
  .about-copy,
  .about-figure,
  .find-map,
  .find-side,
  .reviews-scroll-view {
    min-width: 0;
    max-width: 100%;
  }

  .quick-card,
  .event-card,
  .review-card {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .quick-value,
  .quick-label,
  .section h2,
  .section-lead,
  .lunch .section-lead,
  .find-lead,
  .events .section-lead--light,
  .events-extra,
  .reviews .section-lead,
  .about-copy p,
  .about-list li,
  .map-placeholder-note {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .lunch-visual,
  .lunch-photo {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .about-figure,
  .about-stack-trigger,
  .about-stack {
    width: 100%;
    max-width: 100%;
  }

  .find-map {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
  }

  .find-map iframe {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .find-actions .btn {
    white-space: normal;
    min-width: 0;
  }

  .reviews > .container {
    width: 100%;
    box-sizing: border-box;
  }

  .reviews-scroll-view,
  .reviews-placeholder {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .gallery-carousel {
    max-width: 100%;
    overflow: hidden;
  }

  /* Fixed + visual-viewport top: stays aligned when mobile browser chrome resizes */
  .site-header {
    position: fixed;
    top: calc(var(--header-vv-top) + var(--header-safe));
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: var(--header-h);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
    overflow-x: clip;
    z-index: 200;
  }

  .header-inner {
    height: var(--header-h);
    overflow-x: clip;
  }

  .site-nav.is-open {
    top: var(--header-h);
  }

  /* No blue tap / click focus ring on touch (keyboard keeps :focus-visible below) */
  a,
  button,
  .btn,
  input,
  select,
  textarea,
  summary,
  .gallery-carousel__viewport,
  .header-contact-link,
  .lang-btn,
  .nav-toggle,
  .header-lang-toggle,
  .header-contact-toggle,
  .gallery-item,
  .gallery-carousel__btn,
  .about-stack-trigger,
  .lightbox-close,
  .lightbox-nav,
  .lightbox button,
  .skip-link {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
  }

  a:focus:not(:focus-visible),
  button:focus:not(:focus-visible),
  .btn:focus:not(:focus-visible),
  input:focus:not(:focus-visible),
  select:focus:not(:focus-visible),
  textarea:focus:not(:focus-visible),
  summary:focus:not(:focus-visible),
  .gallery-carousel__viewport:focus:not(:focus-visible),
  .header-contact-link:focus:not(:focus-visible),
  .lang-btn:focus:not(:focus-visible),
  .nav-toggle:focus:not(:focus-visible),
  .header-lang-toggle:focus:not(:focus-visible),
  .header-contact-toggle:focus:not(:focus-visible),
  .gallery-item:focus:not(:focus-visible),
  .gallery-carousel__btn:focus:not(:focus-visible),
  .about-stack-trigger:focus:not(:focus-visible),
  .lightbox-close:focus:not(:focus-visible),
  .lightbox-nav:focus:not(:focus-visible),
  .skip-link:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
  }

  a:focus-visible,
  button:focus-visible,
  .btn:focus-visible,
  .gallery-carousel__viewport:focus-visible,
  .header-contact-link:focus-visible,
  .lang-btn:focus-visible,
  .nav-toggle:focus-visible,
  .header-lang-toggle:focus-visible,
  .header-contact-toggle:focus-visible,
  .skip-link:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
  }

  /* Touch: no stuck hover/focus “pressed” look after tap */
  @media (hover: none) {
    a:hover,
    a:focus {
      color: var(--red);
    }

    .nav-list a:hover,
    .nav-list a:focus {
      background: transparent;
      color: var(--text);
    }

    .header-contact-link:hover,
    .header-contact-link:focus {
      color: var(--brown);
    }

    .header-lang-toggle:hover,
    .header-lang-toggle:focus {
      color: var(--red);
    }

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active {
      background: var(--red);
      border-color: var(--red);
      color: var(--white);
      box-shadow: none;
    }

    .header-contact-toggle.btn-primary:hover,
    .header-contact-toggle.btn-primary:focus,
    .header-contact-toggle.btn-primary:active {
      background: var(--red);
      border: none;
      color: var(--white);
      transform: scale(1);
    }

    .btn-secondary:hover,
    .btn-secondary:focus,
    .btn-secondary:active {
      background: var(--white);
      border-color: var(--cream-dark);
      color: var(--brown);
    }

    .hero-actions .btn-find:hover,
    .hero-actions .btn-find:focus,
    .hero-actions .btn-find:active {
      border-color: var(--green-light);
      color: var(--green-light);
      background: var(--white);
      box-shadow: none;
    }

    .btn-ghost:hover,
    .btn-ghost:focus,
    .btn-ghost:active {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.5);
    }

    .gallery-item:hover,
    .gallery-item:focus {
      transform: none;
    }

    .gallery-carousel__btn:hover:not(:disabled),
    .gallery-carousel__btn:focus {
      background: rgba(var(--white-rgb), 0.94);
      color: var(--green);
      border-color: rgba(64, 145, 108, 0.28);
    }

    .lightbox-nav:hover,
    .lightbox-nav:focus {
      background: rgba(var(--white-rgb), 0.92);
      color: var(--brown);
    }

    .lightbox-close:hover,
    .lightbox-close:focus {
      background: rgba(var(--white-rgb), 0.92);
      color: var(--green-dark);
    }

    .footer-contact-line a:hover,
    .footer-contact-line a:focus {
      color: rgba(255, 255, 255, 0.92);
    }

    a:focus-visible,
    button:focus-visible,
    .btn:focus-visible,
    .gallery-carousel__viewport:focus-visible,
    .header-contact-link:focus-visible,
    .lang-btn:focus-visible,
    .nav-toggle:focus-visible,
    .header-lang-toggle:focus-visible,
    .header-contact-toggle:focus-visible,
    .gallery-item:focus-visible,
    .gallery-carousel__btn:focus-visible,
    .about-stack-trigger:focus-visible,
    .lightbox-close:focus-visible,
    .lightbox-nav:focus-visible,
    .skip-link:focus-visible {
      outline: none;
      box-shadow: none;
    }
  }

  .logo {
    height: 40px;
  }

  .site-header .header-inner {
    gap: 0.2rem;
    padding-right: 0.75rem;
  }

  .header-actions {
    display: contents;
  }

  .header-lang {
    order: 1;
    position: relative;
    flex: 0 0 2.65rem;
    width: 2.65rem;
    height: 2.65rem;
    z-index: 1;
    overflow: hidden;
  }

  .logo-link {
    order: 2;
    flex: 1;
    min-width: 0;
    justify-content: center;
    transform: none;
    padding: 0 0 0 0.85rem;
  }

  .logo-link:focus-visible {
    outline-offset: 3px;
  }

  .header-contact {
    order: 3;
    position: relative;
    flex: 0 0 2rem;
    width: 2rem;
    height: 2rem;
    margin-left: auto;
    margin-right: -0.1rem;
    overflow: visible;
    z-index: 2;
    transform: none;
  }

  .nav-toggle {
    order: 4;
    position: relative;
    z-index: 110;
    margin-left: 0;
    margin-right: 0.25rem;
    padding: 0.4rem 0.3rem 0.4rem 0.45rem;
    flex-shrink: 0;
  }

  .site-nav {
    order: 4;
  }

  .site-nav.is-open {
    z-index: 105;
    padding: 0.35rem 0.85rem 0.28rem;
  }

  .site-nav.is-open .nav-list li:last-child a {
    padding-bottom: 0.28rem;
  }

  .site-nav.is-open .nav-list {
    gap: 0;
  }

  .site-nav.is-open .nav-list a {
    padding: 0.38rem 0.4rem;
    border-radius: 6px;
  }

  .site-nav.is-open .nav-list li + li {
    border-top: 1px solid var(--cream-dark);
    margin-top: 0.18rem;
    padding-top: 0.18rem;
  }

  .header-lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: auto;
    height: auto;
    padding: 0.15rem;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--red);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    transition:
      color var(--transition),
      opacity 0.22s ease,
      transform 0.28s var(--header-flyout-ease);
  }

  .header-lang-toggle:hover {
    color: var(--red-dark);
  }

  .header-lang-icon {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(22%) sepia(79%) saturate(2476%) hue-rotate(334deg)
      brightness(92%) contrast(95%);
  }

  .header-lang-pill {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 30;
    display: flex;
    align-items: center;
    height: 2.65rem;
    max-width: 2.65rem;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    clip-path: inset(0 calc(100% - 2.65rem) 0 0 round 999px);
    transform: translateY(-50%);
    transition:
      max-width var(--header-flyout-duration) var(--header-flyout-ease),
      clip-path var(--header-flyout-duration) var(--header-flyout-ease),
      background 0.28s ease,
      border-color 0.28s ease,
      box-shadow 0.28s ease;
  }

  .header-lang.is-open {
    z-index: 42;
    overflow: visible;
  }

  .header-lang.is-open .header-lang-pill {
    max-width: min(8.75rem, 46vw);
    padding: 0 0.25rem;
    background: var(--white);
    border-color: var(--cream-dark);
    box-shadow: var(--shadow);
    clip-path: inset(0 0 0 0 round 999px);
  }

  .header-lang.is-open .header-lang-toggle {
    opacity: 0;
    transform: scale(0.82);
    pointer-events: none;
    position: absolute;
    width: 2.65rem;
    height: 2.65rem;
  }

  .header-lang-panel {
    flex-shrink: 0;
    padding: 2px;
    opacity: 0;
    transform: translateX(-6px);
    pointer-events: none;
    background: transparent;
    transition:
      opacity 0.26s ease,
      transform 0.32s var(--header-flyout-ease);
  }

  .header-lang.is-open .header-lang-panel {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    transition-delay: 0.1s;
  }

  .header-lang-panel .lang-btn {
    padding: 0.28rem 0.42rem;
    font-size: 0.65rem;
  }

  .header-contact-icon {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin: 0;
    color: var(--white);
    transform: none;
  }

  .header-contact-label {
    display: none;
  }

  .header-contact-pill {
    position: absolute;
    right: 0;
    left: auto;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    max-width: 2rem;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    clip-path: inset(0 0 0 0 round 999px);
    transform: translateY(-50%);
    transition:
      max-width var(--header-flyout-duration) var(--header-flyout-ease),
      width var(--header-flyout-duration) var(--header-flyout-ease),
      clip-path var(--header-flyout-duration) var(--header-flyout-ease),
      background 0.28s ease,
      border-color 0.28s ease,
      box-shadow 0.28s ease;
  }

  .header-contact:not(.is-open) .header-contact-panel {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    flex: 0 0 0;
    padding: 0;
    margin: 0;
    border: 0;
    transform: none;
  }

  .header-contact.is-open {
    z-index: 43;
    overflow: visible;
  }

  .header-contact.is-open .header-contact-pill {
    justify-content: flex-start;
    width: auto;
    max-width: min(calc(100vw - 4.5rem), 19.5rem);
    padding: 0 0.4rem;
    background: var(--white);
    border-color: var(--cream-dark);
    box-shadow: var(--shadow);
    clip-path: inset(0 0 0 0 round 999px);
  }

  .header-contact-toggle.btn-primary {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    min-height: 2rem;
    padding: 0;
    border: none;
    line-height: 0;
    font-size: 0;
    border-radius: 50%;
    aspect-ratio: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    color: var(--white);
    background: var(--red);
    box-shadow: none;
    opacity: 1;
    transform: scale(1);
    transition:
      opacity 0.22s ease,
      transform 0.28s var(--header-flyout-ease);
  }

  .header-contact.is-open .header-contact-toggle.btn-primary {
    opacity: 0;
    transform: scale(0.82);
    pointer-events: none;
    position: absolute;
    right: 0;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    min-height: 2rem;
  }

  .header-contact-panel {
    position: static;
    right: auto;
    top: auto;
    z-index: auto;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    width: max-content;
    max-width: 0;
    min-width: 0;
    height: 2rem;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: translateX(8px);
    transform-origin: right center;
    transition:
      opacity 0.26s ease,
      transform 0.32s var(--header-flyout-ease),
      max-width 0.32s var(--header-flyout-ease);
  }

  .header-contact.is-open .header-contact-panel {
    position: static;
    width: max-content;
    height: 2rem;
    visibility: visible;
    max-width: min(calc(100vw - 5.5rem), 17.5rem);
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0.1s;
  }

  .header-contact-link {
    font-size: 0.625rem;
  }

  .header-contact-link--email {
    max-width: none;
    overflow: visible;
    text-overflow: unset;
  }

  .header-contact-panel .header-contact-sep {
    margin: 0.2rem 0.05rem;
  }

  .hero {
    min-height: min(58vh, 400px);
    padding-bottom: 1.15rem;
  }

  .hero-media {
    overflow: hidden;
    background: #2a2220;
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transform: scale(1);
    transform-origin: center center;
  }

  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(42, 34, 32, 0.92) 0%,
      rgba(42, 34, 32, 0.5) 45%,
      rgba(42, 34, 32, 0.25) 100%
    );
  }

  .hero-content {
    padding-top: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 7.5vw, 2.2rem);
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 0.6rem;
  }

  .hero-actions {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .hero-actions .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .hero-tags {
    gap: 0.35rem;
  }

  .hero-tags li {
    font-size: 0.7rem;
    padding: 0.28rem 0.55rem;
  }

  .quick-bar {
    padding: 0.55rem 0;
  }

  .quick-grid {
    gap: 0.4rem;
  }

  .quick-card {
    padding: 0.5rem 0.65rem;
  }

  .quick-label {
    font-size: 0.65rem;
    margin-bottom: 0.1rem;
    line-height: 1.2;
  }

  .quick-value {
    font-size: 0.8125rem;
    line-height: 1.25;
  }

  .quick-card--highlight .quick-value {
    font-size: 0.9375rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section h2 {
    font-size: clamp(1.4rem, 5.2vw, 1.7rem);
  }

  .section-lead {
    font-size: 0.975rem;
    line-height: 1.55;
    margin-bottom: 1.15rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .lunch {
    padding-top: 1.75rem;
  }

  .lunch .section-eyebrow,
  .about .section-eyebrow,
  .events .section-eyebrow,
  .gallery .section-eyebrow,
  .find .section-eyebrow,
  .reviews .section-eyebrow {
    margin-top: -0.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.875rem;
  }

  .lunch-grid {
    gap: 1.35rem;
  }

  .lunch-price {
    font-size: clamp(2.5rem, 11vw, 3.25rem);
  }

  .lunch-price-text {
    font-size: 1rem;
    margin-top: -0.35rem;
  }

  .lunch-badge {
    bottom: 0.75rem;
    left: 0.65rem;
    right: auto;
    width: fit-content;
    max-width: min(11.5rem, 58%);
    padding: 0.55rem 0.7rem;
  }

  .lunch-badge-price {
    font-size: 1.6rem;
  }

  .lunch-badge-time {
    font-size: 0.8125rem;
  }

  .lunch-badge-note {
    font-size: 0.7rem;
  }

  .lunch-badge-divider {
    margin: 0.4rem 0 0.35rem;
  }

  .lunch-includes li {
    font-size: 0.9rem;
    padding-left: 1.15rem;
  }

  .about,
  .events,
  .find {
    padding-top: 1.5rem;
  }

  .about {
    padding-bottom: 1rem;
  }

  .find {
    padding-bottom: 1.35rem;
  }

  .gallery {
    padding-top: 1.15rem;
    padding-bottom: 1rem;
  }

  .reviews {
    padding-top: 0.65rem;
    padding-bottom: 1.65rem;
    margin-top: -0.35rem;
  }

  .about-grid {
    gap: 0.85rem;
  }

  .about-copy p {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
  }

  .about-list {
    margin-top: 1rem;
    gap: 0.4rem;
  }

  .about-list li {
    font-size: 0.9rem;
    padding-left: 0.95rem;
  }

  .about.about,
  .about .about-grid,
  .about .about-figure,
  .about .about-stack-trigger,
  .about .about-stack {
    overflow: visible;
  }

  .about-figure {
    margin-inline: auto;
    margin-bottom: 0;
    width: min(92%, 20.5rem);
    max-width: 100%;
    padding: 0.5rem 1rem 0.15rem;
  }

  .about-stack-trigger {
    display: block;
    width: 100%;
    overflow: visible;
  }

  .about-stack {
    min-height: 0;
    max-height: 228px;
    aspect-ratio: 4 / 3;
    padding: 0.35rem 0.15rem;
    overflow: visible;
    border-radius: 0;
  }

  .about-stack__card,
  .about-stack-overlay {
    top: 0.3rem;
    left: 0.35rem;
    right: 0.35rem;
    bottom: 0.3rem;
    width: calc(100% - 0.7rem);
    height: calc(100% - 0.6rem);
  }

  .about-stack__card {
    border-width: 2px;
  }

  .about-stack-overlay {
    background: rgba(0, 0, 0, 0.5);
  }

  .about-stack-hint {
    font-size: 0.85rem;
    opacity: 1;
  }

  .about-stack__card--front {
    transform: rotate(-1deg) translateY(-2px);
  }

  .about-stack__card--1 {
    transform: rotate(6deg) translate(12px, 8px) scale(0.96);
  }

  .about-stack__card--2 {
    transform: rotate(-6deg) translate(-11px, -13px) scale(0.93);
  }

  .about-stack__card--3 {
    transform: rotate(7deg) translate(14px, -10px) scale(0.9);
  }

  .about-stack__card--4 {
    transform: rotate(-8deg) translate(-13px, 10px) scale(0.87);
  }

  .events {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
  }

  .events .section-lead--light {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 0.9rem;
  }

  .events-grid {
    gap: 0.6rem;
    margin-bottom: 0.9rem;
  }

  .event-card {
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
  }

  .event-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 0.45rem;
  }

  .event-card h3 {
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
    line-height: 1.25;
  }

  .event-card p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .events-extra {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 0.85rem;
    max-width: 100%;
  }

  .events-grid {
    width: 100%;
  }

  .events .btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }

  .gallery .section-lead {
    margin-bottom: 0.55rem;
  }

  .gallery-carousel-wrap {
    padding-left: var(--page-pad-left);
    padding-right: var(--page-pad-right);
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .gallery-carousel {
    position: relative;
    display: block;
    gap: 0;
  }

  .gallery-carousel__viewport {
    width: 100%;
    touch-action: pan-x pan-y;
  }

  .gallery-track {
    padding-top: 0.1rem;
    padding-bottom: 0;
  }

  .gallery-item {
    width: clamp(200px, 82vw, 300px);
    cursor: default;
    pointer-events: none;
  }

  .gallery-item:hover {
    transform: none;
  }

  .gallery-item img {
    height: clamp(145px, 54vw, 200px);
  }

  .gallery-carousel__btn {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 38px;
    height: 38px;
    margin: 0;
    transform: translateY(-50%);
    color: var(--green);
    background: rgba(var(--white-rgb), 0.94);
    border-color: rgba(64, 145, 108, 0.28);
    box-shadow: 0 2px 12px rgba(61, 44, 41, 0.18);
  }

  .gallery-carousel__btn--prev {
    left: 0.45rem;
  }

  .gallery-carousel__btn--next {
    right: 0.45rem;
  }

  .gallery-carousel__icon {
    width: 14px;
    height: 14px;
  }

  .find-lead {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 0.85rem;
    max-width: 100%;
  }

  .find-grid {
    gap: 0.55rem;
  }

  .find-map iframe {
    height: 210px;
  }

  .find-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: -0.15rem;
  }

  .find-actions {
    order: 1;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 0 0.45rem;
    gap: 0.4rem;
  }

  .find-video-caption {
    order: 2;
    display: block;
    width: fit-content;
    max-width: min(100%, 240px);
    margin: 0 auto 0.4rem;
    padding: 0.42rem 0.85rem;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: var(--green);
    background: linear-gradient(
      180deg,
      rgba(64, 145, 108, 0.12) 0%,
      rgba(64, 145, 108, 0.05) 100%
    );
    border: 1px solid rgba(64, 145, 108, 0.22);
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(61, 44, 41, 0.06);
  }

  .find-video {
    order: 3;
    width: min(100%, 220px);
    max-height: 390px;
    margin: 0 auto 0;
  }

  .find-actions .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }

  .reviews .section-lead {
    margin-bottom: 0.65rem;
    max-width: 100%;
    padding-inline: 0;
  }

  .reviews-summary {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }

  .reviews-scroll-view {
    margin-bottom: 0.25rem;
    margin-inline: auto;
    padding-bottom: 0.15rem;
  }

  .reviews-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    position: relative;
    z-index: 2;
    margin: 0.15rem 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--brown-muted);
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .reviews-scroll-hint__icon {
    flex-shrink: 0;
    color: var(--red);
    animation: reviews-scroll-hint-bounce 1.5s ease-in-out infinite;
  }

  .reviews-scroll-view--scrolled .reviews-scroll-hint,
  .reviews-scroll-view--at-end .reviews-scroll-hint,
  .reviews-scroll-view:not(.reviews-scroll-view--can-scroll) .reviews-scroll-hint {
    opacity: 0;
    visibility: hidden;
  }

  .reviews-carousel {
    display: block;
  }

  .reviews-carousel__btn--prev,
  .reviews-carousel__btn--next {
    display: none;
  }

  .reviews-carousel__viewport {
    overflow: visible;
    width: 100%;
  }

  .reviews-cta {
    margin-top: 0;
  }

  .reviews-placeholder {
    --reviews-stack-gap: 0.65rem;
    display: flex;
    flex-direction: column;
    gap: var(--reviews-stack-gap);
    max-height: min(15.5rem, 46vh);
    margin-right: 0.15rem;
    padding: 0.35rem 0.45rem 0.5rem 0.15rem;
    border: 1px solid rgba(61, 44, 41, 0.14);
    border-radius: calc(var(--radius) + 2px);
    background: rgba(255, 255, 255, 0.35);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: none;
    scrollbar-width: auto;
    scrollbar-color: rgba(196, 30, 58, 0.45) rgba(61, 44, 41, 0.08);
  }

  .reviews-placeholder::-webkit-scrollbar {
    width: 7px;
  }

  .reviews-placeholder::-webkit-scrollbar-track {
    background: rgba(61, 44, 41, 0.08);
    border-radius: 999px;
  }

  .reviews-placeholder::-webkit-scrollbar-thumb {
    background: rgba(196, 30, 58, 0.42);
    border-radius: 999px;
  }

  .reviews-placeholder .review-card {
    flex-shrink: 0;
  }

  .review-card:not(.review-card--expanded) {
    min-height: 11.5rem;
  }

  .review-card {
    padding: 0.75rem 1rem 0.65rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .review-body {
    padding-bottom: 1.2rem;
  }

  .site-footer {
    padding: 0.85rem 0 0.55rem;
  }

  .footer-inner {
    gap: 0.7rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .footer-brand {
    gap: 0.65rem;
  }

  .footer-brand-name {
    font-size: 1rem;
  }

  .footer-brand-tagline {
    font-size: 0.7rem;
  }

  .footer-contact {
    width: 100%;
    text-align: left;
    align-items: flex-start;
  }

  .footer-contact-line {
    justify-content: flex-start;
    font-size: 0.78rem;
  }

  .footer-logo {
    height: 32px;
  }

  .footer-logo-wrap {
    height: 2.75rem;
    padding: 0.3rem 0.5rem;
  }

  .lightbox {
    width: var(--lightbox-vv-width, 100%);
    max-width: 100%;
    height: var(--lightbox-vv-height, 100%);
    max-height: none;
    margin: 0;
    padding: 0;
    position: fixed;
    top: var(--lightbox-vv-top, 0);
    left: var(--lightbox-vv-left, 0);
    right: auto;
    bottom: auto;
    box-sizing: border-box;
  }

  .lightbox-inner {
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0;
    gap: 0;
    padding: calc(2rem + env(safe-area-inset-top, 0px))
      max(0.875rem, calc(env(safe-area-inset-right, 0px) + 0.375rem))
      calc(2.25rem + env(safe-area-inset-bottom, 0px))
      max(0.875rem, calc(env(safe-area-inset-left, 0px) + 0.375rem));
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    touch-action: pan-y pinch-zoom;
  }

  .lightbox-viewport {
    flex: 1;
    width: 100%;
    min-height: 0;
    gap: 0;
  }

  .lightbox-frame {
    width: 100%;
    max-width: 100%;
    max-height: min(68dvh, calc(100vw * 9 / 16));
    aspect-ratio: 16 / 9;
  }

  .lightbox-close {
    position: absolute;
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
    top: max(0.75rem, calc(env(safe-area-inset-top, 0px) + 0.25rem));
    right: max(0.75rem, calc(env(safe-area-inset-right, 0px) + 0.5rem));
    left: auto;
  }

  .lightbox-nav {
    display: none;
  }

  .lightbox-counter {
    font-size: 0.8rem;
  }
}

/* Desktop */
@media (min-width: 768px) {
  .gallery-carousel-wrap {
    width: 100vw;
    max-width: 100%;
    margin-left: calc(50% - 50vw);
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
  }

  .nav-list {
    flex-direction: row;
    gap: 0.15rem;
  }

  .nav-list a {
    padding: 0.4rem 0.65rem;
    font-size: 0.875rem;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    position: static;
    z-index: auto;
    overflow: visible;
  }

  .header-actions .header-lang {
    order: 1;
  }

  .header-actions .header-contact {
    order: 2;
    margin-left: 0;
    margin-right: 0;
    transform: none;
    z-index: auto;
  }

  .header-contact,
  .header-lang {
    width: auto;
    height: auto;
    flex: 0 0 auto;
  }

  .header-contact-pill,
  .header-lang-pill {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    max-width: none;
    clip-path: none;
    transform: none;
    z-index: auto;
    overflow: visible;
    transition: none;
  }

  .header-contact-pill {
    right: auto;
    left: auto;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .header-contact-toggle.btn-primary {
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    line-height: 1;
    border-radius: 999px;
    aspect-ratio: auto;
    position: static;
    opacity: 1;
    transform: none;
    background: var(--red);
    border: 2px solid var(--red);
    color: var(--white);
    box-shadow: none;
    transition: var(--transition);
  }

  .header-contact-toggle.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
  }

  .header-lang.is-open .header-lang-pill {
    padding: 0;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .header-contact.is-open .header-contact-pill {
    max-width: none;
    padding: 0;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    clip-path: none;
    overflow: visible;
  }

  .header-lang.is-open .header-lang-toggle {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    position: static;
    width: auto;
    height: auto;
  }

  .header-contact.is-open .header-contact-toggle.btn-primary {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    position: static;
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
  }

  .header-lang-pill {
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .header-lang-panel {
    max-width: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    overflow: visible;
    transition: none;
    transition-delay: 0;
  }

  .header-contact-panel {
    position: absolute;
    left: auto;
    right: calc(100% + 0.5rem);
    top: 50%;
    max-width: none;
    height: 2.25rem;
    transform-origin: right center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(10px) scale(0.96);
    transition:
      opacity 0.25s ease,
      transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.25s ease;
    transition-delay: 0;
  }

  .header-contact.is-open .header-contact-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0) scale(1);
    transition-delay: 0;
  }

  .quick-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .quick-card--highlight {
    grid-column: auto;
  }

  .lunch-grid,
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .about-stack {
    min-height: 380px;
  }

  .lightbox-nav {
    width: 52px;
    height: 52px;
  }

  .lightbox {
    width: min(99vw, 1500px);
  }

  .lightbox-inner {
    padding: 1.25rem 0.35rem 2rem;
  }

  .lightbox-viewport {
    gap: 0.5rem;
  }

  .lightbox-frame {
    width: min(min(94vw, 1320px), calc(92vh * 16 / 9));
    max-height: 92vh;
  }

  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-carousel-wrap {
    padding-inline: clamp(1rem, 3vw, 2rem);
  }

  .gallery-item {
    width: min(320px, 32vw);
  }

  .gallery-item img {
    height: 250px;
  }

  .gallery-carousel__btn {
    width: 40px;
    height: 40px;
  }

  .gallery-carousel__icon {
    width: 16px;
    height: 16px;
  }

  .reviews .section-lead {
    margin-bottom: 0.5rem;
  }

  .reviews-scroll-view {
    margin-bottom: 0.5rem;
  }

  .reviews-attribution {
    margin-top: 0.1rem;
  }

  .reviews-actions {
    margin-top: 0.5rem;
  }

  .reviews-carousel__btn--prev,
  .reviews-carousel__btn--next {
    display: flex;
  }

  .reviews-carousel__viewport {
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .reviews-carousel__viewport::-webkit-scrollbar {
    display: none;
  }

  .reviews-placeholder {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 1.25rem;
    width: max-content;
    overflow: visible;
    padding: 0.25rem 0;
  }

  .reviews-placeholder .review-card {
    flex: 0 0 min(340px, 30vw);
    min-width: 300px;
    max-width: 380px;
    scroll-snap-align: start;
  }

  .review-card:not(.review-card--expanded) {
    min-height: 13.25rem;
  }

  .reviews-carousel .gallery-carousel__btn {
    width: 40px;
    height: 40px;
  }

  .find-map iframe {
    height: 100%;
    min-height: 360px;
  }

  .find-video {
    width: min(100%, 340px);
    max-height: 600px;
  }

  .find-actions {
    margin-inline: auto;
    width: fit-content;
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .find-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }

  .logo {
    height: 56px;
  }
}

