:root {
  --paper: #f2f2ed;
  --paper-soft: #e9e9e2;
  --ink: #1a1a18;
  --ink-soft: #575751;
  --line: rgba(26, 26, 24, 0.18);
  --accent: #bd3f35;
  --accent-bright: #ef6255;
  --deep: #11110f;
  --white: #fafaf6;
  --header-height: 72px;
  --shell: min(1200px, calc(100% - 48px));
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: Aptos, "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

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

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

body.is-locked {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.ui-icon {
  width: 1.05em;
  height: 1.05em;
  display: inline-block;
  flex: 0 0 auto;
  object-fit: contain;
  vertical-align: middle;
}

.ui-icon-inverse {
  filter: brightness(0) invert(1);
}

.link-arrow {
  width: 1.05em;
  height: 1.05em;
  transition: transform 160ms var(--ease-out);
}

.button-icon {
  width: 1.1em;
  height: 1.1em;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus-visible {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

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

.section {
  padding-block: clamp(88px, 11vw, 152px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h2 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 90px);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 140ms var(--ease-out);
}

.button:active,
.menu-toggle:active,
.icon-button:active {
  transform: scale(0.97);
}

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

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(16, 16, 15, 0.22);
  color: var(--white);
  backdrop-filter: blur(8px);
}

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

.button-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.text-link,
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(24px, calc((100vw - 1200px) / 2));
  color: var(--white);
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-solid {
  background: rgba(242, 242, 237, 0.96);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.header-brand-group {
  display: flex;
  align-items: center;
}

.mobile-brand-badge {
  display: none;
}

.brand-link img {
  width: 158px;
  height: auto;
  filter: invert(1);
  transition: filter 220ms ease, transform 220ms var(--ease-out);
}

.site-header.is-solid .brand-link img {
  filter: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, transform 160ms var(--ease-out);
}

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

.menu-toggle {
  min-width: 106px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: 2px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease, transform 140ms var(--ease-out);
}

.menu-lines {
  width: 20px;
  display: grid;
  gap: 5px;
}

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

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.10) 72%, rgba(0, 0, 0, 0.10));
  pointer-events: none;
}

.hero-picture {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  transform-origin: 50% 52%;
  animation: hero-breathe 14s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.hero-kinetic {
  position: absolute;
  top: 19%;
  right: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-kinetic-track {
  width: max-content;
  display: flex;
  align-items: center;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(92px, 13.5vw, 200px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.85;
  opacity: 0.38;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
  animation: hero-drift 24s linear infinite;
  will-change: transform;
}

.hero-kinetic-track span {
  flex: none;
  padding-right: 7vw;
}

.hero-seal,
.hero-title-desktop,
.hero-kicker,
.button-arrow {
  display: none;
}

.hero-title-mobile {
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(54px, 8vh, 96px);
}

.hero h1 {
  max-width: 1080px;
  margin-bottom: 20px;
  font-size: clamp(54px, 6.8vw, 96px);
  text-wrap: balance;
}

.hero p {
  max-width: 500px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.4;
}

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

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

.arrival-strip-inner {
  min-height: 132px;
  display: grid;
  grid-template-columns: 1.45fr 1fr 0.7fr auto;
  align-items: stretch;
}

.arrival-strip p,
.arrival-strip a {
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.arrival-strip p:first-child {
  border-left: 0;
  padding-left: 0;
}

.arrival-strip span {
  color: var(--white);
  font-size: 13px;
}

.arrival-strip strong {
  margin-top: 3px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.arrival-strip a {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding-right: 0;
  font-weight: 800;
  text-underline-offset: 5px;
}

.arrival-strip p:first-child span {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
}

.arrival-label {
  gap: 8px;
}

.arrival-strip p:first-child span::before {
  display: none;
}

.brand-ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--deep);
  color: var(--white);
}

.brand-ticker-track {
  width: max-content;
  display: flex;
  animation: ticker-flow 22s linear infinite;
  will-change: transform;
}

.brand-ticker p {
  flex: none;
  margin: 0;
  padding: 17px 28px 16px 0;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
}

.brand-ticker i {
  padding-inline: 10px;
  color: var(--accent-bright);
  font-style: normal;
}

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

.ratio-3-4 {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ratio-3-4 > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--position, 50% 50%);
}

.about-media {
  position: relative;
  max-width: 520px;
}

.about-media > img {
  transform-origin: 48% 52%;
  animation: about-breathe 10s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.orbit-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 12px 32px rgba(17, 17, 15, 0.24);
  color: var(--white);
}

.orbit-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: currentColor;
  animation: badge-spin 17s linear infinite;
  will-change: transform;
}

.orbit-badge text {
  font-family: var(--body);
  font-size: 8.4px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.orbit-badge > span {
  position: relative;
  font-family: var(--display);
  font-size: 43px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

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

.about-copy h2 {
  font-size: clamp(48px, 6.4vw, 84px);
}

.about-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
}

.scene-story {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--accent);
  color: var(--white);
}

.scene-story::before,
.scene-story::after {
  content: "";
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

.scene-story::before {
  top: -110px;
  right: -70px;
  width: clamp(220px, 31vw, 470px);
  aspect-ratio: 1;
  animation: scene-orbit-a 11s var(--ease-in-out) infinite alternate;
}

.scene-story::after {
  bottom: -150px;
  left: -90px;
  width: clamp(260px, 40vw, 610px);
  aspect-ratio: 1;
  animation: scene-orbit-b 14s var(--ease-in-out) infinite alternate;
}

.scene-story > .shell {
  position: relative;
  z-index: 1;
}

.scene-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(48px, 7vw, 88px);
}

.scene-heading h2 {
  margin: 0;
  color: var(--white);
}

.scene-heading p {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.55;
}

.scene-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 0.75fr));
  align-items: end;
  gap: 22px;
}

