:root {
  --ink: #171714;
  --ink-soft: #292823;
  --paper: #f6f4ee;
  --paper-deep: #ece7dc;
  --white: #fffdf8;
  --accent: #df4268;
  --accent-dark: #a91f45;
  --muted: #6d6a61;
  --line: #cfc9bc;
  --shadow: 0 24px 70px rgb(65 45 35 / 0.14);
  --radius: 14px;
  --header-height: 72px;
  --shell: min(1180px, calc(100% - 40px));
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Trebuchet MS", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 4.75rem);
}

h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--white);
  background: var(--accent-dark);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-kicker,
.hero-kicker {
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 24px;
  color: var(--white);
  background: rgb(23 23 20 / 0.96);
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  backdrop-filter: blur(12px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgb(23 23 20 / 0.985);
  border-bottom-color: rgb(255 255 255 / 0.16);
  box-shadow: 0 16px 34px rgb(14 14 12 / 0.2);
}

.brand-link {
  display: flex;
  align-items: center;
  width: 220px;
  height: 48px;
}

.brand-link img {
  width: 220px;
  height: auto;
  object-fit: contain;
  transition: transform 220ms var(--ease-out);
}

.site-header.is-scrolled .brand-link img {
  transform: scale(0.94);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 54px);
}

.desktop-nav a,
.site-footer nav a {
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

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

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

.header-actions,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgb(255 255 255 / 0.24);
  border-radius: 50%;
  place-items: center;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms var(--ease-out);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:active {
  transform: scale(0.94);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: calc(100dvh - var(--header-height));
  padding:
    clamp(72px, 9vw, 124px)
    clamp(24px, 7vw, 104px)
    clamp(58px, 8vw, 108px);
  background:
    linear-gradient(
      90deg,
      rgb(23 23 20 / 0.44) 0%,
      rgb(23 23 20 / 0.28) 34%,
      rgb(23 23 20 / 0.08) 64%,
      rgb(23 23 20 / 0.01) 100%
    ),
    linear-gradient(
      180deg,
      rgb(23 23 20 / 0.01) 38%,
      rgb(23 23 20 / 0.62) 100%
    );
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.25rem, 7vw, 6rem);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 520px;
  margin-bottom: 30px;
  color: #dedbd3;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.hero-kicker {
  color: #f4a9ba;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 999px;
  isolation: isolate;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 150ms var(--ease-out),
    box-shadow 220ms ease;
}

.button::after {
  position: absolute;
  inset: -40% auto -40% -52%;
  z-index: -1;
  width: 34%;
  content: "";
  pointer-events: none;
  background: rgb(255 255 255 / 0.28);
  filter: blur(6px);
  transform: skewX(-18deg);
  transition: transform 560ms var(--ease-out);
}

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

.button-accent {
  color: var(--white);
  background: var(--accent-dark);
}

.button-ghost {
  color: var(--white);
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(255 255 255 / 0.68);
}

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

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  min-height: 100%;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.04);
  will-change: transform;
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
  padding-block: clamp(90px, 12vw, 160px);
}

.about-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}

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

.about-copy > p:not(.section-kicker) {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.service-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.service-notes span {
  padding: 13px 0;
  font-size: 0.93rem;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.menu-section {
  padding-block: clamp(92px, 11vw, 150px);
  background-color: var(--paper-deep);
  background-image:
    linear-gradient(rgb(236 231 220 / 0.94), rgb(236 231 220 / 0.94)),
    url("assets/images/texture-wood.webp");
  background-size: auto, 1086px auto;
}

.menu-heading {
  display: grid;
  justify-items: start;
  max-width: 860px;
  margin-bottom: 64px;
}

.menu-heading p,
.gallery-heading p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.06rem;
}

.menu-editorial {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.menu-feature {
  display: grid;
  gap: 22px;
}

.menu-feature-breakfast {
  margin-top: 0;
}

.menu-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgb(87 72 48 / 0.14);
}

.menu-image.portrait,
.menu-image.square {
  aspect-ratio: 1 / 1;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.menu-feature-coffee img {
  object-position: 50% 56%;
}

.menu-feature-cakes img {
  object-position: 50% 48%;
}

.menu-copy {
  padding: 0 4px;
}

.menu-copy h3 {
  min-block-size: 2lh;
  margin-bottom: 12px;
}

.menu-copy p {
  color: var(--muted);
}

.menu-note {
  margin-top: 52px;
  color: var(--muted);
  font-size: 0.9rem;
}

.signature-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  height: clamp(560px, 45vw, 640px);
  background: var(--white);
}

.signature-image {
  min-height: 0;
  overflow: hidden;
}

.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.signature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 100px);
}

