@font-face {
  font-family: "CSY Display";
  src: url("assets/fonts/bahnschrift.ttf") format("truetype");
  font-display: swap;
  font-weight: 300 800;
}

:root {
  --page: #f4f3ef;
  --paper: #fbfaf7;
  --ink: #18201b;
  --muted: #5c655e;
  --accent: #16513a;
  --accent-deep: #0e3928;
  --rust: #a4492c;
  --blue: #376f98;
  --yellow: #e7b83e;
  --line: #cbd1ca;
  --header: rgb(18 26 21 / 0.82);
  --radius: 12px;
  --button-radius: 999px;
  --wrap: min(1240px, calc(100% - 40px));
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

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

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

.ui-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a {
  color: inherit;
}

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

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

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

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

.section {
  padding-block: clamp(76px, 10vw, 148px);
}

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

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

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

.site-header {
  position: fixed;
  inset: 12px 16px auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--radius);
  background: var(--header);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.12);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  color: #f7f6f2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: inherit;
  font-family: "CSY Display", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
}

.site-menu > a {
  position: relative;
  color: inherit;
  text-decoration: none;
}

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

.site-menu > a:focus-visible::after,
.site-menu > a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.26);
  border-radius: 50%;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms var(--ease-out);
}

.social-links a:active,
.button:active,
.gallery-item:active,
.dialog-close:active,
.menu-toggle:active {
  transform: scale(0.97);
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links .icon-fill {
  fill: currentColor;
  stroke: none;
}

.mobile-social-links {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.26);
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  width: 19px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms var(--ease-out);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(4px);
}

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

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

.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #252a26;
  color: #f9f8f4;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 45%;
  animation: hero-image-breathe 18s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.24), rgb(0 0 0 / 0.50));
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-atmosphere::before,
.hero-atmosphere::after {
  content: "";
  position: absolute;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-atmosphere::before {
  top: 4%;
  left: 42%;
  width: max(340px, 38vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(231 184 62 / 0.32) 0, rgb(231 184 62 / 0.09) 38%, transparent 70%);
  mix-blend-mode: screen;
  animation: hero-glow-drift 11s var(--ease-in-out) infinite alternate;
}

.hero-atmosphere::after {
  top: -30%;
  left: -46%;
  width: 32%;
  height: 170%;
  background: linear-gradient(100deg, transparent 18%, rgb(255 249 220 / 0.18) 50%, transparent 82%);
  mix-blend-mode: screen;
  animation: hero-light-pass 13s linear infinite;
}

.motion-seal {
  position: absolute;
  z-index: 2;
  display: grid;
  width: clamp(118px, 10vw, 154px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.38);
  border-radius: 50%;
  color: #fff;
  filter: drop-shadow(0 10px 22px rgb(0 0 0 / 0.24));
  pointer-events: none;
  animation: seal-float 5.5s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.motion-seal svg {
  position: absolute;
  inset: 4%;
  width: 92%;
  height: 92%;
  overflow: visible;
  animation: seal-spin 18s linear infinite;
  will-change: transform;
}

.motion-seal text {
  fill: currentColor;
  font-family: "CSY Display", Arial, sans-serif;
  font-size: 8.7px;
  font-weight: 700;
  letter-spacing: 1.45px;
}

.motion-seal > span {
  display: grid;
  width: 44%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--accent-deep);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  box-shadow: 0 0 0 9px rgb(255 255 255 / 0.10);
  animation: seal-heartbeat 3.2s var(--ease-in-out) infinite;
  will-change: transform, opacity;
}

.hero-seal {
  top: clamp(106px, 16svh, 166px);
  right: max(24px, calc((100vw - 1240px) / 2));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 96px;
  padding-bottom: clamp(52px, 9svh, 90px);
}

.hero h1,
h2,
h3 {
  margin: 0;
  font-family: "CSY Display", Arial, sans-serif;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.55rem, 8vw, 6rem);
  line-height: 0.92;
  text-wrap: balance;
}

.hero-content > p {
  max-width: 38rem;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.4;
}

.hero-kicker,
.mobile-title-break {
  display: none;
}

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

.fact-band {
  overflow: hidden;
  background: var(--rust);
  color: #fff9f3;
}

.fact-band-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.fact-band p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  margin: 0;
  font-size: 0.93rem;
  white-space: nowrap;
}

.fact-band p > .ui-icon {
  width: 18px;
  height: 18px;
}

.fact-band p + p {
  padding-left: 28px;
}

.fact-band p + p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateY(-50%);
  animation: fact-dot-pulse 2.8s var(--ease-in-out) infinite;
  will-change: transform, opacity;
}

.fact-band p:nth-child(3)::before {
  animation-delay: -0.9s;
}

