:root {
  --ink: #111210;
  --paper: #f7f7f2;
  --white: #fff;
  --muted: #66665f;
  --line: #d7d7cf;
  --accent: #cf3f2e;
  --header-height: 74px;
  --shell: min(100% - 32px, 1240px);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

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

section[id] {
  scroll-margin-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: .22em;
}

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

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(16px, 3vw, 46px);
  color: var(--white);
  transition: color .35s var(--ease), background-color .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(247, 247, 242, .96);
  box-shadow: 0 1px 0 rgba(17, 18, 16, .14);
}

.brand-link {
  position: relative;
  z-index: 2;
  justify-self: start;
  width: 58px;
  height: 58px;
  overflow: hidden;
  background: var(--white);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
  white-space: nowrap;
}

.desktop-nav a {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a,
.social-link,
.footer-social a,
.site-footer nav a {
  transition: opacity .2s ease;
}

.desktop-nav a:hover,
.social-link:hover,
.footer-social a:hover,
.site-footer nav a:hover {
  opacity: .58;
}

.header-actions {
  position: relative;
  z-index: 2;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
}

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

.menu-toggle {
  display: none;
  min-width: 72px;
  height: 44px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle-label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-toggle-lines {
  position: relative;
  width: 24px;
  height: 16px;
}

.menu-toggle-lines i {
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform .28s var(--ease), top .28s var(--ease);
}

.menu-toggle-lines i:first-child { top: 3px; }
.menu-toggle-lines i:last-child { top: 11px; }

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  align-content: space-between;
  padding: calc(var(--header-height) + 48px) 20px 34px;
  color: var(--ink);
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 10px 0;
  font-size: clamp(2.35rem, 11vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  text-decoration: none;
}

.mobile-menu-contact {
  display: grid;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .92rem;
}

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

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

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

.hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .06) 36%, rgba(0, 0, 0, .18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--shell);
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: calc(var(--header-height) + 44px) 0 clamp(52px, 8vw, 96px);
}

.hero-brand-block,
.hero-visit-block {
  width: 100%;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.7rem, 8vw, 6rem);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 440px;
  margin: 22px 0 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.45;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-width: 136px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .22s var(--ease), color .22s ease, background-color .22s ease, border-color .22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px);
}

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

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

.button-ghost {
  color: var(--white);
  background: rgba(17, 18, 16, .2);
  border-color: rgba(255, 255, 255, .78);
}

.button-ghost:hover {
  background: rgba(17, 18, 16, .5);
  border-color: var(--white);
}

.section {
  padding: clamp(76px, 9vw, 126px) 0;
}

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

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(480px, 1.16fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: center;
}