.scene-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--deep);
}

.scene-table {
  aspect-ratio: 4 / 3;
}

.scene-coffee,
.scene-window {
  aspect-ratio: 4 / 5;
}

.scene-frame::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.64), transparent);
  pointer-events: none;
}

.scene-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.scene-frame > picture {
  display: block;
  width: 100%;
  height: 100%;
}

.scene-frame figcaption {
  position: absolute;
  inset: auto 22px 20px;
  z-index: 2;
}

.scene-frame figcaption strong,
.scene-frame figcaption span {
  display: block;
}

.scene-frame figcaption strong {
  font-family: var(--display);
  font-size: clamp(23px, 2.4vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.scene-frame figcaption span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.coffee-steam {
  position: absolute;
  top: 12%;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 110px;
  display: flex;
  justify-content: center;
  gap: 7px;
  transform: translateX(-50%);
  pointer-events: none;
}

.coffee-steam i {
  width: 2px;
  height: 54px;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transform-origin: 50% 100%;
  animation: steam-rise 3.2s var(--ease-out) infinite;
  will-change: transform, opacity;
}

.coffee-steam i:nth-child(2) {
  height: 66px;
  animation-delay: -1.05s;
}

.coffee-steam i:nth-child(3) {
  height: 46px;
  animation-delay: -2.1s;
}

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

.section-heading p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.menu-section {
  background: var(--deep);
  color: var(--white);
}

.menu-heading h2 {
  color: var(--white);
}

.menu-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.menu-section .eyebrow,
.reviews-section .eyebrow {
  color: var(--accent-bright);
}

.menu-card {
  border-top: 5px solid var(--accent);
  background: transparent;
}

.menu-image img {
  transform-origin: 50% 54%;
  animation: menu-breathe 9s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.menu-card:nth-child(2) .menu-image img {
  animation-delay: -3s;
}

.menu-card:nth-child(3) .menu-image img {
  animation-delay: -6s;
}

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

.menu-card-copy {
  padding: 28px 0 30px;
}

.menu-card h3 {
  margin-bottom: 8px;
  font-size: clamp(28px, 2.5vw, 38px);
}

.menu-card-copy > p {
  min-height: 52px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.66);
}

.menu-list {
  margin: 0;
}

.menu-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding-block: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-list div:last-child {
  border-bottom: 0;
}

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

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

.menu-list dd {
  color: var(--accent-bright);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  white-space: nowrap;
}

.menu-note {
  margin: 54px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.photo-break {
  position: relative;
  min-height: min(76svh, 780px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.photo-break::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.04) 70%);
}

.photo-break > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 56% 50%;
  animation: cabinet-drift 13s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.photo-break-copy {
  padding-bottom: clamp(52px, 8vw, 100px);
}

.photo-break-copy h2 {
  max-width: 920px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(48px, 7vw, 96px);
}

.photo-break-copy a {
  display: inline-flex;
  gap: 10px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.text-link span,
.phone-link span,
.photo-break-copy a span,
.review > a span {
  transition: transform 160ms var(--ease-out);
}

.text-link .link-arrow,
.photo-break-copy a .link-arrow,
.review > a .link-arrow,
.arrival-strip a .link-arrow,
.map-place-card .link-arrow {
  transition: transform 160ms var(--ease-out);
}

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

.gallery-heading {
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.5fr);
  align-items: end;
  gap: 42px;
}

.gallery-heading p {
  max-width: 360px;
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.gallery-item {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--paper-soft);
  cursor: zoom-in;
  transition: transform 160ms var(--ease-out);
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.66), transparent);
  pointer-events: none;
}