.signature-copy p:last-child {
  max-width: 450px;
  color: var(--muted);
  font-size: 1.08rem;
}

.gallery-section {
  padding-block: clamp(92px, 12vw, 160px);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgb(246 244 238 / 0.95), rgb(246 244 238 / 0.95)),
    url("assets/images/texture-wood.webp");
  background-position: center, 310px 80px;
  background-size: auto, 1086px auto;
}

.gallery-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--paper-deep);
  border: 0;
  border-radius: var(--radius);
  transition:
    transform 240ms var(--ease-out),
    box-shadow 240ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms var(--ease-out),
    filter 320ms ease;
}

.gallery-item::before {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  min-width: 58px;
  height: 34px;
  padding-inline: 12px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  content: "Open";
  background: var(--white);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease-out);
  place-items: center;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: inherit;
  pointer-events: none;
}

.reviews-section {
  padding-block: clamp(92px, 11vw, 150px);
  color: var(--white);
  background-color: var(--ink);
  background-image:
    linear-gradient(rgb(23 23 20 / 0.91), rgb(23 23 20 / 0.91)),
    url("assets/images/texture-brick.webp");
  background-position: center;
  background-size: auto, 860px auto;
}

.reviews-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.reviews-heading .section-kicker {
  color: #f4a9ba;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
}

