:root {
  color-scheme: light;
  --ink: #19241c;
  --ink-soft: #536055;
  --paper: #f4f5ef;
  --paper-deep: #e8ece3;
  --white: #fbfcf7;
  --green: #31573d;
  --green-deep: #1f3d2a;
  --line: rgba(25, 36, 28, 0.18);
  --radius-media: 2px;
  --radius-button: 999px;
  --header-h: 72px;
  --max: 1240px;
  --shadow: 0 24px 70px rgba(42, 55, 44, 0.13);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  font-family: "Avenir Next", Avenir, Aptos, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
}

body.lightbox-open { overflow: hidden; }

img { max-width: 100%; }

a { color: inherit; }

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

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

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

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

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

.header-sentinel {
  position: absolute;
  top: 24px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  color: var(--ink);
  background: rgba(244, 245, 239, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(25, 36, 28, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  background: var(--white);
  border: 1px solid rgba(255,255,255,.35);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 34px);
  white-space: nowrap;
}

.site-nav > a,
.footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav > a {
  position: relative;
}

.site-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-out);
}

.site-nav > a:focus-visible::after { transform: scaleX(1); }

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.92;
  transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.social-links a:active { transform: scale(.96); }

.social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  padding: 13px 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #263329;
  color: var(--white);
}

.hero-picture { display: contents; }

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

.hero-image {
  z-index: -2;
  display: block;
  object-fit: cover;
  object-position: 50% 54%;
  animation: morning-drift 18s var(--ease-in-out) infinite alternate;
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.10) 42%, rgba(0,0,0,.28) 100%);
}