.gallery-item:nth-child(2)::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.02));
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: -46%;
  z-index: 1;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  opacity: 0.75;
  transform: translate3d(-120%, 0, 0) skewX(-14deg);
  animation: gallery-light 8.5s linear infinite;
  pointer-events: none;
  will-change: transform;
}

.gallery-item:nth-child(2)::before,
.gallery-item:nth-child(5)::before {
  animation-delay: -2.8s;
}

.gallery-item:nth-child(3)::before,
.gallery-item:nth-child(6)::before {
  animation-delay: -5.6s;
}

.gallery-item img {
  transition: transform 500ms var(--ease-out);
}

.gallery-item:focus-visible img {
  transform: scale(1.025);
}

.gallery-label {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  color: var(--white);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-align: left;
}

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

.reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.reviews-heading h2 {
  margin-bottom: 0;
}

.reviews-title-group p {
  max-width: 540px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.rating-summary {
  flex: 0 0 auto;
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 12px;
}

.rating-summary strong {
  font-family: var(--display);
  font-size: 54px;
  letter-spacing: -0.04em;
  line-height: 1;
  animation: rating-float 4.2s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.rating-summary span,
.review-author span {
  color: var(--accent-bright);
  font-size: 14px;
  letter-spacing: 0.05em;
  animation: star-glow 2.8s var(--ease-in-out) infinite alternate;
}

.rating-summary small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.68);
}

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

.review {
  position: relative;
  grid-column: 8 / 13;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  transition: border-color 180ms ease, transform 180ms var(--ease-out);
}

.review:first-child {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  min-height: 578px;
  padding: clamp(34px, 5vw, 68px);
  border: 0;
  background: var(--accent);
  isolation: isolate;
  overflow: hidden;
}

.review:first-child::after {
  content: "88";
  position: absolute;
  right: -28px;
  bottom: -38px;
  z-index: 0;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(180px, 27vw, 390px);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.7;
  opacity: 0.24;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  transform-origin: 70% 70%;
  animation: review-mark 8s var(--ease-in-out) infinite alternate;
  pointer-events: none;
  will-change: transform, opacity;
}

.review:first-child > * {
  position: relative;
  z-index: 1;
}

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

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

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

.review blockquote {
  margin: 0 0 30px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.24;
}

.review:first-child blockquote {
  max-width: 620px;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
}

.review:first-child .review-author span {
  color: var(--white);
}

