:root {
  --ink: #181d1e;
  --ink-soft: #594b3d;
  --paper: #eee3d6;
  --paper-deep: #d8c2aa;
  --surface: #fbf4eb;
  --line: #b99d80;
  --white: #fffaf2;
  --accent: #c9782e;
  --brick: #7b432c;
  --nav-h: 72px;
  --shell: min(1200px, calc(100vw - 40px));
  --shadow: 0 18px 54px rgba(53, 40, 29, 0.18);
  --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);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

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

button,
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: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  height: var(--nav-h);
  color: var(--white);
  background: rgba(24, 29, 30, 0.84);
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
  transition: background-color 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 12, 12, 0.96);
  border-bottom-color: rgba(255, 253, 248, 0.32);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--accent);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.nav-shell {
  display: flex;
  width: var(--shell);
  height: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: transform 260ms var(--ease-out);
}

.site-header.is-scrolled .brand img {
  transform: rotate(-7deg) scale(0.9);
}

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

.site-nav a {
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 20px;
  color: #17120e;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  transition: color 180ms ease, background-color 180ms ease, transform 140ms var(--ease-out);
}

.nav-cta.is-active {
  box-shadow: 0 0 0 3px rgba(201, 120, 46, 0.3);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: var(--shell);
  min-height: 100dvh;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 64px) 0 clamp(48px, 8vh, 88px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.eyebrow {
  margin-bottom: 22px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-shell > .eyebrow,
.section-heading .eyebrow,
.about-copy .eyebrow {
  color: var(--brick);
}

.visit-copy .eyebrow {
  color: var(--accent);
}

.hero h1 {
  max-width: 600px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(4rem, 7.5vw, 6rem);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-intro {
  max-width: 420px;
  margin-bottom: 32px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  text-wrap: pretty;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: transform 140ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.button::after {
  margin-left: 8px;
  content: "→";
  transform: translateX(0);
  transition: transform 180ms var(--ease-out);
}

.button:active,
.nav-cta:active,
.lightbox-close:active,
.lightbox-controls button:active {
  transform: scale(0.96);
}

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

.button-primary:hover {
  color: var(--ink);
  background: transparent;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
}

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

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

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.22) 37%, rgba(0, 0, 0, 0.06) 72%, rgba(0, 0, 0, 0.01) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, transparent 48%, rgba(0, 0, 0, 0.05) 100%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  transform: scale(1.02) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform 800ms var(--ease-out);
}

.js .hero-media img {
  animation: hero-settle 1400ms var(--ease-out) backwards;
}

.js .hero-copy > * {
  opacity: 0;
  transform: translateY(28px);
  animation: hero-copy-enter 780ms var(--ease-out) forwards;
}

.js .hero-copy > :nth-child(1) {
  animation-delay: 180ms;
}

.js .hero-copy > :nth-child(2) {
  animation-delay: 250ms;
}

.js .hero-copy > :nth-child(3) {
  animation-delay: 330ms;
}

.js .hero-copy > :nth-child(4) {
  animation-delay: 410ms;
}

@keyframes hero-settle {
  from {
    filter: blur(5px);
    transform: scale(1.11);
  }

  to {
    filter: blur(0);
    transform: scale(1.02);
  }
}

@keyframes hero-copy-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero .button-primary:hover {
  color: var(--white);
  background: transparent;
}

.hero .button-secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.82);
}

.hero .button-secondary:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.service-strip {
  color: var(--white);
  background: var(--brick);
}

.service-strip-inner {
  display: grid;
  width: var(--shell);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}

.service-strip p {
  margin: 0;
  padding: 21px 12px;
  border-right: 1px solid rgba(255, 253, 248, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  text-align: center;
}

.service-strip p:first-child {
  border-left: 1px solid rgba(255, 253, 248, 0.22);
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
  padding: clamp(84px, 11vw, 150px) 0;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
}

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

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  transition: transform 700ms var(--ease-in-out);
}

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

.about-copy p {
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 750;
  color: var(--brick);
}

