:root {
  --teal: #00857d;
  --teal-dark: #006d66;
  --cream: #f4efe4;
  --paper: #fbf8f1;
  --ink: #16211d;
  --muted: #5d6c66;
  --line: rgba(22, 33, 29, 0.18);
  --radius: 2px;
  --page: min(1240px, calc(100vw - 40px));
  --header-height: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #f3a363;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transition: transform 180ms ease;
}

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

.section {
  width: var(--page);
  margin-inline: auto;
  padding-block: clamp(80px, 10vw, 144px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px max(20px, calc((100vw - 1240px) / 2));
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 260ms var(--ease), color 260ms var(--ease), border-color 260ms var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(251, 248, 241, 0.96);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 16px;
  font-weight: 720;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
}

.desktop-nav a,
.footer-links a {
  position: relative;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

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

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

.social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, transform 200ms var(--ease);
}

.social-link:hover {
  background: currentColor;
  transform: translateY(-2px);
}

.social-link:hover svg {
  color: var(--paper);
}

.site-header:not(.is-scrolled):not(.menu-active) .social-link:hover svg {
  color: var(--teal);
}

.social-link svg {
  width: 19px;
  height: 19px;
  color: currentColor;
  transition: color 200ms ease;
}

.social-link svg rect,
.social-link svg circle:not(.social-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link .social-dot,
.social-link svg path {
  fill: currentColor;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  position: relative;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms var(--ease), top 220ms var(--ease);
}

.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 26px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 29;
  padding: 32px 20px max(28px, env(safe-area-inset-bottom));
  background: var(--paper);
  color: var(--ink);
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 10vw, 50px);
  line-height: 1.05;
  text-decoration: none;
}

.mobile-socials {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--teal-dark);
  color: #fff;
}

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

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 50% 48%;
}

.hero-scrim {
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.29) 0%, rgba(0, 0, 0, 0.11) 58%, rgba(0, 0, 0, 0.06) 100%);
}

.hero-content {
  width: var(--page);
  margin-inline: auto;
  padding-block: calc(var(--header-height) + 72px) clamp(52px, 8vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  column-gap: clamp(48px, 9vw, 150px);
}

.hero-location {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.visit-section h2,
.menu-column h3,
.mobile-menu nav a {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 {
  max-width: 8ch;
  margin: 0;
  font-family: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-tagline {
  margin: 0;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 200ms var(--ease), background 200ms ease, color 200ms ease;
}

.button:active {
  transform: scale(0.98);
}

.button-light {
  background: var(--paper);
  color: var(--teal-dark);
}

.button-light:hover {
  background: #fff;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.16);
  color: #fff;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-teal {
  background: var(--teal);
  color: #fff;
}

.button-teal:hover {
  background: var(--teal-dark);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.65fr);
  align-items: center;
  gap: clamp(48px, 10vw, 144px);
}

.about-copy {
  max-width: 650px;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section h2,
.visit-section h2 {
  margin: 0;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.97;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.about-copy > p:not(.section-kicker) {
  max-width: 60ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.72;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e5e0d6;
}

.about-media,
.menu-image,
.gallery-item {
  aspect-ratio: 3 / 4;
}

.image-frame img,
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-media img { object-position: 50% 50%; }

.menu-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1240px) / 2));
  background: var(--cream);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 56px;
}

.section-heading p,
.gallery-heading p {
  max-width: 48ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.menu-column {
  min-width: 0;
}

.menu-image img { object-position: 50% 50%; }

.menu-column-copy {
  padding: 26px 2px 0;
}

.menu-column h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.menu-column-copy > p {
  min-height: 52px;
  margin: 16px 0 24px;
  color: var(--muted);
}

.menu-list {
  margin: 0;
}

.menu-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.menu-list dt {
  font-weight: 680;
}

.menu-list dd {
  margin: 0;
  color: var(--teal);
  font-weight: 760;
  white-space: nowrap;
}

.menu-action {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.menu-action p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  font-weight: 760;
  white-space: nowrap;
}

.gallery-section {
  padding-bottom: clamp(88px, 12vw, 168px);
}

.gallery-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #e5e0d6;
  cursor: zoom-in;
}

.gallery-item::after {
  content: "+";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(251, 248, 241, 0.92);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  transition: transform 240ms var(--ease);
}

.gallery-item:hover::after {
  transform: rotate(90deg);
}

.gallery-item img {
  object-position: 50% 50%;
  transition: transform 500ms var(--ease);
}

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

.reviews-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1240px) / 2));
  background: var(--teal);
  color: #fff;
}

.reviews-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 52px;
}

.reviews-summary h2 {
  max-width: 8ch;
}

.rating-line {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.rating-line strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.9;
}