.fact-band p:nth-child(4)::before {
  animation-delay: -1.8s;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-solid {
  background: #f7f6f2;
  color: var(--accent-deep);
}

.button-ghost {
  border-color: rgb(255 255 255 / 0.62);
  background: rgb(20 30 24 / 0.22);
  color: #fff;
}

.button-dark {
  border: 0;
  background: var(--accent-deep);
  color: #fff;
}

.section-kicker {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(48px, 9vw, 124px);
  align-items: center;
}

.about h2,
.section-heading h2,
.visit-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.65rem, 6vw, 5.65rem);
  line-height: 0.98;
  text-wrap: balance;
}

.about-copy > p:not(.section-kicker) {
  max-width: 62ch;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.portrait-media {
  position: relative;
  margin: 0;
  isolation: isolate;
  background: #d8ddd8;
}

.portrait-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgb(255 255 255 / 0.55);
  pointer-events: none;
}

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

.portrait-media img {
  object-position: 50% 50%;
  animation: portrait-image-drift 15s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.fact-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  color: #354039;
  font-size: 0.88rem;
}

.fact-row .ui-icon {
  width: 15px;
  height: 15px;
}

.cafe-rhythm {
  overflow: hidden;
  background: #edf1ed;
}

.rhythm-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
}

.rhythm-intro h2 {
  max-width: 13ch;
  font-size: clamp(3rem, 6.4vw, 6rem);
  line-height: 0.92;
  text-wrap: balance;
}

.rhythm-intro p {
  max-width: 44ch;
  margin: 0 0 0.35em;
  color: var(--muted);
  font-size: 1.06rem;
}

.rhythm-composition {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  margin-top: clamp(56px, 8vw, 104px);
}

.rhythm-photo {
  margin: 0;
}

.rhythm-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.rhythm-photo figcaption,
.gallery-entry figcaption {
  margin-top: 12px;
  color: #47524b;
  font-size: 0.84rem;
}

.rhythm-photo-street {
  grid-column: 1 / span 5;
}

.rhythm-photo-street img {
  aspect-ratio: 4 / 5;
}

.rhythm-photo-coffee {
  grid-column: 9 / span 4;
  margin-top: clamp(90px, 12vw, 170px);
}

.rhythm-photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  animation: coffee-frame-float 6.5s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.rhythm-photo-coffee img {
  aspect-ratio: 1;
  animation: coffee-image-drift 15s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.rhythm-notes {
  grid-column: 6 / span 3;
  align-self: center;
  padding-top: 12px;
}

.rhythm-notes article {
  padding: 22px 0 26px;
  border-top: 1px solid #aeb8b0;
}

.rhythm-notes article:last-child {
  border-bottom: 1px solid #aeb8b0;
}

.rhythm-notes span {
  color: var(--rust);
  font-family: "CSY Display", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.rhythm-notes .note-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rhythm-notes .note-label .ui-icon {
  width: 17px;
  height: 17px;
}

.rhythm-notes p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.menu-section {
  background: #e1e9e2;
  scroll-margin-top: 96px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-heading p {
  max-width: 42ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.menu-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
}

.menu-section .section-heading {
  display: block;
}

.menu-section .menu-kicker {
  margin: 0 0 20px;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.menu-section .section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2.9rem, 5.2vw, 5.2rem);
  line-height: 0.98;
}

.menu-section .section-heading p:not(.menu-kicker) {
  max-width: 42ch;
  margin-top: 20px;
}

.menu-full-button {
  min-width: 166px;
  min-height: 52px;
  justify-self: end;
  border: 0;
  border-radius: 0;
  background: var(--rust);
  color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 36px);
  margin-top: clamp(48px, 5.5vw, 78px);
}

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

.menu-card:nth-child(1),
.menu-card:nth-child(2),
.menu-card:nth-child(3) {
  grid-column: auto;
}

.menu-image {
  position: relative;
  isolation: isolate;
  background: #c8d0ca;
}

.menu-image img {
  object-position: center;
  transition: transform 240ms var(--ease-out);
}

.steam-mark {
  position: absolute;
  z-index: 2;
  display: block;
  color: rgb(255 255 255 / 0.92);
  filter: drop-shadow(0 2px 5px rgb(24 32 27 / 0.26));
  pointer-events: none;
}

.steam-mark i {
  position: absolute;
  bottom: 0;
  display: block;
  width: 34%;
  height: 86%;
  border-left: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0;
  transform-origin: 50% 100%;
  animation: steam-rise 3.6s var(--ease-in-out) infinite;
  will-change: transform, opacity;
}

.steam-mark i:nth-child(1) {
  left: 4%;
  animation-delay: -2.4s;
}

.steam-mark i:nth-child(2) {
  left: 34%;
  height: 100%;
  animation-delay: -1.2s;
}

.steam-mark i:nth-child(3) {
  left: 66%;
}

.menu-steam {
  top: 11%;
  left: 50%;
  width: 36%;
  height: 24%;
  transform: translateX(-50%);
}

.menu-card-copy {
  padding-top: 20px;
}

.menu-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.5rem, 2.15vw, 2.15rem);
  line-height: 1;
}