.review > a {
  margin-top: auto;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: clamp(48px, 8vw, 112px);
}

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

.visit-copy h2 {
  font-size: clamp(48px, 6vw, 78px);
}

.visit-copy address {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-style: normal;
  font-size: 18px;
}

.visit-line,
.footer-line {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}

.visit-line > .ui-icon,
.footer-line > .ui-icon {
  margin-top: 4px;
}

.phone-link {
  margin-bottom: 34px;
  font-size: 20px;
}

.phone-link .ui-icon {
  width: 1em;
  height: 1em;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hours-list {
  width: 100%;
  max-width: 430px;
  margin: 0 0 34px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding-block: 8px;
}

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

.hours-list dt {
  color: var(--ink-soft);
}

.hours-list dd {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.map-frame {
  position: relative;
  height: 650px;
  min-height: 650px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  overflow: hidden;
}

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

.map-place-card {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: grid;
  width: min(286px, calc(100% - 32px));
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 18px rgba(20, 19, 17, 0.16);
  color: var(--ink);
  line-height: 1.35;
  text-decoration: none;
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.map-place-card strong {
  font-size: 16px;
}

.map-place-card > span {
  color: var(--ink-soft);
  font-size: 13px;
}

.map-place-card > span:last-child {
  margin-top: 6px;
}

.map-place-card > span:last-child span {
  color: var(--accent);
  letter-spacing: 0.04em;
}

.map-place-card > span:last-child .link-arrow {
  width: 1em;
  height: 1em;
  margin-left: 2px;
  vertical-align: -0.18em;
}

.visit-practical {
  margin-top: clamp(70px, 9vw, 118px);
  padding-block: 34px;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 110px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visit-practical h3 {
  margin-bottom: 8px;
  font-size: clamp(30px, 3.5vw, 46px);
}

.visit-practical p {
  margin: 0;
  color: var(--ink-soft);
}

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

.visit-practical li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.visit-practical li .ui-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.visit-practical li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.site-footer {
  padding-block: 64px 46px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 0.8fr auto;
  gap: 42px;
  align-items: start;
}

.footer-brand img {
  width: 190px;
  height: auto;
  margin-bottom: 22px;
}

.footer-brand p,
.footer-location p {
  margin-bottom: 10px;
  color: var(--ink-soft);
}

.footer-location a,
.footer-nav a {
  font-weight: 800;
  text-underline-offset: 4px;
}

.footer-location a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-nav {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.footer-social {
  color: var(--ink);
}

.mobile-dock {
  display: none;
}

.nav-dialog,
.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
}

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

.nav-dialog::backdrop,
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.nav-dialog-inner {
  width: var(--shell);
  min-height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-block: 22px 34px;
}

.dialog-topline {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dialog-topline img {
  width: 180px;
  height: auto;
  filter: invert(1);
}

.icon-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 2px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 140ms var(--ease-out);
}

.icon-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav {
  align-self: center;
  display: grid;
  justify-items: start;
}

.main-nav a {
  font-family: var(--display);
  font-size: clamp(46px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-decoration: none;
  transition: color 160ms ease, transform 180ms var(--ease-out);
}

.main-nav a:focus-visible {
  color: var(--ink);
  transform: translateX(8px);
}

.nav-dialog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  padding-top: 20px;
}

.nav-dialog-footer > a {
  font-weight: 800;
  text-underline-offset: 5px;
}

.lightbox {
  background: transparent;
  color: var(--white);
  overflow: hidden;
}

.lightbox-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
  padding: 76px 30px 30px;
}

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

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100% - 46px);
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center;
}

.lightbox figcaption {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  font-size: 14px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
}

.lightbox-prev,
.lightbox-next {
  justify-self: center;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 700ms var(--ease-out), transform 850ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.about-copy {
  --reveal-delay: 70ms;
}

.scene-layout .reveal:nth-child(2),
.menu-grid .reveal:nth-child(2),
.reviews-grid .reveal:nth-child(2) {
  --reveal-delay: 70ms;
}

.scene-layout .reveal:nth-child(3),
.menu-grid .reveal:nth-child(3),
.reviews-grid .reveal:nth-child(3) {
  --reveal-delay: 140ms;
}

.gallery-grid .reveal:nth-child(2) { --reveal-delay: 50ms; }
.gallery-grid .reveal:nth-child(3) { --reveal-delay: 100ms; }
.gallery-grid .reveal:nth-child(4) { --reveal-delay: 150ms; }
.gallery-grid .reveal:nth-child(5) { --reveal-delay: 200ms; }
.gallery-grid .reveal:nth-child(6) { --reveal-delay: 250ms; }

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }

  .button-primary:hover {
    background: #a9342b;
  }

  .button-ghost:hover {
    background: rgba(16, 16, 15, 0.36);
  }

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

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

  .brand-link:hover img {
    transform: translateY(-2px);
  }

  .social-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
  }

  .menu-toggle:hover {
    background: var(--white);
    color: var(--ink);
    transform: translateY(-2px);
  }

  .menu-toggle:hover .menu-lines i:first-child {
    transform: translateX(3px);
  }

  .menu-toggle:hover .menu-lines i:last-child {
    transform: translateX(-3px);
  }

  .site-header.is-solid .menu-toggle:hover {
    background: var(--ink);
    color: var(--white);
  }

  .scene-frame:hover img,
  .gallery-item:hover img {
    transform: scale(1.035);
  }

  .text-link:hover span,
  .phone-link:hover span,
  .photo-break-copy a:hover span,
  .review > a:hover span,
  .text-link:hover .link-arrow,
  .photo-break-copy a:hover .link-arrow,
  .review > a:hover .link-arrow,
  .arrival-strip a:hover .link-arrow,
  .map-place-card:hover .link-arrow {
    transform: translate(3px, -3px);
  }

  .review:not(:first-child):hover {
    border-color: rgba(255, 255, 255, 0.58);
    transform: translateX(-4px);
  }

  .map-place-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(20, 19, 17, 0.22);
  }

  .map-place-card:hover strong {
    color: var(--accent);
  }

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

  .main-nav a:hover {
    color: var(--ink);
    transform: translateX(8px);
  }
}