.rating-line > span:last-child {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.stars {
  color: #f3a363;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
}

.review {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

.review-featured {
  grid-row: span 2;
  min-height: 538px;
  justify-content: space-between;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-author img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.review-author h3 {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.2;
}

.review blockquote {
  display: -webkit-box;
  margin: 28px 0;
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.review:not(.review-featured) blockquote {
  font-size: clamp(19px, 2vw, 27px);
}

.review a {
  align-self: flex-start;
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
}

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

.visit-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(48px, 9vw, 120px);
  align-items: end;
}

.visit-copy address {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  font-style: normal;
  line-height: 1.5;
}

.phone-link {
  display: block;
  width: max-content;
  margin: 24px 0 28px;
  color: var(--teal);
  font-size: 20px;
  font-weight: 760;
}

.hours {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hours h3 {
  margin: 0 0 18px;
  font-size: 15px;
}

.hours dl {
  margin: 0;
}

.hours dl > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 10px 0;
}

.hours dd {
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
}

.hours p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.map-wrap {
  min-height: 520px;
  border-top: 1px solid var(--line);
  background: #dedbd3;
}

.map-wrap iframe {
  width: 100%;
  min-height: 520px;
  display: block;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 40px;
  padding: 64px max(20px, calc((100vw - 1240px) / 2));
  background: var(--ink);
  color: #fff;
}

.footer-brand img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand p,
.footer-contact p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 26px;
}

.footer-contact {
  justify-self: end;
  text-align: right;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 18px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 14px;
  padding: 76px 20px 28px;
  background: rgba(8, 13, 11, 0.96);
  color: #fff;
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  min-width: 0;
  max-width: 1320px;
  max-height: calc(100svh - 116px);
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0 auto;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100svh - 150px);
  object-fit: contain;
}

.lightbox figcaption {
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  text-align: center;
}

.lightbox button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 900px) {
  :root {
    --page: min(100% - 32px, 720px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions > .social-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: clamp(52px, 13.5vw, 84px);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about {
    grid-template-columns: 1fr 0.72fr;
    gap: 40px;
  }

  .menu-grid {
    gap: 14px;
  }

  .menu-column-copy {
    padding-top: 20px;
  }

  .menu-column-copy > p {
    min-height: 78px;
  }

  .menu-list > div {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .visit-content {
    grid-template-columns: 1fr 0.8fr;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-self: end;
  }

  .footer-contact {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  :root {
    --page: calc(100% - 32px);
    --header-height: 68px;
  }

  .section {
    padding-block: 80px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image {
    object-position: 54% 50%;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.29) 0%, rgba(0, 0, 0, 0.10) 60%, rgba(0, 0, 0, 0.06) 100%);
  }

  .hero-content {
    padding-bottom: max(42px, env(safe-area-inset-bottom));
  }

  .hero-location {
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(50px, 15.5vw, 66px);
    line-height: 0.91;
  }

  .hero-tagline {
    font-size: 15px;
  }

  .hero-ctas {
    margin-top: 24px;
  }

    .hero-ctas .button {
        min-width: 132px;
    }

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

  .about {
    gap: 48px;
  }

  .about-copy > p:not(.section-kicker) {
    font-size: 17px;
  }

  .section h2,
  .visit-section h2 {
    font-size: clamp(43px, 13vw, 66px);
  }

  .menu-section,
  .reviews-section {
    padding-inline: 16px;
  }

  .section-heading,
  .gallery-heading {
    margin-bottom: 38px;
  }

  .menu-grid,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    gap: 64px;
  }

  .menu-column-copy > p {
    min-height: auto;
  }

  .menu-list > div {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
  }

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

  .gallery-grid {
    gap: 14px;
  }

  .reviews-summary {
    align-items: start;
    flex-direction: column;
  }

  .rating-line {
    justify-items: start;
  }

  .review,
  .review-featured {
    min-height: 0;
  }

  .review-featured {
    grid-row: auto;
  }

  .review blockquote,
  .review:not(.review-featured) blockquote {
    font-size: 24px;
  }

  .visit-content {
    align-items: start;
    gap: 56px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 480px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding-block: 52px;
  }

  .footer-links,
  .footer-contact {
    justify-self: start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 4px;
    padding-inline: 8px;
  }

  .lightbox button {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Enriched Cafe Nineteen layout */
.quick-facts {
  background: var(--teal);
  color: #fff;
}

.quick-facts-inner {
  width: var(--page);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-inline: auto;
}

.quick-facts-inner > div {
  min-width: 0;
  padding: 28px clamp(16px, 2.5vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.quick-facts-inner > div:first-child {
  padding-left: 0;
}

.quick-facts-inner > div:last-child {
  border-right: 0;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.05;
  text-wrap: balance;
}

.quick-facts span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.dish-feature-media img,
.review-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-feature {
  background: var(--teal-dark);
  color: #fff;
}

.dish-feature-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 9vw, 132px);
}

.dish-feature-media,
.review-scene {
  aspect-ratio: 3 / 4;
}

.dish-feature-copy {
  max-width: 650px;
}

.dish-feature-copy > p {
  margin: 0 0 20px;
  color: #f3a363;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dish-feature-copy h2 {
  font-size: clamp(50px, 7vw, 92px);
  letter-spacing: -0.04em;
}

.dish-feature-copy > strong {
  display: block;
  margin-top: 26px;
  font-size: 20px;
}

.dish-feature-copy blockquote {
  margin: clamp(42px, 6vw, 74px) 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-wrap: pretty;
}

.dish-feature-copy cite {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-style: normal;
}

.dish-feature-copy .button {
  margin-top: 36px;
}

@media (min-width: 901px) {
  .dish-feature {
    padding-block: 0;
  }

  .dish-feature-inner.section {
    padding-block: 114.5px;
  }

  .dish-feature-media {
    aspect-ratio: 6 / 7;
  }
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
  padding-bottom: 40px;
}

.gallery-item:nth-child(even) {
  transform: translateY(34px);
}

.gallery-item:nth-child(even):focus-visible {
  transform: translateY(34px);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  align-items: stretch;
  gap: clamp(20px, 3vw, 40px);
}

.review-scene {
  align-self: start;
}

.reviews-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.review-featured {
  grid-column: 1 / -1;
  grid-row: auto;
  min-height: 300px;
}

.review {
  min-height: 270px;
}

.review-featured blockquote {
  max-width: 24ch;
}

.review blockquote,
.review:not(.review-featured) blockquote {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

@media (min-width: 901px) {
  .reviews-section {
    padding-block: clamp(80px, 6.5vw, 104px);
  }

  .reviews-summary {
    margin-bottom: 26px;
  }

  .reviews-summary h2 {
    font-size: clamp(46px, 5.6vw, 72px);
  }

  .review-scene {
    aspect-ratio: 3 / 4;
  }

  .review {
    min-height: 240px;
    padding: 20px;
  }

  .review-featured {
    min-height: 264px;
  }

  .review blockquote {
    margin-block: 16px;
    font-size: clamp(22px, 2.3vw, 30px);
  }

  .review:not(.review-featured) blockquote {
    font-size: 22px;
  }
}

.visit-split {
  min-height: clamp(480px, 35vw, 520px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.visit-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(20px, 2vw, 30px);
  padding: clamp(64px, 6vw, 90px) clamp(36px, 5vw, 76px) clamp(64px, 6vw, 90px) max(20px, calc((100vw - 1240px) / 2));
}

.visit-panel h2 {
  font-size: clamp(42px, 4.2vw, 60px);
}

.visit-panel .visit-details {
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.visit-panel .visit-copy address {
  margin-top: 16px;
}

.visit-panel .visit-actions {
  margin-top: 16px;
}

.visit-panel .hours,
.visit-panel .visit-notes {
  padding-top: 12px;
}

.visit-split .map-wrap,
.visit-split .map-wrap iframe {
  min-height: clamp(480px, 35vw, 520px);
  height: 100%;
}

.visit-split .map-wrap {
  border-top: 0;
  border-left: 1px solid var(--line);
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button-outline {
  border-color: var(--teal);
  color: var(--teal);
}

.button-outline:hover {
  background: var(--teal);
  color: #fff;
}

.visit-details {
  display: grid;
  gap: 38px;
}

.visit-notes {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.visit-notes h3 {
  margin: 0 0 16px;
  font-size: 15px;
}

.visit-notes p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.mobile-actions {
  display: none;
}

@media (max-width: 900px) {
  .reviews-layout {
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  }

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

  .review-featured {
    grid-column: auto;
  }

  .visit-split {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .visit-panel {
    width: var(--page);
    margin-inline: auto;
    padding: 80px 0;
  }

  .visit-panel .visit-details {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .visit-split .map-wrap,
  .visit-split .map-wrap iframe {
    min-height: 520px;
  }

  .visit-split .map-wrap {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 64px;
  }

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

  .quick-facts-inner > div {
    padding: 22px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .quick-facts-inner > div:first-child,
  .quick-facts-inner > div:nth-child(3) {
    padding-left: 0;
  }

  .quick-facts-inner > div:nth-child(2n) {
    border-right: 0;
  }

  .quick-facts-inner > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .quick-facts strong {
    font-size: 23px;
  }

  .dish-feature-inner {
    grid-template-columns: 1fr;
  }

  .dish-feature-copy blockquote {
    margin-top: 40px;
  }

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

  .gallery-item:nth-child(even),
  .gallery-item:nth-child(even):focus-visible {
    transform: none;
  }

  .gallery-item:first-child,
  .gallery-item:last-child {
    grid-column: 1 / -1;
  }

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

  .review-scene {
    max-width: 520px;
  }

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

  .review,
  .review-featured {
    min-height: 0;
  }

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

  .visit-actions .button {
    width: 100%;
  }

  .visit-split .map-wrap,
  .visit-split .map-wrap iframe {
    min-height: 480px;
  }

  .site-footer {
    padding-bottom: 74px;
  }

  .mobile-actions {
    position: fixed;
    inset: auto 0 0;
    z-index: 28;
    height: calc(64px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: var(--ink);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 14px;
    font-weight: 760;
    text-decoration: none;
  }

  .mobile-actions a:last-child {
    border-right: 0;
  }

  body.home-in-view .mobile-actions,
  body.lightbox-open .mobile-actions,
  body.menu-open .mobile-actions {
    display: none;
  }

}