.menu-icon {
  width: 22px;
  height: 22px;
  color: var(--rust);
  stroke-width: 1.8;
}

.menu-card-copy > p {
  min-height: 4.35em;
  margin: 12px 0 20px;
  color: var(--muted);
}

.swipe-hint {
  display: none;
}

.menu-card dl {
  margin: 0;
  border-top: 1px solid #aab7ad;
}

.menu-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding-block: 10px;
  border-bottom: 1px solid #bec8c0;
}

.menu-card dt {
  font-weight: 600;
}

.menu-card dd {
  margin: 0;
  color: var(--rust);
  font-family: "CSY Display", Arial, sans-serif;
  font-weight: 700;
}

.menu-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 16px;
  border-top: 1px solid #aab7ad;
}

.menu-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.menu-actions .menu-price-note {
  margin-left: auto;
  text-align: right;
}

.button-icon {
  width: 18px;
  height: 18px;
  margin-left: 2px;
  transition: transform 180ms var(--ease-out);
}

.signature {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  min-height: 0;
  place-items: end start;
  overflow: hidden;
  isolation: isolate;
  background: var(--accent-deep);
  color: #fff;
}

.signature::before {
  content: "";
  position: absolute;
  top: -36%;
  left: -24%;
  z-index: 1;
  width: 54%;
  height: 180%;
  background: linear-gradient(102deg, transparent 14%, rgb(231 184 62 / 0.22) 50%, transparent 86%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: signature-light-pass 14s linear infinite;
  will-change: transform, opacity;
}

.signature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 0.46), transparent 58%);
  z-index: 1;
  pointer-events: none;
}

.signature > picture.signature-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}

.signature > picture.signature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: signature-image-drift 18s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.signature-seal {
  top: clamp(24px, 5vw, 62px);
  right: max(20px, calc((100vw - 1240px) / 2));
}

.signature-seal > span {
  background: var(--blue);
  color: #fff;
}

.signature-copy {
  position: relative;
  z-index: 3;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto clamp(44px, 8vw, 86px) max(20px, calc((100vw - 1240px) / 2));
}

.signature h2 {
  max-width: 9ch;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
}

.signature p {
  margin: 18px 0 0;
  font-size: 1.12rem;
}

.brand-ribbon {
  overflow: hidden;
  background: var(--blue);
  color: #fff;
}

.brand-ribbon-track {
  display: flex;
  width: max-content;
  --ribbon-shift: -33.333333%;
  animation: ribbon-shift 24s linear infinite;
  will-change: transform;
}

.brand-ribbon-set {
  display: flex;
  flex: 0 0 auto;
  min-height: 76px;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
  font-family: "CSY Display", Arial, sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 1.75rem);
  font-weight: 650;
  white-space: nowrap;
}

.brand-ribbon-set i {
  display: inline-block;
  color: var(--yellow);
  font-style: normal;
  animation: ribbon-star-spin 4s linear infinite;
  will-change: transform;
}

@keyframes ribbon-shift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--ribbon-shift), 0, 0);
  }
}

@keyframes hero-image-breathe {
  from {
    transform: translate3d(-0.8%, 0, 0) scale(1.035);
  }
  to {
    transform: translate3d(0.8%, -0.7%, 0) scale(1.075);
  }
}

@keyframes hero-glow-drift {
  from {
    opacity: 0.56;
    transform: translate3d(-12%, 9%, 0) scale(0.94);
  }
  to {
    opacity: 0.96;
    transform: translate3d(18%, -8%, 0) scale(1.1);
  }
}

@keyframes hero-light-pass {
  0%, 12% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(7deg);
  }
  34% {
    opacity: 0.72;
  }
  76%, 100% {
    opacity: 0;
    transform: translate3d(510%, 0, 0) rotate(7deg);
  }
}

@keyframes seal-float {
  from {
    transform: translate3d(0, 6px, 0) rotate(-1.5deg);
  }
  to {
    transform: translate3d(0, -8px, 0) rotate(1.5deg);
  }
}

@keyframes seal-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes seal-heartbeat {
  0%, 100% {
    opacity: 0.86;
    transform: scale(0.96);
  }
  48% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes fact-dot-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(0.76);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.34);
  }
}