.hero-content {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: max(24px, calc((100vw - var(--max)) / 2));
  padding: 112px 0 clamp(54px, 9vh, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 310px);
  column-gap: clamp(44px, 8vw, 140px);
  align-items: end;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.hero-kicker,
.section-label {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-kicker { grid-column: 1; }

.hero h1 {
  grid-column: 1;
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.9rem, 4.9vw, 4.65rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-content > p:not(.hero-kicker) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 30ch;
  margin: 0 0 38px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.52;
  font-weight: 500;
}

.hero-actions {
  grid-column: 2;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.hero-actions .button { min-height: 48px; padding-inline: 21px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:active { transform: scale(.97); transition-duration: 120ms; }

.button-solid {
  background: var(--white);
  color: var(--green-deep);
}

.button-solid:hover { background: #e8efe4; }

.button-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.72);
  background: rgba(19, 28, 21, .22);
  backdrop-filter: blur(8px);
}

.button-ghost:hover { background: rgba(19, 28, 21, .38); }

.quick-facts {
  color: var(--white);
  background: var(--green-deep);
}

.quick-facts-inner {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-facts p {
  min-width: 0;
  margin: 0;
  padding: 28px clamp(18px, 2.7vw, 40px);
  border-left: 1px solid rgba(251,252,247,.2);
}

.quick-facts p:first-child { padding-left: 0; border-left: 0; }
.quick-facts p:last-child { padding-right: 0; }

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

.quick-facts strong {
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.quick-facts span {
  margin-top: 2px;
  color: rgba(251,252,247,.68);
  font-size: .82rem;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
  padding-block: clamp(92px, 8vw, 104px);
}

.story h2,
.section-heading h2,
.feature-copy h2,
.reviews-summary h2,
.visit-intro h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.2vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.story-copy > p:not(.section-label) {
  max-width: 64ch;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.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: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.image-frame {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-media);
  background: var(--paper-deep);
}

.ratio-portrait { aspect-ratio: 3 / 4; }

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

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

.story-media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(18, 31, 21, .82);
}

.story-media figcaption span,
.story-media figcaption strong { display: block; }
.story-media figcaption span { color: rgba(251,252,247,.7); font-size: .78rem; }
.story-media figcaption strong { font-size: .88rem; text-align: right; }

.menu-section {
  padding-block: 88px;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading p,
.feature-copy p,
.visit-intro > p:not(.section-label) {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

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

.menu-card:nth-child(2) { margin-top: 56px; }

.menu-card .image-frame img { object-position: 50% 50%; }
.menu-card:nth-child(2) .image-frame img { object-position: 50% 56%; }
.menu-card:nth-child(3) .image-frame img { object-position: 50% 48%; }

.menu-card-copy { padding: 24px 2px 0; }

.menu-card h3 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.menu-card-copy > p {
  min-height: 52px;
  margin: 8px 0 20px;
  color: var(--ink-soft);
}

.menu-card dl,
.hours { margin: 0; }

.menu-card dl > div,
.hours > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.menu-card dt,
.menu-card dd,
.hours dt,
.hours dd { margin: 0; }

.menu-card dt { font-weight: 700; }
.menu-card dd { color: var(--green); font-weight: 800; }

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

.menu-footer p { margin: 0; color: var(--ink-soft); }

.menu-preview {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 108px);
  align-items: center;
  margin-top: clamp(72px, 10vw, 124px);
  padding: clamp(28px, 5vw, 64px);
  background: var(--paper-deep);
}

.menu-preview-image {
  display: block;
  overflow: hidden;
  max-width: 520px;
  color: inherit;
  background: #fff;
  box-shadow: 0 8px 0 rgba(25, 36, 28, .08);
}

.menu-preview-image img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-preview-copy { max-width: 560px; }

.menu-preview-label {
  margin: 0 0 18px;
  color: var(--green);
  font-weight: 800;
}

.menu-preview h3 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.25rem, 4.7vw, 4.5rem);
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.menu-preview-copy > p:not(.menu-preview-label) {
  max-width: 52ch;
  margin: 24px 0 30px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.menu-details {
  margin: 0 0 32px;
  border-top: 1px solid var(--line);
}

.menu-details > div {
  display: grid;
  grid-template-columns: minmax(100px, .6fr) 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.menu-details dt,
.menu-details dd { margin: 0; }
.menu-details dt { font-weight: 800; }
.menu-details dd { color: var(--ink-soft); }

.button-green {
  color: var(--white);
  background: var(--green-deep);
}

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

.menu-preview small {
  display: block;
  margin-top: 14px;
  color: var(--ink-soft);
}

.text-link,
.review a,
.visit-facts a {
  display: inline-flex;
  width: fit-content;
  color: var(--green-deep);
  font-weight: 800;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.feature-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: stretch;
  background: var(--green-deep);
  color: var(--white);
}

.feature-photo { min-height: 720px; }

.feature-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 52%;
}

.feature-copy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 112px);
}

.feature-copy p { color: rgba(251,252,247,.76); }
.feature-copy .text-link { margin-top: 28px; color: var(--white); }

.feature-list {
  margin-top: 34px;
  border-top: 1px solid rgba(251,252,247,.24);
}

.feature-list p {
  display: grid;
  grid-template-columns: minmax(90px, .48fr) 1fr;
  gap: 22px;
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid rgba(251,252,247,.24);
}

.feature-list strong { color: var(--white); }
.feature-list span { color: rgba(251,252,247,.68); }

.gallery-section {
  padding-block: clamp(96px, 13vw, 166px);
}

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

.gallery-item {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.gallery-item .image-frame { transition: transform 260ms cubic-bezier(.16,1,.3,1), box-shadow 260ms ease; }
.gallery-item:active .image-frame { transform: scale(.98); }

.gallery-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 13px;
  text-align: left;
}

.gallery-caption strong { font-size: .95rem; }
.gallery-caption small { color: var(--ink-soft); }

.gallery-item:nth-child(1) img { object-position: 50% 58%; }
.gallery-item:nth-child(2) img { object-position: 52% 48%; }
.gallery-item:nth-child(3) img { object-position: 50% 54%; }
.gallery-item:nth-child(4) img { object-position: 50% 50%; }
.gallery-item:nth-child(5) img { object-position: 52% 50%; }
.gallery-item:nth-child(6) img { object-position: 50% 42%; }

.reviews-section {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
  gap: clamp(58px, 10vw, 150px);
  padding-block: clamp(88px, 12vw, 150px);
  border-top: 1px solid var(--line);
}

.reviews-summary { position: sticky; top: 120px; align-self: start; }

.reviews-summary > p {
  max-width: 34ch;
  margin: 26px 0 0;
  color: var(--ink-soft);
}

.rating-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  align-items: center;
  margin-top: 28px;
  color: var(--green);
}

.rating-line strong { font-size: 3rem; line-height: 1; }
.rating-line span { letter-spacing: 0.09em; }
.rating-line small { grid-column: 2; color: var(--ink-soft); }

.reviews-list { border-top: 1px solid var(--line); }

.review {
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--line);
}

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

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

.review h3 { margin: 0; font-size: 1rem; }
.review header span { color: var(--green); letter-spacing: 0.08em; font-size: 0.82rem; }

.review blockquote {
  max-width: 54ch;
  margin: 22px 0 18px;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.48;
  letter-spacing: -0.015em;
}

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

.visit-details {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(480px, 1.16fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: stretch;
  padding-block: clamp(88px, 10vw, 132px);
}

.visit-content { min-width: 0; }

.visit-intro > p:not(.section-label) { margin-top: 24px; }

.visit-facts {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.visit-facts > div {
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--line);
}

.visit-facts h3 {
  margin: 0 0 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.visit-facts address { font-style: normal; }
.visit-facts p { margin: 12px 0 0; color: var(--ink-soft); }
.visit-facts a { margin-top: 16px; }
.phone-link { font-size: 1.42rem; }

.visit-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visit-services li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
}

.visit-services li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.map-wrap {
  position: relative;
  height: auto;
  min-height: 680px;
  overflow: hidden;
  background: #d9ddd4;
}

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

@media (min-width: 961px) {
  .visit-details { padding-block: 48px; }
  .visit-intro h2 { font-size: clamp(2.5rem, 4.1vw, 4rem); }
  .visit-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(24px, 3vw, 40px);
    display: grid;
    margin-top: 16px;
  }
  .visit-facts > div { padding: 8px 0 12px; }
  .visit-services { grid-template-columns: 1fr; gap: 8px; }
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: end;
  padding: 72px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--green-deep);
  color: var(--white);
}