.about-copy h2,
.section-heading h2,
.reviews-summary h2,
.visit-details h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.about-copy > p:not(.section-kicker) {
  max-width: 660px;
  margin: 30px 0 0;
  color: #3f403b;
  font-size: clamp(1.03rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.about-note {
  max-width: 530px !important;
  margin-top: 28px !important;
  padding-top: 22px;
  border-top: 1px solid var(--ink);
  color: var(--ink) !important;
  font-size: clamp(1.15rem, 2vw, 1.55rem) !important;
  font-weight: 700;
  line-height: 1.3 !important;
  text-wrap: balance;
}

.portrait-media,
.ratio-media,
.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.portrait-media {
  margin: 0;
}

.portrait-media img,
.ratio-media img,
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.story-collage {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(12px, 1.5vw, 22px);
  align-items: start;
}

.story-collage figure {
  width: 100%;
}

.story-main {
  grid-row: span 2;
}

.story-coffee {
  margin-top: 56px;
}

.story-people {
  margin-top: 8px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 46px 0 0;
  border-top: 1px solid var(--ink);
}

.quick-facts div {
  padding: 16px 14px 0 0;
}

.quick-facts dt,
.visit-block h3,
.site-footer h2 {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0;
  font-size: .9rem;
  font-weight: 700;
}

.menu-preview {
  color: var(--white);
  background: var(--ink);
}

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

.section-heading p {
  max-width: 590px;
  margin: 22px 0 0;
  color: #b9b9b0;
  font-size: 1.02rem;
}

.gallery .section-heading p {
  color: var(--muted);
}

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

.menu-column {
  min-width: 0;
  border-top: 1px solid #4a4b46;
}

.menu-column:nth-child(2) {
  margin-top: 36px;
}

.menu-column:nth-child(3) {
  margin-top: 72px;
}

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

.menu-column h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.menu-intro {
  min-height: 66px;
  margin: 12px 0 24px;
  color: #b9b9b0;
  font-size: .91rem;
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #393a36;
  font-size: .88rem;
}

.menu-list strong {
  font-weight: 700;
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 46px;
}

.service-ribbon {
  color: var(--white);
  background: var(--accent);
  border-bottom: 1px solid rgba(255, 255, 255, .32);
}

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

.service-ribbon-inner div {
  min-width: 0;
  padding: 24px clamp(12px, 2vw, 28px);
  border-left: 1px solid rgba(255, 255, 255, .32);
}

.service-ribbon-inner div:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-ribbon-inner span,
.service-ribbon-inner strong {
  display: block;
}

.service-ribbon-inner span {
  margin-bottom: 3px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-ribbon-inner strong {
  font-size: clamp(.9rem, 1.25vw, 1.05rem);
  line-height: 1.25;
}

.midday-feature {
  position: relative;
  min-height: min(78svh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.midday-feature > img,
.midday-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.midday-feature > img {
  object-fit: cover;
  object-position: center;
}

.midday-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, .68), rgba(0, 0, 0, .08) 64%);
}

.midday-content {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin: 0 auto;
  padding-bottom: clamp(48px, 7vw, 84px);
}

.midday-content h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .92;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.midday-content p {
  max-width: 590px;
  margin: 22px 0 26px;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.text-link,
.review a,
.phone-link,
.site-footer a {
  font-weight: 700;
  text-decoration-thickness: 1px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.text-link span,
.review a span {
  transition: transform .2s var(--ease);
}

.text-link:hover span,
.review a:hover span {
  transform: translate(2px, -2px);
}

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

.gallery-heading {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.gallery-heading > div {
  max-width: 590px;
}

.gallery-heading > div p {
  margin-top: 0;
}

.gallery-heading > div span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
  margin-top: 64px;
}

.gallery-item {
  width: 100%;
  padding: 0;
  border: 0;
  background: #e4e4dd;
  cursor: zoom-in;
}

.gallery-item img {
  transition: transform .7s var(--ease), filter .3s ease;
}

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

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

.reviews-shell {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 160px);
}

.reviews-summary {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.rating-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}

.rating-lockup > strong {
  font-size: 4.2rem;
  line-height: .8;
  letter-spacing: -.04em;
}

.rating-lockup > div {
  display: grid;
  gap: 2px;
  font-size: .84rem;
}

.stars {
  display: block;
  letter-spacing: .08em;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
}

.review-featured {
  grid-column: 1 / -1;
}

.review:not(.review-featured) blockquote {
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
}

.review {
  padding: 30px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, .5);
}

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

.review-meta img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
}

.review-meta div {
  display: grid;
  gap: 2px;
}

.review-meta strong {
  font-size: .88rem;
}

.review-meta .stars {
  font-size: .78rem;
}

.review blockquote {
  max-width: 720px;
  margin: 22px 0;
  font-size: clamp(1.35rem, 2.35vw, 2.2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.review-source {
  margin: 0 0 20px;
  font-size: .86rem;
  font-weight: 700;
}

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

.practical-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(56px, 10vw, 150px);
  align-items: start;
}

.practical-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.practical-heading h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.practical-heading p {
  max-width: 390px;
  margin: 24px 0 0;
  color: #c5c5bd;
}

.practical-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #4a4b46;
}

.practical-list li {
  display: grid;
  grid-template-columns: minmax(170px, .72fr) minmax(0, 1fr);
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid #4a4b46;
}

.practical-list strong {
  font-size: 1.05rem;
}

.practical-list span {
  color: #c5c5bd;
}

.review a {
  font-size: .8rem;
}

.visit {
  padding-top: 0;
  padding-bottom: 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr);
  min-height: 760px;
}

.visit-details {
  padding: clamp(70px, 8vw, 120px) clamp(22px, 6vw, 90px);
}

.visit-details h2 {
  max-width: 600px;
}

.visit-block {
  margin-top: 42px;
}

.visit-block address,
.site-footer address {
  font-style: normal;
}

.visit-block address {
  margin-bottom: 14px;
}