@keyframes portrait-image-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1.02);
  }
  to {
    transform: translate3d(-1.2%, 0.8%, 0) scale(1.07);
  }
}

@keyframes coffee-frame-float {
  from {
    transform: translate3d(0, 7px, 0) rotate(-0.7deg);
  }
  to {
    transform: translate3d(0, -9px, 0) rotate(0.7deg);
  }
}

@keyframes coffee-image-drift {
  from {
    transform: translate3d(-0.7%, 0, 0) scale(1.025);
  }
  to {
    transform: translate3d(0.9%, -0.8%, 0) scale(1.075);
  }
}

@keyframes steam-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 10%, 0) scaleY(0.76) rotate(-5deg);
  }
  30% {
    opacity: 0.9;
  }
  72% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translate3d(14%, -28%, 0) scaleY(1.18) rotate(7deg);
  }
}

@keyframes signature-light-pass {
  0%, 14% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0) rotate(5deg);
  }
  38% {
    opacity: 0.84;
  }
  78%, 100% {
    opacity: 0;
    transform: translate3d(285%, 0, 0) rotate(5deg);
  }
}

@keyframes signature-image-drift {
  from {
    transform: translate3d(-0.7%, 0, 0) scale(1.025);
  }
  to {
    transform: translate3d(0.9%, -0.6%, 0) scale(1.07);
  }
}

@keyframes ribbon-star-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gallery-image-drift-a {
  from {
    transform: translate3d(-0.8%, 0, 0) scale(1.035);
  }
  to {
    transform: translate3d(0.8%, -0.65%, 0) scale(1.075);
  }
}

@keyframes gallery-image-drift-b {
  from {
    transform: translate3d(0.7%, -0.4%, 0) scale(1.07);
  }
  to {
    transform: translate3d(-0.9%, 0.7%, 0) scale(1.035);
  }
}

@keyframes review-quote-float {
  from {
    opacity: 0.58;
    transform: translate3d(3%, 3%, 0) rotate(-3deg);
  }
  to {
    opacity: 1;
    transform: translate3d(-2%, -3%, 0) rotate(2deg);
  }
}

@keyframes review-glow-drift {
  from {
    opacity: 0.5;
    transform: translate3d(-8%, 5%, 0) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate3d(22%, -5%, 0) scale(1.16);
  }
}

@keyframes stars-breathe {
  0%, 100% {
    opacity: 0.66;
    transform: scale(0.985);
  }
  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

.gallery-section .section-heading h2 {
  max-width: 10ch;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(44px, 6vw, 72px);
}

.gallery-entry {
  min-width: 0;
  margin: 0;
}

.gallery-item {
  position: relative;
  isolation: isolate;
  width: 100%;
  padding: 0;
  border: 0;
  background: #d7dbd7;
  cursor: zoom-in;
}

.gallery-item img {
  animation: gallery-image-drift-a 14s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.gallery-item::after {
  content: "View";
  position: absolute;
  bottom: 12px;
  left: 50%;
  z-index: 2;
  padding: 7px 13px;
  border: 1px solid rgb(255 255 255 / 0.44);
  border-radius: var(--button-radius);
  background: rgb(14 57 40 / 0.82);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translate3d(-50%, 8px, 0);
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
  pointer-events: none;
}

.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.gallery-entry:nth-child(3n + 2) .gallery-item img {
  animation-name: gallery-image-drift-b;
  animation-delay: -4.5s;
}

.gallery-entry:nth-child(3n + 3) .gallery-item img {
  animation-delay: -9s;
}

.gallery-entry:nth-child(1) .gallery-item img {
  object-position: 50% 50%;
}

.gallery-entry:nth-child(2) .gallery-item img {
  object-position: 50% 47%;
}

.gallery-entry:nth-child(3) .gallery-item img {
  object-position: 50% 44%;
}

.gallery-entry:nth-child(4) .gallery-item img {
  object-position: 50% 48%;
}

.gallery-entry:nth-child(5) .gallery-item img,
.gallery-entry:nth-child(6) .gallery-item img {
  object-position: 50% 50%;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--accent-deep);
  color: #f7f6f2;
}

.reviews-section::before {
  content: "“";
  position: absolute;
  top: -0.18em;
  right: -0.08em;
  z-index: -1;
  color: rgb(255 255 255 / 0.055);
  font-family: Georgia, serif;
  font-size: clamp(28rem, 48vw, 52rem);
  line-height: 0.8;
  pointer-events: none;
  animation: review-quote-float 12s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.reviews-section::after {
  content: "";
  position: absolute;
  top: 12%;
  left: -18%;
  z-index: -1;
  width: 58vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(55 111 152 / 0.34), transparent 66%);
  pointer-events: none;
  animation: review-glow-drift 15s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.reviews-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 36px;
  align-items: end;
  padding-bottom: 42px;
  border-bottom: 1px solid rgb(255 255 255 / 0.22);
}

.reviews-heading p {
  margin: 0;
  color: #cad8d0;
}

.reviews-heading .rating-value {
  color: #fff;
  font-family: "CSY Display", Arial, sans-serif;
  font-size: clamp(3.8rem, 7vw, 5.6rem);
  font-weight: 700;
  line-height: 0.82;
}

.reviews-heading h2 {
  max-width: none;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.9;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(36px, 6vw, 78px);
  margin-top: 48px;
}

.review-stack {
  display: grid;
  gap: 0;
}

.review-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 44px) 0;
  border: 0;
  border-top: 1px solid rgb(255 255 255 / 0.26);
  border-radius: 0;
  background: transparent;
}