.menu-section {
  padding-top: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-heading p:not(.eyebrow) {
  max-width: 50ch;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

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

.menu-panel {
  margin: 0;
}

.menu-image {
  aspect-ratio: 3 / 4;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--paper-deep);
}

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

.menu-panel-coffee img {
  object-position: 48% 58%;
}

.menu-panel-brunch img {
  object-position: 50% 52%;
}

.menu-panel-sweet img {
  object-position: 50% 48%;
}

.menu-copy h3 {
  margin-bottom: 12px;
}

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

.gallery-section {
  padding-top: 46px;
}

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

.gallery-item {
  position: relative;
  min-width: 0;
  aspect-ratio: 3 / 4;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: var(--paper-deep);
  border: 0;
  cursor: zoom-in;
}

.gallery-item::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 11px;
  color: var(--white);
  background: rgba(24, 29, 30, 0.9);
  border-radius: 999px;
  content: "View";
  font-size: 0.77rem;
  font-weight: 750;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 220ms var(--ease-out);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

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

.gallery-item:active img {
  transform: scale(0.98);
}

.gallery-a img {
  object-position: 50% 54%;
}

.gallery-b img {
  object-position: 50% 46%;
}

.gallery-c img {
  object-position: 50% 58%;
}

.gallery-d img {
  object-position: 50% 50%;
}

.gallery-e img {
  object-position: 50% 58%;
}

.gallery-f img {
  object-position: 50% 48%;
}

.reviews-section {
  padding-top: 120px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review {
  display: flex;
  min-width: 0;
  min-height: 330px;
  padding: 36px clamp(20px, 3vw, 40px);
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.review:last-child {
  border-right: 0;
}

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

.review-author img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--paper-deep);
}

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

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

.review-author span {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.review blockquote {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.25;
}

.review a {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--brick);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  min-height: 660px;
  color: var(--white);
  background: var(--ink);
}

.visit-map {
  min-height: 660px;
  background: var(--paper-deep);
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 660px;
  filter: saturate(0.92) contrast(1.04);
}

.visit-copy {
  display: flex;
  padding: clamp(52px, 7vw, 96px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.visit-copy address {
  margin-bottom: 36px;
  font-style: normal;
  font-size: 1.12rem;
}

.visit-copy .button-primary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.visit-copy .button-primary:hover {
  color: var(--white);
  background: transparent;
}

.hours {
  width: 100%;
  max-width: 420px;
  margin-bottom: 36px;
}

.hours h3 {
  margin-bottom: 20px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours dl {
  margin: 0;
}

.hours dl div {
  display: flex;
  padding: 8px 0;
  gap: 20px;
  justify-content: space-between;
}

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

.site-footer {
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 253, 248, 0.24);
}

.footer-shell {
  display: grid;
  width: var(--shell);
  margin: 0 auto;
  padding: 58px 0 28px;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
}

.footer-brand {
  display: flex;
  max-width: 440px;
  gap: 20px;
  align-items: center;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
}

.footer-brand p {
  margin: 0;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 34px;
  justify-content: end;
}

.site-footer nav a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
}

.site-footer nav a:hover {
  text-decoration-color: currentColor;
}

.footer-note {
  margin: 42px 0 0;
  padding-top: 20px;
  color: rgba(255, 253, 248, 0.7);
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  grid-column: 1 / -1;
  font-size: 0.82rem;
}

.lightbox {
  width: min(1080px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 18px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 90px rgba(10, 12, 12, 0.54);
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  transition:
    opacity 220ms ease,
    transform 320ms var(--ease-out),
    display 320ms allow-discrete,
    overlay 320ms allow-discrete;
}

.lightbox[open] {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.lightbox::backdrop {
  background: rgba(10, 12, 12, 0.9);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition:
    opacity 240ms ease,
    display 320ms allow-discrete,
    overlay 320ms allow-discrete;
}

.lightbox[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .lightbox[open] {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
  }

  .lightbox[open]::backdrop {
    opacity: 0;
  }
}

.lightbox figure {
  display: grid;
  width: 100%;
  height: calc(100dvh - 156px);
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  padding: 10px 0 0;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}

.lightbox-close,
.lightbox-controls button {
  min-height: 42px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 140ms var(--ease-out);
}

.lightbox-controls {
  display: flex;
  padding-top: 12px;
  gap: 10px;
  justify-content: center;
}

.js .reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(48px) scale(0.985);
  transition:
    opacity 760ms ease,
    filter 720ms ease,
    transform 900ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .nav-cta:hover {
    transform: translateY(-3px);
  }

  .button:hover::after {
    transform: translateX(5px);
  }

  .about-media:hover img {
    transform: scale(1.045);
  }

  .menu-panel:hover .menu-image img {
    transform: scale(1.085);
  }

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

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

  .button:active,
  .nav-cta:active,
  .lightbox-close:active,
  .lightbox-controls button:active {
    transform: scale(0.96);
  }
}

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

  .hero {
    min-height: 100dvh;
  }

  .hero-copy {
    width: min(100% - 48px, 760px);
    min-height: 100dvh;
    padding: calc(var(--nav-h) + 48px) 0 56px;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 9vw, 5.5rem);
  }

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

  .menu-panel-coffee,
  .menu-panel-brunch,
  .menu-panel-sweet {
    padding-top: 0;
    grid-column: auto;
    grid-row: auto;
  }

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

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

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

  .review:last-child {
    border-bottom: 0;
  }

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

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

@media (max-width: 767px) {
  :root {
    --nav-h: 64px;
    --shell: calc(100vw - 32px);
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .site-header {
    height: var(--nav-h);
    color: var(--white);
    background: rgba(24, 29, 30, 0.92);
    border-bottom-color: rgba(255, 253, 248, 0.2);
  }

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

  .menu-toggle {
    display: inline-flex;
    min-height: 44px;
    padding: 8px 0 8px 12px;
    color: var(--white);
    background: transparent;
    border: 0;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }

  .menu-toggle-label {
    font-weight: 750;
  }

  .menu-toggle-lines {
    display: grid;
    width: 24px;
    gap: 6px;
  }

  .menu-toggle-lines i {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 220ms var(--ease-drawer);
  }

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

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 36px 24px;
    background: var(--paper);
    color: var(--ink);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-24px);
    transition: opacity 200ms ease, transform 320ms var(--ease-drawer);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 280ms var(--ease-out);
  }

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

  .site-nav.is-open a:nth-child(1) {
    transition-delay: 45ms;
  }

  .site-nav.is-open a:nth-child(2) {
    transition-delay: 90ms;
  }

  .site-nav.is-open a:nth-child(3) {
    transition-delay: 135ms;
  }

  .site-nav.is-open a:nth-child(4) {
    transition-delay: 180ms;
  }

  .site-nav .nav-cta {
    margin-top: 20px;
    color: var(--white);
    background: var(--ink);
    border-radius: 999px;
    text-align: center;
  }

  .site-nav .nav-cta.is-active {
    box-shadow: inset 0 0 0 2px rgba(255, 253, 248, 0.7);
  }

  .hero {
    min-height: 100dvh;
  }

  .hero-media {
    inset: 0;
  }

  .hero-copy {
    width: calc(100% - 40px);
    min-height: 100dvh;
    padding: calc(var(--nav-h) + 40px) 0 32px;
    justify-content: flex-end;
  }

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

  .hero h1 {
    max-width: 350px;
    margin-bottom: 16px;
    font-size: clamp(3rem, 13.5vw, 3.7rem);
  }

  .hero-intro {
    max-width: 340px;
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

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

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.3) 35%, rgba(0, 0, 0, 0.05) 72%, rgba(0, 0, 0, 0.08) 100%);
  }

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

  .service-strip-inner {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .service-strip p {
    padding: 15px 8px;
    border-bottom: 1px solid rgba(255, 253, 248, 0.22);
  }

  .service-strip p:nth-child(odd) {
    border-left: 0;
  }

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

  .about-media {
    width: min(86vw, 440px);
  }

  .section-shell {
    padding: 84px 0;
  }

  .menu-section,
  .gallery-section {
    padding-top: 24px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

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

  .menu-panel-coffee,
  .menu-panel-brunch,
  .menu-panel-sweet {
    grid-column: 1;
    grid-row: auto;
  }

  .menu-image {
    margin-bottom: 18px;
  }

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

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

  .gallery-item::after {
    opacity: 1;
    transform: none;
  }

  .reviews-section {
    padding-top: 84px;
  }

  .review {
    padding: 30px 8px;
  }

  .review blockquote {
    font-size: 1.42rem;
  }

  .visit-section {
    display: flex;
    flex-direction: column;
  }

  .visit-map {
    order: 2;
  }

  .visit-map,
  .visit-map iframe {
    min-height: 360px;
  }

  .visit-copy {
    padding: 72px 20px 64px;
  }

  .visit-copy h2 {
    max-width: 560px;
  }

  .hours dl div {
    gap: 12px;
  }

  .footer-shell {
    padding-top: 48px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer nav {
    justify-content: start;
  }

  .footer-note {
    margin-top: 4px;
  }

  .lightbox {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    padding: 12px;
  }

  .lightbox figure {
    height: calc(100dvh - 138px);
  }
}

@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;
  }

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

  .js .hero-media img,
  .js .hero-copy > * {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-media img {
    transform: none;
  }

  .menu-image img,
  .gallery-item img {
    will-change: auto;
  }

  .button:hover,
  .nav-cta:hover,
  .about-media:hover img,
  .menu-panel:hover .menu-image img,
  .gallery-item:hover img,
  .button:hover::after {
    transform: none;
  }
}

@supports not (backdrop-filter: blur(2px)) {
  .site-header {
    background: var(--ink);
  }
}