.hours-list {
  max-width: 390px;
  margin: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list dd {
  margin: 0;
  font-weight: 700;
}

.phone-link {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.service-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.map-wrap {
  min-height: 760px;
  background: #ddd;
}

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

.site-footer {
  padding: 64px clamp(16px, 4vw, 56px) 28px;
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid #44453f;
}

.footer-brand {
  width: 118px;
  height: 118px;
  overflow: hidden;
  background: var(--white);
}

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

.footer-top p {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.04em;
  text-align: right;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr;
  gap: 40px;
  padding: 46px 0 60px;
}

.footer-grid > div,
.footer-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid a {
  font-size: .9rem;
}

.footer-social {
  flex-direction: row !important;
  flex-wrap: wrap;
}

.footer-social h2 {
  flex-basis: 100%;
}

.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #5f6059;
}

.footer-note {
  margin: 0;
  color: #91928a;
  font-size: .75rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  place-items: center;
  padding: 64px 20px 24px;
  color: var(--white);
  background: rgba(10, 10, 9, .94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox figure {
  max-width: min(82vw, 920px);
  max-height: calc(100svh - 100px);
  margin: 0;
  display: grid;
  gap: 10px;
  justify-items: center;
}

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

.lightbox figcaption {
  max-width: 720px;
  color: #d2d2cb;
  font-size: .8rem;
  text-align: center;
}

.lightbox-close,
.lightbox-control {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .55);
  cursor: pointer;
}

.mobile-action-bar {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  min-width: 76px;
  height: 40px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lightbox-control {
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
}

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

@media (min-width: 1025px) {
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .26) 0%, rgba(0, 0, 0, .12) 42%, rgba(0, 0, 0, .03) 72%, rgba(0, 0, 0, .10) 100%),
      linear-gradient(to bottom, rgba(0, 0, 0, .05), rgba(0, 0, 0, .02) 48%, rgba(0, 0, 0, .13));
  }

  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
    align-content: start;
    align-items: start;
    gap: clamp(48px, 8vw, 150px);
    padding-top: calc(var(--header-height) + clamp(44px, 5vw, 80px));
    padding-bottom: 40px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(4.1rem, 5.25vw, 5.7rem);
  }

  .hero-visit-block {
    padding-top: 30px;
  }

  .hero-copy {
    max-width: 310px;
    margin-top: 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
  }

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

  .visit-grid {
    grid-template-columns: minmax(430px, .9fr) minmax(0, 1.1fr);
    min-height: 720px;
  }

  .visit-details {
    padding: 72px clamp(44px, 5vw, 72px);
  }

  .visit-details h2 {
    max-width: 540px;
    font-size: clamp(3.2rem, 4vw, 4.15rem);
  }

  .visit-block {
    margin-top: 28px;
  }

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

@media (max-width: 960px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 16px;
  }

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

  .menu-toggle {
    display: inline-flex;
  }

  .about-layout,
  .reviews-shell,
  .practical-layout,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 48px;
  }

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

  .portrait-media {
    max-width: 620px;
  }

  .story-collage {
    max-width: 760px;
  }

  .reviews-summary {
    position: static;
  }

  .practical-heading {
    position: static;
  }

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

  .service-ribbon-inner div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .service-ribbon-inner div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, .32);
  }

  .visit-grid {
    min-height: 0;
  }

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

@media (max-width: 767px) {
  :root {
    --shell: min(100% - 28px, 1240px);
  }

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

  .hero h1 {
    font-size: clamp(3.45rem, 17vw, 5rem);
    line-height: .9;
  }

  .hero-copy {
    max-width: 320px;
    margin-top: 18px;
  }

  .hero-ctas {
    width: 100%;
    margin-top: 20px;
  }

  .button {
    min-width: 0;
    flex: 1 1 130px;
  }

  .section {
    padding: 78px 0;
  }

  .visit {
    padding-top: 0;
  }

  .about-copy h2,
  .section-heading h2,
  .reviews-summary h2,
  .visit-details h2 {
    font-size: clamp(2.55rem, 12vw, 4.1rem);
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .service-ribbon-inner div {
    padding: 18px 12px;
  }

  .service-ribbon-inner div:nth-child(odd) {
    padding-left: 0;
  }

  .story-collage {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .story-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .story-coffee,
  .story-people {
    margin-top: 0;
  }

  .quick-facts div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .menu-grid {
    gap: 54px;
  }

  .menu-column:nth-child(2),
  .menu-column:nth-child(3) {
    margin-top: 0;
  }

  .menu-intro {
    min-height: 0;
  }

  .gallery-grid {
    gap: 14px;
  }

  .gallery-heading {
    display: block;
  }

  .gallery-heading > div {
    margin-top: 24px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5) {
    margin-top: 0;
  }

  .midday-feature {
    min-height: 76svh;
  }

  .midday-feature > img {
    object-position: 44% center;
  }

  .midday-content h2 {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

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

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

  .rating-lockup > strong {
    font-size: 3.8rem;
  }

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

  .review:not(.review-featured) blockquote {
    font-size: 1.3rem;
  }

  .practical-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 19px 0;
  }

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

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

  .footer-top {
    align-items: flex-start;
  }

  .footer-brand {
    width: 88px;
    height: 88px;
  }

  .footer-top p {
    font-size: 1.55rem;
  }

  .footer-grid {
    grid-template-columns: 1.25fr .75fr;
  }

  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .mobile-action-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    color: var(--white);
    background: var(--ink);
    border-top: 1px solid #484944;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity .24s ease, transform .34s var(--ease);
  }

  .mobile-action-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.menu-open .mobile-action-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
  }

  .mobile-action-bar a {
    min-height: 62px;
    display: grid;
    place-items: center;
    padding: 12px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-action-bar a + a {
    color: var(--white);
    background: var(--accent);
  }

  .footer-social {
    grid-column: 1 / -1;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 64px 14px 18px;
  }

  .lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 100%;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

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