:root {
  color-scheme: light;
  --page: #f4f8f7;
  --surface: #ffffff;
  --surface-soft: #e8f2f1;
  --ink: #102d35;
  --ink-deep: #071f25;
  --muted: #526a70;
  --line: #c9dad8;
  --accent: #148c91;
  --accent-deep: #0b666c;
  --shadow: 0 24px 70px rgba(16, 45, 53, 0.14);
  --radius-media: 14px;
  --header-height: 72px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --shell: min(1240px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3 { text-wrap: balance; }
p, blockquote { text-wrap: pretty; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 8px max(20px, calc((100vw - 1240px) / 2));
  color: #f7fbfa;
  transition: background-color 240ms ease, color 240ms ease, box-shadow 240ms ease;
}
.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(244, 248, 247, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(16, 45, 53, 0.12);
}
.brand-link { display: flex; align-items: center; border-radius: 999px; }
.brand-link img { display: block; width: 52px; height: 52px; border-radius: 50%; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
.desktop-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.015em;
}
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 -6px; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 220ms var(--ease-out); }
.desktop-nav a[aria-current="location"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.social-link {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: currentColor;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}
.social-link:active { transform: scale(0.96); }
.social-link svg { width: 20px; height: 20px; fill: currentColor; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: currentColor;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: transform 180ms ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 25;
  display: grid;
  align-content: space-between;
  padding: 36px 20px 28px;
  background: var(--page);
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  padding: 10px 0;
  font-size: clamp(2rem, 10vw, 3.3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.mobile-contact { display: grid; gap: 8px; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: #f7fbfa;
}
.hero-image, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { z-index: -2; display: block; object-fit: cover; object-position: center 56%; }
.hero-scrim {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.10) 38%, rgba(0, 0, 0, 0.30) 100%);
}
.hero-content {
  width: var(--shell);
  margin: 0 auto;
  padding: calc(var(--header-height) + 48px) 0 clamp(48px, 9vh, 96px);
}
.hero-kicker, .eyebrow {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(5.8rem, 9.5vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
}
.hero-content > p:not(.hero-kicker) {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  font-weight: 600;
  line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:active { transform: scale(0.98); }
.button-primary { background: #f7fbfa; color: var(--ink); }
.button-ghost { border-color: rgba(255, 255, 255, 0.7); background: rgba(8, 31, 37, 0.18); color: #ffffff; }
.button-dark { background: var(--ink); color: #ffffff; }
.button-outline { border-color: var(--ink); background: transparent; color: var(--ink); }

.section { padding: clamp(76px, 11vw, 148px) 0; }
.section-shell { width: var(--shell); margin-inline: auto; }
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 9vw, 128px);
}
h2 { margin: 0; font-size: clamp(2.45rem, 6vw, 5.3rem); line-height: 0.98; letter-spacing: -0.035em; }
.story-copy p { max-width: 650px; margin: 26px 0 0; color: var(--muted); font-size: 1.04rem; }
.story-copy p + p { margin-top: 14px; }
.story-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 34px; }
.story-facts div { display: grid; gap: 5px; padding-top: 16px; border-top: 2px solid var(--accent); }
.story-facts strong { font-size: 0.96rem; }
.story-facts span { color: var(--muted); font-size: 0.82rem; line-height: 1.4; }
.text-link { display: inline-flex; gap: 8px; margin-top: 26px; font-weight: 800; color: var(--accent-deep); }
.media-button, .gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius-media);
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}
.portrait-media, .menu-media, .day-media, .gallery-item { aspect-ratio: 3 / 4; }
.portrait-media img, .menu-media img, .day-media img, .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.day-section { position: relative; isolation: isolate; overflow: hidden; background: var(--ink-deep); color: #f3fbfa; }
.day-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr); align-items: end; gap: clamp(44px, 8vw, 120px); }
.day-heading h2 { max-width: 850px; }
.day-heading > p { max-width: 470px; margin: 0 0 8px; color: rgba(243, 251, 250, 0.74); font-size: 1.05rem; }
.section-index { display: inline-block; margin-bottom: 18px; color: #77d5cf; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; }
.day-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 3vw, 36px); margin-top: clamp(54px, 8vw, 100px); }
.day-moment { min-width: 0; }
.day-moment:nth-child(2) { margin-top: 86px; }
.day-copy { padding: 24px 4px 0; }
.day-copy > span { color: #77d5cf; font-size: 0.82rem; font-weight: 800; }
.day-copy h3 { margin: 8px 0 0; font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1.04; letter-spacing: -0.03em; }
.day-copy p { max-width: 38ch; margin: 14px 0 0; color: rgba(243, 251, 250, 0.7); }

.menu-section { background: var(--surface); }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading > p:last-child { max-width: 600px; margin: 22px 0 0; color: var(--muted); }
.section-heading.compact { max-width: 660px; }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.menu-card { display: grid; grid-template-rows: auto 1fr; min-width: 0; }
.menu-card-copy { display: grid; align-content: start; padding-top: 24px; }
.menu-card h3 { margin: 0; font-size: 1.65rem; letter-spacing: -0.03em; }
.menu-card-copy > p { min-height: 3.2em; margin: 8px 0 20px; color: var(--muted); }
.price-list { display: grid; gap: 0; margin: 0; }
.price-list div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; padding: 13px 0; border-top: 1px solid var(--line); }
.price-list dt { font-weight: 700; }
.price-list dd { margin: 0; font-variant-numeric: tabular-nums; font-weight: 800; }
.menu-board-action { display: flex; align-items: center; gap: 18px; margin-top: 44px; }
.menu-board-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.menu-board-action p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.amenities-section { position: relative; isolation: isolate; overflow: clip; padding: clamp(72px, 9vw, 116px) 0; background: var(--accent-deep); color: #ffffff; }
.amenities-layout { display: grid; grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr); gap: clamp(48px, 9vw, 132px); align-items: start; }
.amenities-intro { position: sticky; top: calc(var(--header-height) + 40px); }
.amenities-intro h2 { max-width: 650px; font-size: clamp(2.5rem, 5vw, 4.6rem); }
.amenities-list { display: grid; }
.amenities-list div { display: grid; grid-template-columns: minmax(120px, 0.38fr) minmax(0, 1fr); gap: 24px; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, 0.28); }
.amenities-list div:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.28); }
.amenities-list strong { font-size: 1rem; }
.amenities-list span { color: rgba(255, 255, 255, 0.76); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.gallery-item { box-shadow: 0 0 0 1px rgba(16, 45, 53, 0.06); }
.gallery-item:nth-child(2), .gallery-item:nth-child(5) { translate: 0 16px; }
.gallery-item:nth-child(3), .gallery-item:nth-child(6) { translate: 0 32px; }

.reviews-section { background: var(--surface-soft); }
.reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.rating-summary { display: grid; justify-items: end; }
.rating-summary strong { font-size: clamp(3.4rem, 8vw, 6rem); line-height: 0.82; letter-spacing: -0.035em; color: var(--accent-deep); }
.rating-summary span { margin-top: 14px; color: var(--muted); font-weight: 700; }
.reviews-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 28px; }
.review { display: grid; align-content: start; padding: 28px 0 0; border-top: 3px solid var(--accent); }
.review-top { display: flex; align-items: center; gap: 14px; }
.review-top img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.review h3 { margin: 0; font-size: 1rem; }
.review-top p { margin: 2px 0 0; color: var(--accent-deep); letter-spacing: 0.08em; }
.review blockquote { margin: 24px 0; font-size: clamp(1.12rem, 2vw, 1.4rem); font-weight: 650; line-height: 1.45; letter-spacing: -0.02em; }
.review a { align-self: end; font-size: 0.88rem; font-weight: 800; color: var(--accent-deep); }