.review-featured {
  min-height: 100%;
  padding-top: clamp(30px, 4vw, 52px);
  border-top-color: var(--yellow);
}

.stars {
  display: inline-block;
  color: #bfe3d3;
  letter-spacing: 0.08em;
  transform-origin: left center;
  animation: stars-breathe 3.4s var(--ease-in-out) infinite;
  will-change: transform, opacity;
}

.stars span {
  opacity: 0.3;
}

.review-card blockquote {
  margin: 26px 0 32px;
  font-family: "CSY Display", Arial, sans-serif;
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  font-weight: 430;
  line-height: 1.28;
}

.review-stack .review-card blockquote {
  font-size: clamp(1.1rem, 1.55vw, 1.38rem);
}

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

.review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.review-author strong {
  line-height: 1.25;
}

.review-author a {
  color: #bfe3d3;
  font-size: 0.88rem;
  text-underline-offset: 3px;
}

.visit-section {
  background: #dbe4dd;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: stretch;
}

.visit-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.visit-copy h2 {
  max-width: 8ch;
}

.visit-copy address {
  margin-top: 30px;
  color: var(--muted);
  font-style: normal;
  font-size: 1.04rem;
}

.visit-details {
  width: 100%;
  margin: 32px 0;
  border-top: 1px solid #aebbb1;
}

.visit-details div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding-block: 13px;
  border-bottom: 1px solid #b9c5bc;
}

.visit-details span {
  color: var(--muted);
}

.visit-details .detail-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.visit-details .detail-label .ui-icon {
  width: 16px;
  height: 16px;
}

.visit-details strong,
.visit-details a {
  font-weight: 600;
}

.visit-copy .button-solid {
  background: var(--accent-deep);
  color: #fff;
}

.map-wrap {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #cbd2cc;
}

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

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

.site-footer {
  padding: 70px 0 24px;
  background: #111814;
  color: #ebeee9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(120px, 0.7fr));
  gap: 34px;
}

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

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

.footer-brand p {
  margin: 0;
  font-family: "CSY Display", Arial, sans-serif;
  font-weight: 650;
  line-height: 1.15;
}

.footer-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid > div > a {
  display: block;
  margin: 0;
  color: #bfc8c1;
  line-height: 1.8;
  text-decoration: none;
}

.footer-social a {
  border-color: rgb(255 255 255 / 0.24);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 0.16);
  color: #9da8a0;
  font-size: 0.86rem;
}

.footer-base a {
  color: inherit;
}

.footer-base p {
  margin: 0;
}

dialog {
  padding: 0;
  border: 0;
  background: transparent;
}

dialog::backdrop {
  background: rgb(4 9 6 / 0.88);
  backdrop-filter: blur(8px);
}

dialog[open]::backdrop {
  animation: backdrop-enter 200ms var(--ease-out);
}

.dialog-close {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-close .ui-icon,
.lightbox-nav .ui-icon {
  width: 20px;
  height: 20px;
}

.lightbox[open] {
  position: fixed;
  inset: 0;
  display: grid;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  place-items: center;
  overflow: hidden;
  background: transparent;
  color: #fff;
}

.lightbox .dialog-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  background: rgb(10 18 13 / 0.72);
}

.lightbox figure {
  display: grid;
  max-width: min(86vw, 1100px);
  max-height: 88dvh;
  margin: 0;
  place-items: center;
}

.lightbox[open] figure,
.full-menu-dialog[open] {
  animation: surface-enter 260ms var(--ease-out);
}

.lightbox figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 80dvh;
  display: block;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: #e6ebe7;
  text-align: center;
}