.review {
  padding: clamp(26px, 4vw, 44px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms ease;
}

.review-featured {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  background: #f5c4cf;
}

.review-stack {
  display: grid;
  gap: 22px;
}

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

.review-author img,
.avatar-fallback {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.review-author img {
  object-fit: cover;
  background: var(--paper-deep);
}

.avatar-fallback {
  display: none;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--accent-dark);
  place-items: center;
}

.review-author strong,
.review-author .stars {
  display: block;
}

.review-author strong {
  font-size: 0.9rem;
}

.stars {
  color: var(--accent-dark);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.review blockquote {
  margin: 0 0 32px;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-weight: 700;
  line-height: 1.36;
}

.review-featured blockquote {
  font-size: clamp(1.8rem, 3vw, 3.05rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.review a {
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  background: var(--white);
}

.visit-details {
  padding: clamp(64px, 8vw, 120px);
  background-color: var(--white);
  background-image:
    linear-gradient(rgb(255 253 248 / 0.95), rgb(255 253 248 / 0.95)),
    url("assets/images/texture-wood.webp");
  background-position: center, 120px 40px;
  background-size: auto, 1086px auto;
}

.visit-details address {
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-style: normal;
}

.phone-link {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--accent-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.hours {
  max-width: 510px;
  margin-bottom: 28px;
}

.hours h3 {
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.hours dl {
  margin: 0;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dd {
  font-weight: 800;
}

.hygiene-rating {
  max-width: 500px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.88rem;
}

.map-wrap {
  min-height: 620px;
}

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

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(160px, 0.6fr) auto;
  gap: 40px;
  align-items: end;
  padding: 64px clamp(24px, 6vw, 90px);
  color: var(--white);
  background: var(--ink);
}

.footer-brand img {
  width: 220px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: center;
}

.footer-brand p {
  margin-bottom: 6px;
  color: #c9c4ba;
}

.footer-brand > a {
  font-weight: 800;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: rgb(14 14 13 / 0.98);
  border: 0;
  opacity: 0;
  transform: scale(0.975);
  transition:
    opacity 180ms ease,
    transform 260ms var(--ease-out);
}

.lightbox::backdrop {
  background: rgb(14 14 13 / 0.96);
  opacity: 0;
  transition: opacity 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
  transform: scale(1);
}

.lightbox.is-open::backdrop {
  opacity: 1;
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 82px;
  align-items: center;
}

.lightbox figure {
  display: grid;
  justify-items: center;
  max-height: calc(100dvh - 80px);
  margin: 0;
  transform-origin: center;
}

.lightbox figure img {
  width: auto;
  max-width: min(100%, 1400px);
  height: auto;
  max-height: calc(100dvh - 128px);
  object-fit: contain;
}

.lightbox figcaption {
  min-height: 28px;
  padding-top: 10px;
  color: #ddd8ce;
  font-size: 0.86rem;
  text-align: center;
}

.lightbox button {
  color: var(--white);
  cursor: pointer;
  background: transparent;
  border: 0;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 140ms var(--ease-out);
}

.lightbox button:active {
  transform: scale(0.92);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  border-radius: 50%;
}

.lightbox-nav {
  display: grid;
  width: 58px;
  height: 58px;
  margin-inline: auto;
  font-size: 3rem;
  border: 1px solid rgb(255 255 255 / 0.3) !important;
  border-radius: 50%;
  place-items: center;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 720ms ease var(--reveal-delay, 0ms),
    transform 860ms var(--ease-out) var(--reveal-delay, 0ms);
}

.motion-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(52px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-feature:nth-child(2),
.gallery-item:nth-child(2),
.review-stack .review:nth-child(2) {
  --reveal-delay: 70ms;
}

.menu-feature:nth-child(3),
.gallery-item:nth-child(3) {
  --reveal-delay: 140ms;
}

.gallery-item:nth-child(4) {
  --reveal-delay: 40ms;
}

.gallery-item:nth-child(5) {
  --reveal-delay: 110ms;
}

.gallery-item:nth-child(6) {
  --reveal-delay: 180ms;
}

.about-media,
.menu-image,
.signature-image {
  clip-path: inset(0 0 0 0);
  transition: clip-path 980ms var(--ease-out);
}

.motion-ready .about:not(.is-visible) .about-media,
.motion-ready .menu-feature:not(.is-visible) .menu-image,
.motion-ready .signature-section:not(.is-visible) .signature-image {
  clip-path: inset(0 0 100% 0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  height: 3px;
  pointer-events: none;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.motion-ready .hero-media img {
  animation: hero-settle 1500ms var(--ease-out) both;
}

.motion-ready .hero-copy > * {
  animation: hero-copy-in 900ms var(--ease-out) both;
}

.motion-ready .hero-copy > :nth-child(1) {
  animation-delay: 120ms;
}

.motion-ready .hero-copy > :nth-child(2) {
  animation-delay: 200ms;
}

.motion-ready .hero-copy > :nth-child(3) {
  animation-delay: 300ms;
}

.motion-ready .hero-copy > :nth-child(4) {
  animation-delay: 390ms;
}

@keyframes hero-settle {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1.04);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(38px) skewY(1.5deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .social-link:hover {
    color: var(--ink);
    background: var(--white);
    transform: translateY(-3px) rotate(5deg);
  }

  .button:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 12px 24px rgb(23 23 20 / 0.2);
  }

  .button-accent:hover {
    background: #8d1538;
  }

  .button-ghost:hover {
    color: var(--ink);
    background: var(--white);
  }

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

  .button:hover::after {
    transform: translateX(520%) skewX(-18deg);
  }

  .menu-feature:hover .menu-image img {
    transform: scale(1.055);
  }

  .gallery-item:hover {
    z-index: 1;
    box-shadow: 0 24px 44px rgb(52 42 30 / 0.2);
    transform: translateY(-9px) rotate(-0.7deg);
  }

  .gallery-item:nth-child(even):hover {
    transform: translateY(-9px) rotate(0.7deg);
  }

  .gallery-item:hover img {
    filter: saturate(1.08);
    transform: scale(1.075);
  }

  .gallery-item:hover::before {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .review:hover {
    box-shadow: 0 24px 46px rgb(0 0 0 / 0.24);
    transform: translateY(-8px) rotate(-0.55deg);
  }

  .review-stack .review:hover {
    transform: translateY(-8px) rotate(0.55deg);
  }

  .lightbox button:hover {
    color: var(--ink);
    background: var(--white);
  }
}

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

  .hero-copy {
    padding:
      64px
      clamp(24px, 6vw, 64px)
      clamp(52px, 7vw, 76px);
  }

  .desktop-nav {
    gap: 22px;
  }

  .about {
    gap: 48px;
  }

  .menu-editorial {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 24px);
  }

  .menu-feature-cakes {
    grid-column: auto;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .menu-feature-cakes .menu-image {
    max-width: none;
  }

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

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

  .map-wrap {
    min-height: 500px;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
    --shell: calc(100% - 28px);
  }

  h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(2.75rem, 12vw, 4.1rem);
  }

  .hero h1 {
    overflow-wrap: normal;
    font-size: clamp(2.55rem, 10.5vw, 3.65rem);
    word-break: normal;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
    padding: 0 14px;
  }

  .brand-link {
    width: 180px;
    height: 44px;
  }

  .brand-link img {
    width: 180px;
  }

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

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 13px;
    cursor: pointer;
    background: transparent;
    border: 1px solid rgb(255 255 255 / 0.26);
    border-radius: 50%;
    place-content: center;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    background: var(--white);
    transition: transform 180ms var(--ease-out);
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 39;
    display: flex;
    height: calc(100dvh - var(--header-height));
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 32px 20px 28px;
    overflow-y: auto;
    color: var(--white);
    background: var(--ink);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transform: translateY(-16px);
    transition:
      clip-path 300ms var(--ease-drawer),
      opacity 180ms ease,
      transform 300ms var(--ease-drawer);
  }

  .mobile-menu.is-open {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu[hidden] {
    display: none;
  }

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

  .mobile-menu nav a {
    padding: 16px 0;
    font-family: "Arial Black", "Trebuchet MS", Arial, sans-serif;
    font-size: 2rem;
    line-height: 1.1;
    text-decoration: none;
    border-bottom: 1px solid rgb(255 255 255 / 0.18);
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 220ms ease,
      transform 320ms var(--ease-out);
  }

  .mobile-menu.is-open nav a {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu.is-open nav a:nth-child(2) {
    transition-delay: 45ms;
  }

  .mobile-menu.is-open nav a:nth-child(3) {
    transition-delay: 90ms;
  }

  .mobile-menu.is-open nav a:nth-child(4) {
    transition-delay: 135ms;
  }

  .hero {
    min-height: calc(100dvh - var(--header-height));
  }

  .hero-copy {
    min-height: calc(100dvh - var(--header-height));
    padding: 72px 18px 42px;
    background:
      linear-gradient(
        180deg,
        rgb(23 23 20 / 0.04) 0%,
        rgb(23 23 20 / 0.1) 30%,
        rgb(23 23 20 / 0.54) 78%,
        rgb(23 23 20 / 0.62) 100%
      );
  }

  .hero-copy > p:not(.hero-kicker) {
    max-width: 31ch;
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .hero-media {
    min-height: 100%;
  }

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

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 86px;
  }

  .about-media {
    order: 2;
  }

  .about-copy {
    order: 1;
  }

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

  .service-notes {
    grid-template-columns: 1fr;
  }

  .menu-section {
    padding-block: 84px;
  }

  .menu-heading {
    margin-bottom: 42px;
  }

  .menu-editorial {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .menu-feature,
  .menu-feature-cakes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 0;
  }

  .menu-feature-cakes {
    grid-column: auto;
  }

  .menu-image,
  .menu-feature-cakes .menu-image {
    width: 100%;
    max-width: none;
  }

  .menu-image.portrait,
  .menu-image.square {
    aspect-ratio: 1 / 1;
  }

  .menu-copy h3 {
    min-block-size: 0;
  }

  .menu-note {
    margin-top: 42px;
  }

  .signature-section {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .signature-image {
    min-height: 0;
    aspect-ratio: 1;
  }

  .signature-copy {
    padding: 54px 18px 72px;
  }

  .gallery-section {
    padding-block: 86px;
  }

  .gallery-heading {
    margin-bottom: 34px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-item {
    aspect-ratio: 3 / 4;
  }

  .reviews-section {
    padding-block: 86px;
  }

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

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

  .review-featured blockquote {
    font-size: 1.8rem;
  }

  .visit-details {
    padding: 76px 18px;
  }

  .hours dl div {
    align-items: baseline;
  }

  .visit-actions {
    flex-direction: column;
  }

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

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

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 54px 18px 42px;
  }

  .footer-socials {
    margin-top: 6px;
  }

  .lightbox[open] {
    grid-template-columns: 58px minmax(0, 1fr) 58px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 2.2rem;
  }

  .lightbox figure img {
    max-height: calc(100dvh - 150px);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .motion-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }

  .motion-ready .about:not(.is-visible) .about-media,
  .motion-ready .menu-feature:not(.is-visible) .menu-image,
  .motion-ready .signature-section:not(.is-visible) .signature-image {
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--ink);
    backdrop-filter: none;
  }
}