.js .hero .hero-image,
.js .hero .hero-kinetic-track,
.js .hero .hero-seal svg,
.js .arrival-strip p:first-child span::before,
.js .brand-ticker .brand-ticker-track,
.js .about .about-media > img,
.js .about .orbit-badge svg,
.js .scene-story::before,
.js .scene-story::after,
.js .scene-story .coffee-steam i,
.js .menu-section .menu-image img,
.js .photo-break > img,
.js .gallery-section .gallery-item::before,
.js .reviews-section .rating-summary strong,
.js .reviews-section .rating-summary span,
.js .reviews-section .review-author span,
.js .reviews-section .review:first-child::after {
  animation-play-state: paused;
  will-change: auto;
}

.js .hero.is-motion-active .hero-image,
.js .hero.is-motion-active .hero-kinetic-track,
.js .hero.is-motion-active .hero-seal svg,
.js .arrival-strip.is-motion-active p:first-child span::before,
.js .brand-ticker.is-motion-active .brand-ticker-track,
.js .about.is-motion-active .about-media > img,
.js .about.is-motion-active .orbit-badge svg,
.js .scene-story.is-motion-active::before,
.js .scene-story.is-motion-active::after,
.js .scene-story.is-motion-active .coffee-steam i,
.js .menu-section.is-motion-active .menu-image img,
.js .photo-break.is-motion-active > img,
.js .gallery-section.is-motion-active .gallery-item::before,
.js .reviews-section.is-motion-active .rating-summary strong,
.js .reviews-section.is-motion-active .rating-summary span,
.js .reviews-section.is-motion-active .review-author span,
.js .reviews-section.is-motion-active .review:first-child::after {
  animation-play-state: running;
  will-change: transform, opacity;
}