.footer-brand img {
  width: 86px;
  height: 86px;
  display: block;
  object-fit: cover;
  background: var(--white);
}

.footer-brand p,
.footer-contact p { margin: 14px 0 0; color: rgba(251,252,247,.74); }

.footer-contact .footer-hours { color: rgba(251,252,247,.58); }

.footer-phone {
  display: inline-block;
  margin-top: 14px;
  color: var(--white);
  font-weight: 800;
  text-underline-offset: 5px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 30px;
}

.footer-contact { justify-self: end; text-align: right; }
.footer-contact .social-links { justify-content: flex-end; margin-top: 20px; }

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(15, 20, 16, .96);
  color: var(--white);
}

.lightbox::backdrop { background: rgba(15, 20, 16, .88); }

.lightbox-shell {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 96px;
  align-items: center;
  padding: 82px 24px 28px;
}

.lightbox figure {
  min-width: 0;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

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

.lightbox figcaption { min-height: 24px; color: rgba(251,252,247,.72); text-align: center; }

.lightbox button {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: var(--radius-button);
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  min-height: 44px;
  padding: 0 18px;
}

.lightbox-nav {
  width: 82px;
  min-height: 48px;
}

.reveal { opacity: 1; transform: none; }
.motion-ready { opacity: 0; transform: translateY(14px); }
.motion-ready.motion-image { transform: translateY(20px) scale(.985); transform-origin: center top; }
.motion-ready.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 700ms cubic-bezier(.25,.46,.45,.94), transform 900ms cubic-bezier(.22,.61,.36,1);
}
.motion-ready.motion-image.is-visible { transition-duration: 900ms, 1100ms; }