.visit-section { background: var(--surface); }
.visit-grid { display: grid; grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr); gap: clamp(44px, 7vw, 100px); align-items: stretch; }
.visit-copy { display: flex; flex-direction: column; align-items: flex-start; }
.visit-copy h2 { margin-bottom: 28px; }
.visit-copy address { color: var(--muted); font-style: normal; }
.visit-links { display: grid; gap: 5px; margin-top: 22px; }
.visit-links a { font-weight: 800; color: var(--accent-deep); }
.hours { width: 100%; margin: 32px 0; padding-top: 24px; border-top: 1px solid var(--line); }
.hours h3 { margin: 0 0 12px; font-size: 1.05rem; }
.hours dl { display: grid; gap: 7px; margin: 0; }
.hours dl div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; }
.hours dd { margin: 0; font-variant-numeric: tabular-nums; }
.map-wrap { min-height: 620px; border-radius: var(--radius-media); overflow: hidden; background: var(--surface-soft); box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 620px; border: 0; }

.site-footer { padding: 70px 0 22px; background: var(--ink); color: #f1f7f6; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 0.7fr 0.6fr; gap: 42px; }
.footer-brand img { display: block; width: 92px; height: 92px; border-radius: 50%; }
.footer-brand p { max-width: 330px; color: rgba(241, 247, 246, 0.72); }
.site-footer h2 { margin: 8px 0 14px; font-size: 0.78rem; line-height: 1.2; letter-spacing: 0.12em; text-transform: uppercase; }
.site-footer p { margin: 0 0 8px; color: rgba(241, 247, 246, 0.72); }
.site-footer > .footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #66d3d3; }
.footer-socials { display: flex; gap: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 18px; border-top: 1px solid rgba(241, 247, 246, 0.18); color: rgba(241, 247, 246, 0.6); font-size: 0.78rem; }

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

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(7, 24, 29, 0.92);
  color: #ffffff;
}
.lightbox::backdrop { background: rgba(7, 24, 29, 0.64); }
.lightbox-shell { position: relative; width: 100%; height: 100%; display: grid; place-items: center; padding: 68px 80px 42px; }
.lightbox figure { display: grid; justify-items: center; max-width: min(88vw, 1120px); max-height: 100%; margin: 0; }
.lightbox figure img { display: block; max-width: 100%; max-height: calc(100vh - 130px); border-radius: var(--radius-media); object-fit: contain; }
.lightbox figcaption { margin-top: 12px; text-align: center; color: rgba(255, 255, 255, 0.78); font-size: 0.88rem; }
.lightbox-close, .lightbox-nav { position: absolute; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 999px; background: rgba(7, 24, 29, 0.72); color: #ffffff; cursor: pointer; }
.lightbox-close { top: 18px; right: 20px; width: 46px; height: 46px; font-size: 2rem; line-height: 1; }
.lightbox-nav { top: 50%; width: 52px; height: 52px; transform: translateY(-50%); font-size: 2.4rem; line-height: 1; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

:focus-visible { outline: 3px solid #63d0d1; outline-offset: 4px; }
.reveal { opacity: 1; transform: none; }
.hero-image { animation: café-breathe 18s ease-in-out infinite alternate; }
.hero-content { position: relative; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.hero-actions { text-shadow: none; }

/* Ambient motion has its own layer: it never moves menu text or image grids. */
.hero-seal { position: absolute; right: max(24px, calc((100vw - 1240px) / 2)); bottom: 100px; width: 160px; height: 160px; border-radius: 50%; background: rgba(7,31,37,.78); color: #f6e5bf; pointer-events: none; }
.seal-ring { display: block; width: 100%; height: 100%; animation: café-turn 28s linear infinite; }
.seal-ring text { fill: currentColor; font-size: 12px; font-weight: 700; letter-spacing: 2px; }
.coffee-mark { position: absolute; width: 66px; height: 66px; top: 44px; left: 47px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.steam path { animation: café-steam 3s ease-in-out infinite; }
.steam path:nth-child(2) { animation-delay: -1s; }
.steam path:nth-child(3) { animation-delay: -2s; }
.brand-ribbon { overflow: hidden; padding: 22px 0; background: #d8eae4; color: var(--accent-deep); border-bottom: 1px solid var(--line); }
.ribbon-track { display: flex; width: max-content; animation: café-flow 30s linear infinite; }
.ribbon-copy { display: flex; align-items: center; flex-shrink: 0; gap: 36px; padding-right: 36px; font-size: clamp(1.65rem, 3.4vw, 3rem); font-weight: 650; line-height: 1.2; letter-spacing: -.035em; white-space: nowrap; }
.ribbon-copy i { display: inline-block; font-style: normal; color: var(--accent); animation: café-turn 14s linear infinite; }
.day-orbit { position: absolute; z-index: -1; pointer-events: none; width: 540px; height: 540px; top: -180px; right: -150px; animation: café-turn 42s linear infinite; }
.day-orbit span { position: absolute; inset: 0; border: 1px solid rgba(119,213,207,.28); border-radius: 50%; }
.day-orbit span:nth-child(2) { inset: 55px; }
.day-orbit span:nth-child(3) { inset: 110px; }
.day-orbit span::after { content: ""; position: absolute; top: 50%; left: -9px; width: 18px; height: 32px; border-radius: 100% 0 100% 0; background: #77d5cf; transform: rotate(-30deg); }
.day-orbit span:nth-child(2)::after { left: auto; right: -9px; background: #dbbc83; }
.day-orbit span:nth-child(3)::after { top: 0; left: 50%; }
.breathing-star { display: inline-block; margin-right: 10px; font-size: 1.4rem; vertical-align: middle; animation: café-turn 12s linear infinite; }
.amenities-section::before, .amenities-section::after { content: ""; position: absolute; z-index: -1; pointer-events: none; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(ellipse, rgba(164,233,205,.2), transparent 68%); animation: café-light 10s ease-in-out infinite alternate; }
.amenities-section::before { top: -220px; left: -200px; }
.amenities-section::after { right: -180px; bottom: -240px; animation-delay: -5s; }
.media-button, .gallery-item { position: relative; }
.media-button::after, .gallery-item::after { content: "↗"; position: absolute; display: grid; place-items: center; right: 16px; bottom: 16px; width: 44px; height: 44px; border-radius: 50%; background: #f4f8f7; color: var(--ink); font-size: 1.5rem; opacity: 0; transform: translateY(8px) scale(.95); transition: transform 220ms var(--ease-out), opacity 180ms ease; pointer-events: none; }
.media-button:focus-visible::after, .gallery-item:focus-visible::after { opacity: 1; transform: none; }
.button, .social-link, .menu-toggle, .mobile-action-bar a, .lightbox-close { transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease; }
.menu-toggle:active, .mobile-action-bar a:active, .lightbox-close:active { transform: scale(.96); }
.lightbox-nav { transition: scale 140ms var(--ease-out), background-color 180ms ease; }
.lightbox-nav:active { scale: .96; }
.mobile-menu { transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), visibility 220ms; }
.lightbox[open] .lightbox-shell { animation: lightbox-arrive 240ms var(--ease-out) both; }
.keyboard-input .lightbox[open] .lightbox-shell { animation: none; }
.keyboard-input .mobile-menu, .keyboard-input .menu-toggle span { transition: none; }
.keyboard-input { scroll-behavior: auto; }
@keyframes lightbox-arrive { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }
@keyframes café-breathe { from { transform: scale(1); } to { transform: scale(1.06); } }
@keyframes café-turn { to { transform: rotate(360deg); } }
@keyframes café-flow { to { transform: translateX(-50%); } }
@keyframes café-steam { 0%,100% { opacity: 0; transform: translateY(4px); } 35% { opacity: .9; } 80% { opacity: 0; transform: translateY(-9px); } }
@keyframes café-light { to { transform: translate(140px, 70px) scale(1.25); opacity: .55; } }
.motion-paused *, .motion-paused *::before, .motion-paused *::after,
.ambient-offscreen *, .ambient-offscreen::before, .ambient-offscreen::after { animation-play-state: paused !important; }
@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after { transform: scaleX(1); }
  .social-link:hover { transform: translateY(-2px); background: rgba(20,140,145,.12); }
  .button:hover { transform: translateY(-2px); }
  .button:active { transform: scale(.98); }
  .button-primary:hover { background: var(--accent); color: white; }
  .button-ghost:hover { background: white; color: var(--ink); }
  .button-dark:hover { background: var(--accent-deep); }
  .button-outline:hover { background: var(--ink); color: white; }
  .media-button:hover img, .gallery-item:hover img { transform: scale(1.045); }
  .media-button:hover::after, .gallery-item:hover::after { opacity: 1; transform: none; }
  .lightbox-close:hover, .lightbox-nav:hover { background: var(--accent-deep); }
  .brand-ribbon:hover .ribbon-track { animation-play-state: paused; }
}

@media (max-width: 1023px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: auto 1fr; }
  .menu-toggle { display: inline-block; }
  .story-grid, .visit-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .menu-grid, .gallery-grid { gap: 16px; }
  .amenities-layout { gap: 54px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review:first-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 767px) {
  :root { --header-height: 64px; --shell: min(100% - 32px, 680px); }
  .site-header { padding: 6px 16px; }
  .brand-link img { width: 48px; height: 48px; }
  .header-actions .social-link { display: none; }
  .hero-content { padding-bottom: 104px; }
  .hero-seal { width: 112px; height: 112px; top: calc(var(--header-height) + 28px); bottom: auto; right: 20px; }
  .coffee-mark { width: 46px; height: 46px; top: 31px; left: 33px; }
  .ribbon-copy { gap: 24px; padding-right: 24px; }
  .brand-ribbon { padding: 18px 0; }
  .day-orbit { width: 330px; height: 330px; top: -200px; right: -180px; }
  .media-button::after, .gallery-item::after { opacity: 1; transform: none; width: 36px; height: 36px; right: 12px; bottom: 12px; }
  .hero-kicker { margin-bottom: 16px; font-size: 0.8rem; }
  .hero h1 { font-size: clamp(4.5rem, 23vw, 6rem); }
  .hero-content > p:not(.hero-kicker) { max-width: 390px; font-size: 1.14rem; line-height: 1.42; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; margin-top: 32px; }
  .hero-actions .button { min-height: 54px; font-size: 0.94rem; }
  .hero-actions .button { width: 100%; }
  .section { padding: 78px 0; }
  h2 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .story-grid, .visit-grid { grid-template-columns: 1fr; gap: 44px; }
  .story-copy { order: 1; }
  .portrait-media { order: 2; }
  .story-facts { grid-template-columns: 1fr; gap: 14px; }
  .day-heading, .amenities-layout { grid-template-columns: 1fr; gap: 30px; }
  .day-grid { grid-template-columns: 1fr; gap: 52px; }
  .day-moment:nth-child(2) { margin-top: 0; }
  .day-copy { padding-top: 20px; }
  .amenities-intro { position: static; }
  .amenities-list div { grid-template-columns: 1fr; gap: 5px; padding: 20px 0; }
  .section-heading { margin-bottom: 34px; }
  .menu-grid, .gallery-grid, .reviews-grid { grid-template-columns: 1fr; gap: 38px; }
  .menu-card-copy > p { min-height: 0; }
  .menu-board-action { align-items: flex-start; flex-direction: column; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item:nth-child(5), .gallery-item:nth-child(6) { translate: none; }
  .reviews-heading { align-items: flex-start; flex-direction: column; margin-bottom: 34px; }
  .rating-summary { justify-items: start; }
  .review:first-child { grid-column: auto; }
  .review { padding-top: 22px; }
  .map-wrap, .map-wrap iframe { min-height: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 4px; }
  .site-footer { padding-bottom: 100px; }
  .mobile-action-bar {
    position: fixed;
    inset: auto 10px 10px;
    z-index: 35;
    display: grid;
    grid-template-columns: 0.75fr 0.95fr 1.3fr;
    min-height: 62px;
    padding: 6px;
    border-radius: 14px;
    background: rgba(7, 31, 37, 0.96);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(7, 31, 37, 0.24);
  }
  .mobile-action-bar a { display: grid; place-content: center; min-width: 0; padding: 4px 7px; border-radius: 9px; text-align: center; text-decoration: none; }
  .mobile-action-bar a + a { border-left: 1px solid rgba(255, 255, 255, 0.17); }
  .mobile-action-bar span { color: #77d5cf; font-size: 0.66rem; font-weight: 800; }
  .mobile-action-bar strong { overflow: hidden; font-size: 0.76rem; text-overflow: ellipsis; white-space: nowrap; }
  body.is-locked .mobile-action-bar { opacity: 0; pointer-events: none; }
  .lightbox-shell { padding: 66px 18px 36px; }
  .lightbox figure img { max-height: calc(100vh - 150px); }
  .lightbox-nav { top: auto; bottom: 16px; transform: none; width: 46px; height: 46px; }
  .lightbox-prev { left: calc(50% - 56px); }
  .lightbox-next { right: calc(50% - 56px); }
}

@media (max-width: 430px) {
  .hero-image { object-position: center 52%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
  .hours dl div { grid-template-columns: 1fr; gap: 0; }
}

@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; }
  *, *::before, *::after { animation: none !important; }
  .hero-image, .hero-content { animation: none; }
  .media-button:hover img, .gallery-item:hover img, .button:hover, .social-link:hover { transform: none; }
}