@keyframes hero-breathe {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.055) translate3d(-0.7%, -0.5%, 0); }
}

@keyframes hero-drift {
  to { transform: translate3d(-33.3333%, 0, 0); }
}

@keyframes ticker-flow {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes location-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  55% { transform: scale(1.65); opacity: 0.55; }
}

@keyframes about-breathe {
  from { transform: scale(1.005) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(0, -0.7%, 0); }
}

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

@keyframes scene-orbit-a {
  from { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.55; }
  to { transform: translate3d(-70px, 86px, 0) rotate(22deg); opacity: 0.22; }
}

@keyframes scene-orbit-b {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.42; }
  to { transform: translate3d(95px, -42px, 0) scale(0.84); opacity: 0.18; }
}

@keyframes steam-rise {
  0% { transform: translate3d(0, 24px, 0) scaleY(0.7) rotate(-3deg); opacity: 0; }
  30% { opacity: 0.72; }
  100% { transform: translate3d(10px, -34px, 0) scaleY(1.16) rotate(8deg); opacity: 0; }
}

@keyframes menu-breathe {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.055) translate3d(0, -0.8%, 0); }
}

@keyframes cabinet-drift {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.085) translate3d(-1.2%, 0, 0); }
}

@keyframes gallery-light {
  0%, 58% { transform: translate3d(-120%, 0, 0) skewX(-14deg); opacity: 0; }
  64% { opacity: 0.72; }
  82%, 100% { transform: translate3d(650%, 0, 0) skewX(-14deg); opacity: 0; }
}

@keyframes rating-float {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -5px, 0); }
}

@keyframes star-glow {
  from { opacity: 0.72; }
  to { opacity: 1; }
}

@keyframes review-mark {
  from { transform: translate3d(0, 0, 0) rotate(-2deg); opacity: 0.18; }
  to { transform: translate3d(-18px, -8px, 0) rotate(2deg); opacity: 0.3; }
}