/* Slow, decorative rhythms; information and controls remain still. */
.brand-ribbon { overflow: hidden; padding-block: 19px; background: #d7e0bf; color: var(--green-deep); }
.ribbon-track { display: flex; width: max-content; animation: ribbon-flow 26s linear infinite; }
.ribbon-track > span { flex: none; display: flex; align-items: center; gap: 30px; padding-right: 30px; font-size: clamp(1.35rem, 2.8vw, 2.6rem); font-weight: 800; letter-spacing: -.035em; }
.ribbon-track i { font-style: normal; color: var(--green); }
.sun-seal { position: absolute; z-index: 2; top: 20px; right: 20px; width: 120px; aspect-ratio: 1; border-radius: 50%; background: #e7ecce; color: var(--green-deep); box-shadow: 0 8px 30px #19241c20; pointer-events: none; }
.sun-seal svg { width: 100%; height: 100%; animation: sunshine-turn 24s linear infinite; }
.sun-seal text { fill: currentColor; font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px; }
.sun-seal > span { position: absolute; inset: 0; display: grid; place-items: center; font-size: 54px; }
.coffee-steam { display: flex; gap: 14px; height: 64px; margin-bottom: 24px; pointer-events: none; }
.coffee-steam span { display: block; width: 13px; height: 45px; border: 2px solid #d7e0bf; border-top: 0; border-bottom: 0; border-radius: 50%; animation: steam-rise 3.6s ease-in-out infinite; }
.coffee-steam span:nth-child(2) { animation-delay: -1.2s; }
.coffee-steam span:nth-child(3) { animation-delay: -2.4s; }
.cafe-glow { position: absolute; z-index: -1; width: 460px; height: 460px; right: -250px; top: 10%; border-radius: 50%; background: radial-gradient(circle, #b8ca765c, #b8ca7600 68%); pointer-events: none; animation: light-drift 10s ease-in-out infinite alternate; }
.lightbox button:active, .menu-toggle:active { transform: scale(.97); }
.lightbox button, .menu-toggle { transition: transform 140ms var(--ease-out); }
.ambient-loop.is-offscreen, html.motion-paused .ambient-loop, html.page-hidden .ambient-loop { animation-play-state: paused; }
html.motion-paused .motion-ready { opacity: 1; transform: none; transition: none; }
.image-frame img { transition: transform 650ms var(--ease-out); }
.gallery-item .image-frame::after { content: '+'; position: absolute; right: 16px; bottom: 16px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: var(--green-deep); font-size: 28px; pointer-events: none; transition: transform 220ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-3px); }
  .button:active { transform: scale(.97); }
  .social-links a:hover { transform: translateY(-2px); opacity: 1; }
  .site-nav > a:hover::after { transform: scaleX(1); }
  .gallery-item:hover .image-frame { transform: translateY(-6px); box-shadow: var(--shadow); }
  .gallery-item:hover img, .menu-card:hover img { transform: scale(1.045); }
  .gallery-item:hover .image-frame::after { transform: rotate(90deg); }
}
@keyframes morning-drift { from { transform: scale(1); } to { transform: scale(1.075); } }
@keyframes ribbon-flow { to { transform: translateX(-50%); } }
@keyframes sunshine-turn { to { transform: rotate(360deg); } }
@keyframes steam-rise { 0% { opacity: 0; transform: translateY(14px) rotate(-12deg); } 30%, 60% { opacity: .8; } 100% { opacity: 0; transform: translateY(-16px) rotate(12deg); } }
@keyframes light-drift { from { transform: translate(0, 0); opacity: .45; } to { transform: translate(-160px, 130px); opacity: 1; } }

@media (max-width: 960px) {
  .site-header { padding-inline: 20px; }
  .menu-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    background: var(--paper);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    transition: transform 220ms var(--ease-out), opacity 180ms ease, visibility 180ms;
  }

  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }

  .site-nav > a {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-top: 1px solid var(--line);
  }

  .site-nav > a::after { display: none; }
  .site-nav .social-links { padding: 14px 20px 20px; border-top: 1px solid var(--line); }

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

  .story,
  .reviews-section,
  .visit-details { grid-template-columns: 1fr; }

  .menu-preview { grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr); gap: 46px; }

  .story { gap: 54px; }
  .story-media { width: min(680px, 100%); }

  .feature-section { grid-template-columns: 1fr; }
  .feature-photo { min-height: 66svh; }
  .feature-copy { min-height: 440px; }

  .reviews-summary { position: static; }

  .map-wrap { min-height: 560px; height: 70svh; }

  .site-footer { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer-contact { grid-column: 1 / -1; justify-self: start; text-align: left; }
  .footer-contact .social-links { justify-content: flex-start; }
}

@media (max-width: 760px) {
  :root { --header-h: 68px; }
  .section { width: min(100% - 32px, var(--max)); }
  .brand img { width: 44px; height: 44px; }
  .brand span { font-size: 0.94rem; }

  .hero-content {
    width: calc(100% - 32px);
    margin-inline: 16px;
    padding-top: 104px;
    padding-bottom: 44px;
    display: block;
  }

  .hero-image { object-position: 50% 52%; }
  .sun-seal { width: 96px; top: 14px; right: 14px; }
  .sun-seal > span { font-size: 44px; }
  .hero h1 { max-width: 10ch; font-size: clamp(2.8rem, 14vw, 4.3rem); }
  .hero-content > p:not(.hero-kicker) { max-width: 36ch; margin: 26px 0 0; font-size: 1rem; }
  .hero-actions { width: 100%; margin-top: 30px; }
  .hero-actions .button { flex: 1 1 145px; }

  .quick-facts-inner {
    width: calc(100% - 32px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-facts p {
    padding: 20px 12px;
    border-top: 1px solid rgba(251,252,247,.2);
  }

  .quick-facts p:nth-child(odd) { padding-left: 0; border-left: 0; }
  .quick-facts p:nth-child(even) { padding-right: 0; }
  .quick-facts p:nth-child(-n+2) { border-top: 0; }

  .story { padding-block: 92px; gap: 46px; }
  .story h2,
  .section-heading h2,
  .feature-copy h2,
  .reviews-summary h2,
  .visit-intro h2 { font-size: clamp(2.55rem, 12.6vw, 4rem); }

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

  .story-media figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 13px 14px;
  }

  .menu-section,
  .gallery-section,
  .reviews-section,
  .visit-details { padding-block: 88px; }

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

  .menu-grid,
  .gallery-grid { grid-template-columns: 1fr; gap: 38px; }
  .menu-card:nth-child(2) { margin-top: 0; }
  .menu-card-copy > p { min-height: auto; }

  .menu-footer { align-items: flex-start; flex-direction: column; margin-top: 44px; }

  .menu-preview {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 72px;
    padding: 18px 18px 40px;
  }

  .menu-preview-image { width: min(100%, 430px); margin-inline: auto; }
  .menu-preview h3 { font-size: clamp(2.45rem, 12vw, 3.8rem); }

  .feature-photo { min-height: 72svh; }
  .feature-section { width: 100%; }
  .feature-copy { min-height: 410px; padding: 54px 24px; }

  .gallery-grid { gap: 30px; }

  .reviews-section { gap: 44px; }
  .review blockquote { font-size: 1.08rem; }

  .visit-details { gap: 48px; }
  .visit-services { grid-template-columns: 1fr; }
  .map-wrap { min-height: 480px; height: 68svh; }
  .map-wrap iframe {
    width: 160%;
    height: 160%;
    transform: scale(.625);
    transform-origin: top left;
  }

  .site-footer { grid-template-columns: 1fr; gap: 42px; padding-block: 58px; }
  .footer-contact { grid-column: auto; }

  .lightbox-shell { grid-template-columns: 1fr 1fr; padding: 76px 16px 18px; }
  .lightbox figure { grid-column: 1 / -1; grid-row: 1; }
  .lightbox-nav { width: calc(100% - 6px); margin-top: 12px; }
  .lightbox-prev { justify-self: start; }
  .lightbox-next { justify-self: end; }
}

@media (max-width: 420px) {
  .brand span { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { flex-basis: 52px; width: 100%; }
  .hero-kicker { font-size: 0.67rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; animation: none !important; }
  .motion-ready { opacity: 1; transform: none; transition: none !important; }
  .ambient-loop { animation: none !important; }
  .coffee-steam span { opacity: .65; }
  .ribbon-track { width: 100%; justify-content: center; }
  .ribbon-track > span { flex-wrap: wrap; justify-content: center; gap: 8px 16px; padding-inline: 12px; font-size: 1.15rem; }
  .ribbon-track > span + span { display: none; }
  .image-frame img, .button, .gallery-item .image-frame { transform: none !important; }
}

html.keyboard-input { scroll-behavior: auto; }
html.keyboard-input *, html.keyboard-input *::before, html.keyboard-input *::after { transition-duration: 0s !important; }
html.keyboard-input .motion-ready { opacity: 1; transform: none; transition: none; }

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled,
  .site-header.is-menu-open { background: var(--paper); backdrop-filter: none; }
  .button-ghost { background: rgba(19, 28, 21, .58); backdrop-filter: none; }
}