.lightbox-count {
  position: fixed;
  bottom: 22px;
  left: 22px;
  margin: 0;
  color: #fff;
  font-family: "CSY Display", Arial, sans-serif;
  font-weight: 650;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.55);
  border-radius: 50%;
  background: rgb(10 18 13 / 0.58);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-nav:active {
  transform: translateY(-50%) scale(0.97);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.full-menu-dialog[open] {
  width: min(1120px, calc(100vw - 28px));
  max-width: none;
  max-height: calc(100dvh - 28px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.full-menu-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: rgb(251 250 247 / 0.94);
  backdrop-filter: blur(12px);
}

.full-menu-header p,
.full-menu-header h2 {
  margin: 0;
}

.full-menu-header p {
  color: var(--muted);
  font-size: 0.85rem;
}

.full-menu-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.full-menu-pages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 20px;
}

.full-menu-pages img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes backdrop-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes surface-enter {
  from {
    opacity: 0.35;
    transform: translate3d(0, 12px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.button-solid:focus-visible {
  background: #d8eee4;
}

.button-ghost:focus-visible {
  background: rgb(255 255 255 / 0.14);
}

.button-dark:focus-visible,
.visit-copy .button-solid:focus-visible {
  background: var(--accent);
}

.menu-full-button:focus-visible {
  background: #7f3423;
}

@media (hover: hover) and (pointer: fine) {
  .site-menu > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .social-links a:hover:not(:active) {
    background: #f7f6f2;
    color: var(--accent-deep);
    transform: translateY(-2px);
  }

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

  .button:hover:not(:active) .button-icon {
    transform: translateX(3px);
  }

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

  .button-ghost:hover {
    background: rgb(255 255 255 / 0.14);
  }

  .button-dark:hover,
  .visit-copy .button-solid:hover {
    background: var(--accent);
  }

  .menu-full-button:hover {
    background: #7f3423;
  }

  .menu-card:hover .menu-image img {
    transform: scale(1.025);
  }

  .gallery-item:hover::after {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }

  .gallery-item:hover img {
    animation-play-state: paused;
  }

  .footer-grid > div > a:hover {
    color: #fff;
  }
}

@media (max-width: 1024px) {
  .fact-band {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .fact-band::-webkit-scrollbar {
    display: none;
  }

  .fact-band-inner {
    width: max-content;
    justify-content: flex-start;
    padding-right: 20px;
  }

  .site-menu {
    gap: 17px;
  }

  .about {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 48px;
  }

  .gallery-grid {
    gap: 18px;
  }

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

  .menu-card:nth-child(1),
  .menu-card:nth-child(2),
  .menu-card:nth-child(3) {
    grid-column: span 1;
  }

  .rhythm-composition {
    gap: 18px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, minmax(150px, 0.8fr));
  }
}

@media (min-width: 768px) {
  .site-header {
    inset: 0 0 auto;
    min-height: 84px;
    padding: 14px max(28px, calc((100vw - 1240px) / 2)) 12px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(to bottom, rgb(10 18 13 / 0.7), transparent);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand {
    gap: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .brand img {
    width: 58px;
    height: 58px;
    border: 1px solid rgb(255 255 255 / 0.78);
    box-shadow: 0 4px 18px rgb(0 0 0 / 0.24);
  }

  .site-menu {
    gap: clamp(18px, 2.2vw, 34px);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .site-menu > a {
    padding-block: 10px;
  }

  .social-links {
    gap: 4px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
    border: 0;
  }

  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
    grid-template-rows: 1fr auto auto;
    column-gap: clamp(48px, 8vw, 150px);
    align-items: end;
    padding-top: 122px;
    padding-bottom: clamp(64px, 8vw, 100px);
  }

  .hero-content > .hero-kicker {
    display: block;
    max-width: none;
    grid-column: 1;
    grid-row: 2;
    margin: 0 0 20px;
    color: rgb(255 255 255 / 0.9);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgb(0 0 0 / 0.28);
  }

  .hero h1 {
    grid-column: 1;
    grid-row: 3;
    max-width: 12ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 7.4vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.015em;
    line-height: 0.9;
    text-transform: uppercase;
    text-shadow: 0 4px 26px rgb(0 0 0 / 0.38);
  }

  .hero-content > p:not(.hero-kicker) {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    max-width: 31ch;
    margin: 0 0 0 auto;
    font-size: clamp(1.06rem, 1.55vw, 1.35rem);
    line-height: 1.42;
    text-align: right;
    text-shadow: 0 2px 18px rgb(0 0 0 / 0.36);
    text-wrap: pretty;
  }

  .hero-actions {
    grid-column: 2;
    grid-row: 3;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    width: 100%;
    gap: 14px;
    margin-top: 28px;
  }

  .hero-actions .button {
    min-height: 60px;
    justify-content: space-between;
    padding: 15px 20px;
    border-radius: 0;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
  }

  .hero-seal {
    top: clamp(104px, 8vw, 138px);
    right: max(28px, calc((100vw - 1240px) / 2));
    width: clamp(164px, 13.5vw, 230px);
  }
}

@media (min-width: 1200px) {
  .site-header {
    padding-right: max(40px, calc((100vw - 1440px) / 2));
    padding-left: max(40px, calc((100vw - 1440px) / 2));
  }

  .hero-content {
    width: min(1440px, calc(100% - 120px));
    padding-bottom: 78px;
  }

  .hero-seal {
    right: max(40px, calc((100vw - 1440px) / 2));
  }
}

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

  .section {
    padding-block: 82px;
  }

  .site-header {
    inset: 0 0 auto;
    min-height: 78px;
    padding: max(10px, env(safe-area-inset-top)) 18px 10px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(to bottom, rgb(10 18 13 / 0.7), transparent);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header .brand {
    position: static;
    z-index: 1;
    flex: 0 0 auto;
  }

  .brand img {
    width: 56px;
    height: 56px;
    border: 1px solid rgb(255 255 255 / 0.82);
    box-shadow: 0 4px 18px rgb(0 0 0 / 0.26);
  }

  .brand span {
    position: absolute;
    top: 50%;
    left: calc(50% - 18px);
    max-width: none;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(0.68rem, 3vw, 0.96rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .mobile-social-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    margin-right: 8px;
  }

  .mobile-social-links a {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 160ms ease, transform 160ms var(--ease-out);
  }

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

  .mobile-social-links svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
  }

  .mobile-social-links .icon-fill {
    fill: currentColor;
    stroke: none;
  }

  .site-menu .nav-social {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .site-menu {
    position: fixed;
    top: 82px;
    right: 10px;
    left: 10px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgb(255 255 255 / 0.18);
    border-radius: var(--radius);
    background: #15241b;
    box-shadow: 0 8px 8px rgb(0 0 0 / 0.18);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 180ms var(--ease-out), visibility 0s 180ms;
  }

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

  .site-menu > a {
    padding: 13px 8px;
    border-bottom: 1px solid rgb(255 255 255 / 0.12);
    font-size: 1.05rem;
  }

  .site-menu > a::after {
    display: none;
  }

  .site-menu > a[aria-current="location"] {
    color: #c8eadb;
  }

  .nav-social {
    margin-top: 12px;
  }

  .hero-content {
    width: 100%;
    margin-inline: 0;
    padding: 0 28px clamp(72px, 8svh, 100px);
  }

  .hero-content > .hero-kicker {
    display: block;
    max-width: none;
    margin: 0 0 20px;
    color: rgb(255 255 255 / 0.9);
    font-size: clamp(0.64rem, 2.6vw, 0.72rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 2px 12px rgb(0 0 0 / 0.28);
  }

  .hero h1 {
    max-width: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.65rem, 11vw, 3.8rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 0.92;
    text-transform: uppercase;
    text-shadow: 0 3px 22px rgb(0 0 0 / 0.34);
  }

  .mobile-title-break {
    display: inline;
  }

  .hero-content > p:not(.hero-kicker) {
    max-width: 30ch;
    margin-top: 18px;
    color: rgb(255 255 255 / 0.94);
    font-size: 1.06rem;
    line-height: 1.45;
    text-shadow: 0 2px 16px rgb(0 0 0 / 0.34);
    text-wrap: pretty;
  }

  .hero-actions {
    width: 100%;
    flex-wrap: nowrap;
    gap: 14px;
    margin-top: 30px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-height: 62px;
    justify-content: space-between;
    padding: 15px 17px;
    border-radius: 0;
    font-size: 0.94rem;
    letter-spacing: 0.01em;
  }

  .hero-seal {
    top: 124px;
    right: 18px;
    width: 122px;
  }

  .motion-seal text {
    font-size: 8.2px;
    letter-spacing: 1.2px;
  }

  .fact-band {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .fact-band::-webkit-scrollbar {
    display: none;
  }

  .fact-band-inner {
    width: max-content;
    min-height: 66px;
    padding-right: 28px;
  }

  .fact-band p {
    font-size: 0.88rem;
  }

  .about,
  .visit-grid,
  .review-layout {
    grid-template-columns: 1fr;
  }

  .about {
    gap: 44px;
  }

  .rhythm-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rhythm-intro h2 {
    font-size: clamp(2.9rem, 13.5vw, 4.3rem);
  }

  .rhythm-composition {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 14px;
    margin-top: 46px;
  }

  .rhythm-photo-street {
    grid-column: 1 / -1;
  }

  .rhythm-notes {
    grid-column: 1 / -1;
    grid-row: auto;
    padding-top: 0;
  }

  .rhythm-photo-coffee {
    grid-column: 2;
    width: calc(100% + 56px);
    margin: 0 0 0 -56px;
  }

  .about h2,
  .section-heading h2,
  .visit-copy h2 {
    font-size: clamp(2.7rem, 13vw, 4.35rem);
  }

  .fact-row {
    gap: 7px;
  }

  .menu-grid {
    display: flex;
    width: auto;
    gap: 14px;
    margin-right: -14px;
    margin-left: -14px;
    padding: 0 14px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 14px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--rust) rgb(22 81 58 / 0.14);
    scrollbar-width: thin;
  }

  .menu-grid.is-auto-scrolling {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  .menu-card {
    flex: 0 0 min(82vw, 344px);
    scroll-snap-align: start;
  }

  .swipe-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 32px 0 12px;
    color: var(--accent-deep);
    font-size: 0.88rem;
    font-weight: 650;
  }

.swipe-hint span {
  display: inline-flex;
  align-items: center;
  color: var(--rust);
  font-size: 1.25rem;
}

.swipe-hint .ui-icon {
  width: 20px;
  height: 20px;
}

  .menu-card-copy > p {
    min-height: 0;
  }

  .menu-heading-row {
    display: block;
  }

  .menu-section {
    scroll-margin-top: 78px;
  }

  .menu-section .section-heading h2 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 13vw, 4.35rem);
  }

  .menu-full-button {
    width: 100%;
    min-height: 56px;
    margin-top: 26px;
    justify-content: space-between;
  }

  .menu-actions {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 30px;
    padding-top: 14px;
  }

  .signature {
    aspect-ratio: 7 / 10;
    min-height: 0;
  }

  .signature > picture.signature-media img {
    object-position: 58% center;
  }

  .signature-copy {
    margin-left: 14px;
  }

  .signature-seal {
    top: 22px;
    right: 14px;
    width: 108px;
  }

  .gallery-section .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: row;
    gap: 24px 10px;
  }

  .gallery-entry figcaption {
    margin-top: 8px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .reviews-heading h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .review-layout {
    gap: 16px;
  }

  .review-stack {
    gap: 16px;
  }

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

  .review-featured {
    padding-bottom: 44px;
  }

  .review-card blockquote,
  .review-stack .review-card blockquote {
    font-size: 1.22rem;
  }

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

  .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    z-index: 25;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1px;
    min-height: 58px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.18);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 6px 8px rgb(10 18 13 / 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 20px));
    transition: opacity 180ms ease, transform 280ms var(--ease-drawer);
  }

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

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--accent-deep);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-action-bar a:last-child {
    background: var(--rust);
  }

  .mobile-action-bar svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

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

  .site-footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

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

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-nav:active {
    transform: scale(0.97);
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }

  .lightbox figure {
    max-width: calc(100vw - 28px);
  }

  .lightbox figure img {
    max-height: 73dvh;
  }

  .full-menu-pages {
    grid-template-columns: 1fr;
    padding: 10px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: clamp(2.65rem, 11vw, 3.8rem);
  }

  .hero-actions {
    flex-wrap: nowrap;
  }

  .hero-actions .button {
    min-height: 62px;
    padding-inline: 16px;
  }

  .button {
    min-height: 48px;
    padding-inline: 18px;
  }

  .menu-full-button {
    min-height: 56px;
  }

  .footer-grid {
    gap: 32px 18px;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

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

  .brand span {
    left: calc(50% - 16px);
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .mobile-social-links {
    gap: 0;
    margin-right: 3px;
  }

  .mobile-social-links a {
    width: 25px;
    height: 28px;
  }

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

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-content {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero-content > .hero-kicker {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }
}

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

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

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

  .brand-ribbon-track {
    animation: none;
  }

  .hero-atmosphere,
  .steam-mark,
  .signature::before,
  .reviews-section::before,
  .reviews-section::after {
    display: none;
  }

  .hero-image,
  .portrait-media img,
  .rhythm-photo-frame,
  .rhythm-photo-coffee img,
  .signature > picture.signature-media img,
  .gallery-item img,
  .motion-seal,
  .motion-seal svg,
  .motion-seal > span,
  .stars,
  .brand-ribbon-set i {
    animation: none;
    transform: none;
  }

  .fact-band p + p::before {
    animation: none;
    transform: translateY(-50%);
  }

  .hero-atmosphere::before,
  .hero-atmosphere::after,
  .steam-mark i,
  .signature::before,
  .reviews-section::before,
  .reviews-section::after {
    animation: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .full-menu-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header {
    background: #15241b;
  }
}