@media (min-width: 901px) {
  .hero-kinetic {
    display: none;
  }

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

  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.7fr);
    align-items: end;
    gap: clamp(44px, 6vw, 84px);
    padding-top: 24px;
    padding-bottom: clamp(32px, 5vh, 52px);
    border-top: 1px solid rgba(255, 255, 255, 0.52);
  }

  .hero-title-block {
    min-width: 0;
  }

  .hero-kicker {
    display: block;
    margin: 0 0 18px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1;
    text-transform: uppercase;
  }

  .hero h1 {
    max-width: none;
    margin: 0;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(82px, 10vw, 154px);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 0.78;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
    white-space: nowrap;
  }

  .hero-title-desktop {
    display: block;
  }

  .hero-title-mobile {
    display: none;
  }

  .hero-detail {
    width: 100%;
    max-width: 390px;
    justify-self: end;
    padding-bottom: 4px;
    text-align: right;
  }

  .hero-detail > p {
    max-width: 390px;
    margin: 0 0 26px;
    color: var(--white);
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.55;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
  }

  .hero-actions {
    justify-content: flex-end;
    gap: 12px;
  }

  .hero-actions .button {
    min-width: 158px;
    justify-content: space-between;
    gap: 22px;
  }

  .button-arrow {
    display: inline-block;
    font-size: 19px;
    font-weight: 400;
    transition: transform 160ms var(--ease-out);
  }

  .hero-seal {
    position: absolute;
    top: clamp(102px, 13vh, 134px);
    right: max(24px, calc((100vw - 1200px) / 2));
    z-index: 2;
    width: clamp(136px, 13vw, 188px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.92);
    filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.22));
    pointer-events: none;
  }

  .hero-seal svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: none;
    animation: badge-spin 21s linear infinite;
  }

  .hero-seal circle {
    stroke: currentColor;
    stroke-width: 0.8;
  }

  .hero-seal text {
    fill: currentColor;
    font-family: var(--body);
    font-size: 7.6px;
    font-weight: 800;
    letter-spacing: 0.13em;
  }

  .hero-seal > span {
    position: relative;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(45px, 4.8vw, 70px);
    letter-spacing: -0.06em;
    line-height: 1;
  }

  .site-header:not(.is-solid) .menu-toggle {
    background: rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
  }

  @media (hover: hover) and (pointer: fine) {
    .hero-actions .button:hover .button-arrow {
      transform: translate(3px, -3px);
    }
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 40px, 720px);
  }

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

  .about-media {
    width: min(78vw, 520px);
  }

  .about-copy {
    margin-left: min(10vw, 72px);
  }

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

  .arrival-strip p:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .arrival-strip a {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 28px;
  }

  .scene-heading {
    grid-template-columns: 1fr;
  }

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

  .scene-table {
    grid-column: 1 / -1;
  }

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

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

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

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

  .review,
  .review:first-child {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
  }

  .review:first-child {
    border: 0;
  }

  .map-frame,
  .map-frame iframe {
    height: 520px;
    min-height: 520px;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 78px;
    --shell: calc(100% - 32px);
  }

  .section {
    padding-block: 84px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .header-brand-group {
    min-width: 0;
    gap: 7px;
  }

  .mobile-brand-badge {
    width: clamp(42px, 12vw, 50px);
    aspect-ratio: 1;
    flex: none;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(16px, 4.8vw, 20px);
    letter-spacing: -0.04em;
    line-height: 1;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  }

  .brand-link img {
    width: clamp(102px, 28vw, 122px);
  }

  .header-social {
    display: flex;
    gap: 0;
  }

  .header-social a {
    width: 34px;
    height: 44px;
  }

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

  .header-actions {
    gap: 0;
  }

  .menu-toggle {
    width: 42px;
    min-width: 42px;
    height: 44px;
    padding: 0 0 0 8px;
    border: 0;
    background: transparent;
  }

  .menu-toggle > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .menu-lines {
    width: 28px;
    gap: 7px;
  }

  .menu-lines i {
    height: 1.5px;
  }

  .hero::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.08) 36%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.62) 100%);
  }

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

  .hero-title-block {
    min-width: 0;
  }

  .hero-kicker {
    display: block;
    margin: 0 0 14px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1;
    text-transform: uppercase;
  }

  .hero h1 {
    max-width: none;
    margin: 0 0 20px;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(66px, 18.8vw, 82px);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 0.82;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
  }

  .hero-title-desktop {
    display: block;
  }

  .hero-title-mobile {
    display: none;
  }

  .hero-detail {
    width: 100%;
  }

  .hero-detail > p {
    max-width: 358px;
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(16px, 4.35vw, 18px);
    line-height: 1.55;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
  }

  .hero-actions {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 58px;
    justify-content: space-between;
    gap: 10px;
    padding-inline: 16px;
  }

  .button-arrow {
    display: inline-block;
    flex: none;
    font-size: 19px;
    font-weight: 400;
  }

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

  .hero-kinetic {
    display: none;
  }

  .hero-seal {
    position: absolute;
    top: 116px;
    right: 16px;
    z-index: 2;
    width: clamp(126px, 35vw, 144px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.92);
    filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.22));
    pointer-events: none;
  }

  .hero-seal svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: none;
    animation: badge-spin 21s linear infinite;
  }

  .hero-seal circle {
    stroke: currentColor;
    stroke-width: 0.8;
  }

  .hero-seal text {
    fill: currentColor;
    font-family: var(--body);
    font-size: 7.6px;
    font-weight: 800;
    letter-spacing: 0.13em;
  }

  .hero-seal > span {
    position: relative;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 12vw, 52px);
    letter-spacing: -0.06em;
    line-height: 1;
  }

  .hero-place {
    display: none;
  }

  .arrival-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .arrival-strip p,
  .arrival-strip a {
    min-height: 104px;
    padding: 18px 16px;
  }

  .arrival-strip p:first-child {
    padding-left: 0;
  }

  .arrival-strip strong {
    font-size: 18px;
  }

  .arrival-strip a {
    justify-content: flex-start;
    padding-right: 0;
  }

  .brand-ticker p {
    padding-block: 15px 14px;
    font-size: 19px;
  }

  .about {
    gap: 44px;
  }

  .about-media {
    width: 100%;
  }

  .orbit-badge {
    right: 12px;
    bottom: 12px;
    width: 104px;
    height: 104px;
  }

  .orbit-badge text {
    font-size: 8.1px;
  }

  .orbit-badge > span {
    font-size: 36px;
  }

  .about-copy {
    margin-left: 0;
  }

  .about-copy h2,
  .visit-copy h2 {
    font-size: 48px;
  }

  .about-copy > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.7;
  }

  .scene-heading {
    gap: 18px;
    margin-bottom: 38px;
  }

  .scene-heading h2 {
    font-size: 50px;
  }

  .scene-heading p {
    font-size: 16px;
  }

  .scene-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .scene-table,
  .scene-coffee,
  .scene-window {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .scene-story::before {
    right: -120px;
  }

  .scene-story::after {
    left: -160px;
  }

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

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-heading p {
    margin-bottom: 0;
    font-size: 16px;
  }

  .section-heading h2,
  .gallery-heading h2,
  .reviews-heading h2 {
    font-size: 50px;
  }

  .section-heading p {
    font-size: 16px;
  }

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

  .menu-grid {
    gap: 28px;
  }

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

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

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

  .photo-break {
    min-height: 68svh;
  }

  .photo-break > img {
    object-position: 54% center;
  }

  .photo-break-copy h2 {
    font-size: 50px;
  }

  .rating-summary {
    margin-bottom: 0;
  }

  .review {
    padding: 28px 22px;
  }

  .review-author {
    margin-bottom: 24px;
  }

  .review blockquote {
    font-size: 24px;
  }

  .review:first-child blockquote {
    font-size: 34px;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hours-list dd {
    text-align: left;
  }

  .map-frame,
  .map-frame iframe {
    height: 440px;
    min-height: 440px;
  }

  .visit-practical {
    margin-top: 64px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .visit-practical li:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .visit-practical li:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand img {
    width: 176px;
  }

  .footer-social {
    margin-left: -12px;
  }

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

  .mobile-dock {
    position: fixed;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    z-index: 25;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--deep);
    color: var(--white);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(calc(100% + 24px));
    transition: opacity 220ms ease, visibility 220ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-dock.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-dock a {
    min-height: 54px;
    display: grid;
    grid-template-rows: auto auto;
    gap: 2px;
    place-items: center;
    padding: 10px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-dock a .ui-icon {
    width: 17px;
    height: 17px;
  }

  .mobile-dock a:last-child {
    border-right: 0;
  }

  .nav-dialog-inner {
    padding-block: 14px 24px;
  }

  .dialog-topline img {
    width: 148px;
  }

  .main-nav a {
    font-size: clamp(44px, 15vw, 68px);
  }

  .lightbox-inner {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 6px;
    padding: 74px 8px 16px;
  }

  .lightbox .icon-button {
    width: 44px;
    height: 44px;
  }

  .lightbox-close {
    right: 14px;
  }
}

@media (max-width: 420px) {
  .hero p {
    max-width: 300px;
  }

  .lightbox-inner {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }
}

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

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-image,
  .hero-kinetic-track,
  .hero-seal svg,
  .brand-ticker-track,
  .about-media > img,
  .orbit-badge svg,
  .scene-story::before,
  .scene-story::after,
  .coffee-steam i,
  .menu-image img,
  .photo-break > img,
  .gallery-item::before,
  .rating-summary strong,
  .rating-summary span,
  .review-author span,
  .review:first-child::after,
  .arrival-strip p:first-child span::before {
    animation: none !important;
    transform: none !important;
  }

  .coffee-steam,
  .gallery-item::before {
    display: none;
  }
}
