:root {
  --ink: #14231c;
  --ink-soft: #536158;
  --paper: #f6f8f5;
  --paper-strong: #ffffff;
  --green: #1f4d3a;
  --green-deep: #17382b;
  --green-pale: #e2ebe5;
  --line: rgba(20, 35, 28, 0.17);
  --shell: min(1180px, calc(100vw - 40px));
  --header-height: 72px;
  --focus: #f4b942;
  --z-header: 30;
  --z-actions: 45;
  --z-modal: 60;
  --z-skip: 80;
  --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: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Aptos, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  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%;
}

.icon {
  display: block;
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vertical-align: middle;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

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

::selection {
  color: var(--paper-strong);
  background: var(--green);
}

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

.skip-link:focus {
  transform: none;
}

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

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-note {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 720;
  letter-spacing: -0.01em;
}

.section-note-light {
  color: #b6d9c3;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 8vw, 6rem);
  font-weight: 710;
  letter-spacing: -0.04em;
}

h2 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(2.45rem, 5.4vw, 5rem);
  font-weight: 660;
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.24rem;
  letter-spacing: -0.02em;
}

.site-header {
  position: fixed;
  z-index: var(--z-header);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding-inline: clamp(20px, 4vw, 58px);
  border-bottom: 1px solid rgba(20, 35, 28, 0.12);
  background: rgba(246, 248, 245, 0.94);
  backdrop-filter: blur(15px);
  transition: color 220ms var(--ease-out), background-color 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.site-header.is-scrolled {
  color: var(--paper-strong);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: rgba(23, 56, 43, 0.97);
}

.site-header.is-scrolled .brand::before,
.site-header.is-scrolled .nav-call {
  color: var(--green-deep);
  background: var(--paper-strong);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.98rem;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.brand::before {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--paper-strong);
  background: var(--green);
  content: "m";
  font-size: 1rem;
  font-weight: 780;
  line-height: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
  font-size: 0.88rem;
  font-weight: 670;
  transition: color 220ms var(--ease-out), background-color 220ms var(--ease-out);
}

.primary-nav > a:not(.nav-call) {
  position: relative;
}

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

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 18px;
  color: var(--paper-strong);
  background: var(--green);
  transition: color 180ms var(--ease-out), background-color 180ms var(--ease-out), scale 140ms var(--ease-out);
}

.nav-call .icon {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  color: var(--paper-strong);
  background: #7f8a83;
}

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

.hero > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 52% 50%;
  transform: scale(1.035);
  animation: hero-image-breathe 18s var(--ease-in-out) infinite;
  will-change: transform;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.10) 45%, rgba(0, 0, 0, 0.28) 100%);
}

.hero-ambience {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 26% 36%, rgba(244, 196, 94, 0.42), transparent 24%),
    radial-gradient(circle at 70% 58%, rgba(182, 217, 195, 0.34), transparent 28%);
  mix-blend-mode: screen;
  opacity: 0.34;
  pointer-events: none;
  transform: translate3d(-3%, -2%, 0) rotate(-5deg);
  animation: hero-light-drift 14s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  right: clamp(26px, 5vw, 78px);
  bottom: clamp(34px, 7vh, 76px);
  width: clamp(148px, 15vw, 218px);
  aspect-ratio: 1;
  color: var(--paper-strong);
  opacity: 0.92;
  pointer-events: none;
}

.hero-orbit svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: hero-orbit-spin 22s linear infinite;
  will-change: transform;
}

.hero-orbit circle {
  fill: rgba(23, 56, 43, 0.26);
  stroke: rgba(255, 255, 255, 0.52);
  stroke-width: 1;
}

.hero-orbit text {
  fill: currentColor;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 2.2px;
}

.hero-orbit > span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 780;
  line-height: 1;
  transform: translate(-50%, -53%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 64px);
  padding-bottom: clamp(48px, 8vh, 90px);
}

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

.hero-eyebrow,
.hero h1,
.hero-copy,
.hero-actions {
  animation: hero-content-in 820ms var(--ease-out) both;
}

.hero h1 {
  animation-delay: 70ms;
}

.hero-copy {
  animation-delay: 140ms;
}

.hero-actions {
  animation-delay: 210ms;
}

@media (min-width: 901px) {
  .site-header:not(.is-scrolled) {
    color: var(--paper-strong);
    border-bottom-color: transparent;
    background: linear-gradient(180deg, rgba(8, 11, 9, 0.32), rgba(8, 11, 9, 0));
    backdrop-filter: none;
  }

  .site-header:not(.is-scrolled) .brand::before,
  .site-header:not(.is-scrolled) .nav-call {
    color: var(--green-deep);
    background: var(--paper-strong);
  }

  .hero-orbit {
    top: calc(var(--header-height) + 48px);
    right: clamp(32px, 4vw, 64px);
    bottom: auto;
  }

  .hero-content {
    display: grid;
    grid-template-areas: "brand info";
    grid-template-columns: minmax(0, 1fr) minmax(320px, 29vw);
    align-items: end;
    gap: clamp(48px, 6vw, 96px);
    width: 100%;
    padding: 0 clamp(32px, 4vw, 64px) 64px;
  }

  .hero-brand-block {
    grid-area: brand;
    min-width: 0;
  }

  .hero-info-block {
    grid-area: info;
    width: 100%;
    max-width: 420px;
    justify-self: end;
  }

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

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

  .hero-eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    max-width: none;
    margin-bottom: 0;
    font-size: clamp(4.5rem, 6.7vw, 6rem);
    line-height: 0.92;
    white-space: nowrap;
  }

  @media (min-width: 1200px) {
    .hero h1 {
      scale: 1.16;
      transform-origin: left bottom;
    }

    .hero-eyebrow {
      scale: 1.05;
      transform-origin: left bottom;
    }
  }

  .hero-copy {
    max-width: 420px;
    margin-bottom: 24px;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.55;
    text-shadow: 0 1px 12px rgba(8, 11, 9, 0.3);
  }

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

  .hero-actions .button {
    justify-content: space-between;
    min-height: 56px;
    padding-inline: 20px;
  }
}

.day-rhythm {
  position: relative;
  overflow: hidden;
  color: var(--paper-strong);
  background: var(--green-deep);
}

.day-rhythm::after {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 0;
  width: 34%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f4c45e 45%, #b6d9c3 72%, transparent);
  content: "";
  opacity: 0.95;
  pointer-events: none;
  transform: translate3d(-120%, 0, 0);
  animation: day-rhythm-flow 7s linear infinite;
}

.day-rhythm-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.day-moment {
  display: grid;
  grid-template-rows: 28px 1fr;
  gap: 18px;
  min-width: 0;
  padding: 32px clamp(22px, 3vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.day-moment:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.day-moment > time,
.day-moment > span {
  color: #b6d9c3;
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.day-moment h2 {
  margin-bottom: 9px;
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
  letter-spacing: -0.025em;
}

.day-moment p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.83rem;
  line-height: 1.45;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  transition: color 180ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 180ms var(--ease-out), scale 140ms var(--ease-out);
}

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

.button-primary {
  color: var(--green-deep);
  background: var(--paper-strong);
}

.button-ghost {
  color: var(--paper-strong);
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.09);
}

.button-dark {
  color: var(--paper-strong);
  background: var(--green);
}

.intro {
  position: relative;
  padding-top: clamp(110px, 12vw, 172px);
  background: var(--paper);
  isolation: isolate;
  overflow: hidden;
}

.intro::before {
  position: absolute;
  z-index: 0;
  top: 5%;
  left: -5vw;
  color: var(--green);
  content: "MOCHA N MORE";
  font-size: clamp(5rem, 15vw, 13rem);
  font-weight: 790;
  letter-spacing: -0.07em;
  line-height: 0.82;
  opacity: 0.035;
  pointer-events: none;
  white-space: nowrap;
  translate: -2% 0;
  animation: intro-word-drift 15s var(--ease-in-out) infinite alternate;
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
  align-items: center;
  gap: clamp(58px, 9vw, 130px);
}

.intro-copy > p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.fact-line {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 34px;
  border-block: 1px solid var(--line);
}

.fact-line span {
  padding: 14px 18px 14px 0;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 690;
}

.fact-line span + span::before {
  padding-right: 18px;
  color: var(--line);
  content: "/";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-size: 0.91rem;
  font-weight: 750;
}

.text-link .icon {
  width: 16px;
  height: 16px;
}

.media-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: #dce3de;
}

.media-frame > img,
.media-frame > picture,
.media-frame > picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-media::after {
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  content: "";
  pointer-events: none;
}

@media (min-width: 901px) {
  .intro-media {
    translate: 0 34px;
  }
}

.menu-preview {
  position: relative;
  background: var(--green-pale);
  isolation: isolate;
  overflow: hidden;
}

.menu-preview::before {
  position: absolute;
  z-index: 0;
  top: 18%;
  right: -12vw;
  width: min(56vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(31, 77, 58, 0.16);
  border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(31, 77, 58, 0), rgba(31, 77, 58, 0.17), rgba(244, 196, 94, 0.2), rgba(31, 77, 58, 0));
  box-shadow: inset 0 0 0 5vw rgba(226, 235, 229, 0.76);
  content: "";
  opacity: 0.78;
  pointer-events: none;
  animation: menu-orbit-spin 24s linear infinite;
}

.menu-preview > .shell {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 50px;
  margin-bottom: clamp(46px, 6vw, 76px);
}

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

.section-heading > p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.82fr));
  gap: clamp(18px, 2.4vw, 34px);
}

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

.menu-item .media-frame img,
.gallery-item img {
  transition: transform 260ms var(--ease-out);
}

.menu-item .media-frame::after {
  position: absolute;
  z-index: 1;
  inset: -45%;
  background: linear-gradient(108deg, transparent 40%, rgba(255, 255, 255, 0.28) 50%, transparent 60%);
  content: "";
  opacity: 0.72;
  pointer-events: none;
  transform: translate3d(-62%, 0, 0);
  animation: menu-light-sweep 8s linear infinite;
}

.menu-item:nth-child(2) .media-frame::after {
  animation-delay: -2.7s;
}

.menu-item:nth-child(3) .media-frame::after {
  animation-delay: -5.4s;
}

.menu-item-copy {
  padding-top: 21px;
}

.menu-item-copy h3 {
  margin-bottom: 8px;
}

.menu-item:first-child .menu-item-copy h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.menu-item-copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.menu-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(46px, 6vw, 72px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.menu-contact p {
  margin: 0;
  font-size: clamp(1.2rem, 2.3vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.signature {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(620px, 76svh, 860px);
  overflow: hidden;
  color: var(--paper-strong);
  background: #48544d;
}

.signature picture,
.signature picture img,
.signature-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.signature picture img {
  object-fit: cover;
  object-position: 50% 52%;
  transform: scale(1.03);
  animation: signature-image-drift 18s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.signature-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 10%, rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.28) 100%);
}

.signature-marquee {
  position: absolute;
  z-index: 1;
  top: clamp(24px, 4vw, 54px);
  right: 0;
  left: 0;
  padding-block: 10px;
  border-block: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  pointer-events: none;
}

.signature-marquee-track {
  display: flex;
  width: max-content;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.72rem, 1.2vw, 0.88rem);
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1;
  white-space: nowrap;
  animation: signature-marquee 24s linear infinite;
  will-change: transform;
}

.signature-marquee-track span {
  flex: none;
  padding-right: 2.2rem;
}

.signature-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(54px, 8vw, 96px);
}

.signature-content > p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 720;
}

.signature-content h2 {
  max-width: 900px;
  margin-bottom: 30px;
  font-size: clamp(2.7rem, 6.3vw, 5.6rem);
  letter-spacing: -0.04em;
}

.signature-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 690;
}

.signature-facts span + span::before {
  margin-right: 26px;
  color: rgba(255, 255, 255, 0.48);
  content: "/";
}

.gallery-section {
  background: var(--paper-strong);
}

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

.gallery-item {
  --float-distance: -7px;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  scale: 1;
  animation: gallery-float 7.5s var(--ease-in-out) infinite;
  transition: scale 140ms var(--ease-out);
}

.gallery-item:nth-child(2n) {
  animation-delay: -3.1s;
  animation-duration: 8.8s;
}

.gallery-item:nth-child(3n) {
  animation-delay: -5.2s;
  animation-duration: 9.6s;
}

.gallery-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 54px 18px 17px;
  color: var(--paper-strong);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.58));
  font-size: 0.78rem;
  font-weight: 720;
  text-align: left;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.gallery-caption > span:first-child {
  min-width: 0;
}

.gallery-caption .icon {
  width: 16px;
  height: 16px;
}

.gallery-item:focus-visible .gallery-caption {
  opacity: 1;
  transform: none;
}

.reviews {
  position: relative;
  color: var(--paper-strong);
  background: var(--green-deep);
  isolation: isolate;
  overflow: hidden;
}

.reviews::before,
.reviews::after {
  position: absolute;
  z-index: 0;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 217, 195, 0.2), rgba(182, 217, 195, 0) 68%);
  content: "";
  opacity: 0.72;
  pointer-events: none;
  animation: review-glow-drift 13s var(--ease-in-out) infinite alternate;
}

.reviews::before {
  top: -22%;
  right: -12%;
}

.reviews::after {
  bottom: -30%;
  left: -18%;
  animation-delay: -6s;
  animation-direction: alternate-reverse;
}

.reviews .eyebrow {
  color: #a9cdb8;
}

.reviews .shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.25fr);
  gap: clamp(70px, 10vw, 150px);
}

.reviews-intro h2 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

@media (min-width: 901px) {
  .reviews-intro {
    position: sticky;
    top: calc(var(--header-height) + 52px);
    align-self: start;
  }
}

.rating-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 14px;
  width: fit-content;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.rating-summary strong {
  grid-row: span 2;
  font-size: 2.6rem;
  line-height: 1;
}

.rating-summary > span:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.stars {
  color: #f4c45e;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.rating-summary .stars {
  animation: star-breathe 3.4s var(--ease-in-out) infinite;
}

.review-list {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.review {
  padding-block: clamp(34px, 5vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: border-color 180ms var(--ease-out), transform 220ms var(--ease-out);
}

.review header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

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

.review h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.review blockquote {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.review .text-link {
  color: #cae3d2;
}

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

.visit-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(48px, 7vw, 84px);
}

.visit-top h2 {
  margin-bottom: 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.35fr);
  gap: clamp(40px, 7vw, 100px);
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.visit-block {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.visit-block h3 {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visit-block p {
  color: var(--ink-soft);
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto;
  gap: 18px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

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

.hours-list dd {
  margin: 0;
  color: var(--ink);
  text-align: right;
}

.hours-note {
  margin: 18px 0 0;
  font-size: 0.78rem;
}

.amenities-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  list-style: none;
}

.amenities-list li {
  position: relative;
  padding-left: 20px;
}

.amenities-list li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--green);
  content: "";
}

.map-wrap {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #d8dfda;
}

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

.site-footer {
  padding-top: 72px;
  color: var(--paper-strong);
  background: var(--ink);
}

.mobile-actions {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr auto;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
  font-size: 0.88rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 180ms var(--ease-out), background-color 180ms var(--ease-out), scale 140ms var(--ease-out);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

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

.footer-phone .icon {
  width: 15px;
  height: 15px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: var(--z-modal);
  inset: 0;
  display: grid;
  grid-template-columns: minmax(52px, 0.16fr) minmax(0, 1fr) minmax(52px, 0.16fr);
  align-items: center;
  padding: 70px 28px 28px;
  color: #fff;
  background: rgba(8, 11, 9, 0.94);
  animation: lightbox-in 240ms var(--ease-out) both;
}

.lightbox-figure {
  display: grid;
  place-items: center;
  max-width: 1100px;
  height: min(82vh, 880px);
  margin: auto;
  animation: lightbox-figure-in 280ms var(--ease-out) both;
}

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

.lightbox-figure figcaption {
  align-self: end;
  min-height: 28px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  text-align: center;
}

.lightbox button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background-color 180ms var(--ease-out), scale 140ms var(--ease-out);
}

.lightbox button svg {
  width: 25px;
  height: 25px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 46px;
  height: 46px;
}

.lightbox-control {
  width: 50px;
  height: 50px;
  justify-self: center;
}

.button:active,
.nav-call:active,
.nav-toggle:active,
.mobile-actions a:active,
.social-links a:active,
.lightbox button:active {
  scale: 0.97;
}

.gallery-item:active {
  scale: 0.985;
}

@media (hover: hover) and (pointer: fine) {
  .primary-nav > a:not(.nav-call):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-call:hover {
    color: var(--green-deep);
    background: var(--green-pale);
  }

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

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

  .button-ghost:hover {
    color: var(--ink);
    background: var(--paper-strong);
  }

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

  .text-link:hover {
    color: var(--green-deep);
  }

  .review .text-link:hover {
    color: var(--paper-strong);
  }

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

  .gallery-item:hover {
    scale: 1.012;
  }

  .gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: none;
  }

  .review:hover {
    border-bottom-color: rgba(255, 255, 255, 0.52);
    transform: translateX(8px);
  }

  .footer-links a:hover {
    color: #a9cdb8;
  }

  .social-links a:hover {
    color: var(--ink);
    background: var(--paper-strong);
  }

  .lightbox button:hover {
    background: rgba(255, 255, 255, 0.16);
  }
}

@keyframes hero-image-breathe {
  0%,
  100% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.08) translate3d(-0.8%, -0.7%, 0);
  }
}

@keyframes hero-light-drift {
  0% {
    opacity: 0.25;
    transform: translate3d(-4%, -3%, 0) rotate(-6deg);
  }

  100% {
    opacity: 0.48;
    transform: translate3d(5%, 4%, 0) rotate(7deg);
  }
}

@keyframes hero-orbit-spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes day-rhythm-flow {
  to {
    transform: translate3d(400%, 0, 0);
  }
}

@keyframes intro-word-drift {
  from {
    translate: -2% 0;
  }

  to {
    translate: 6% 0;
  }
}

@keyframes menu-orbit-spin {
  to {
    transform: rotate(-1turn);
  }
}

@keyframes menu-light-sweep {
  0%,
  24% {
    transform: translate3d(-62%, 0, 0);
  }

  62%,
  100% {
    transform: translate3d(62%, 0, 0);
  }
}

@keyframes signature-image-drift {
  from {
    transform: scale(1.03) translate3d(-0.5%, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(1.5%, -1%, 0);
  }
}

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

@keyframes gallery-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 var(--float-distance);
  }
}

@keyframes review-glow-drift {
  from {
    opacity: 0.48;
    transform: translate3d(-6%, -3%, 0) scale(0.92);
  }

  to {
    opacity: 0.86;
    transform: translate3d(8%, 7%, 0) scale(1.1);
  }
}

@keyframes star-breathe {
  0%,
  100% {
    opacity: 0.76;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.055);
  }
}

@keyframes lightbox-in {
  from {
    opacity: 0;
  }
}

@keyframes lightbox-figure-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) and (min-width: 721px) {
  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
  }

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

  .site-header:not(.is-scrolled) {
    color: var(--paper-strong);
    border-bottom-color: transparent;
    background: linear-gradient(180deg, rgba(8, 11, 9, 0.34), rgba(8, 11, 9, 0));
    backdrop-filter: none;
  }

  .site-header:not(.is-scrolled) .brand::before {
    color: var(--green-deep);
    background: var(--paper-strong);
  }

  .site-header:not(.is-scrolled) .nav-toggle {
    color: var(--paper-strong);
  }

  .hero-orbit {
    top: calc(var(--header-height) + 20px);
    right: -16px;
    bottom: auto;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    place-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .site-header.is-scrolled .nav-toggle {
    color: var(--paper-strong);
  }

  .nav-toggle-icon {
    width: 24px;
    height: 24px;
    transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
  }

  .nav-toggle-icon-close {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon-menu {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon-close {
    display: inline-block;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    max-height: calc(100svh - var(--header-height));
    padding: 12px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 36px rgba(20, 35, 28, 0.12);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms var(--ease-drawer), transform 220ms var(--ease-drawer);
  }

  .primary-nav.skip-transition,
  .primary-nav.skip-transition * {
    transition: none !important;
  }

  .site-header.is-scrolled .primary-nav {
    color: var(--paper-strong);
    border-bottom-color: rgba(255, 255, 255, 0.14);
    background: var(--green-deep);
  }

  .site-header.is-scrolled .primary-nav > a {
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav > a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav > a:not(.nav-call)::after {
    display: none;
  }

  .nav-call {
    margin-top: 14px;
    border-bottom: 0;
  }

  .site-header.is-scrolled .nav-call {
    color: var(--green-deep);
  }

  .day-rhythm-track {
    grid-auto-columns: minmax(245px, 72vw);
    grid-template-columns: none;
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    scrollbar-color: #77a789 transparent;
  }

  .day-moment {
    scroll-snap-align: start;
  }

  .day-moment:first-child {
    border-left: 0;
  }

  .intro-grid,
  .reviews .shell,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 680px;
  }

  .intro-media {
    width: min(100%, 660px);
  }

  .reviews .shell {
    gap: 54px;
  }

  .reviews-intro {
    max-width: 570px;
  }

  .visit-grid {
    gap: 56px;
  }

  .map-wrap {
    min-height: 580px;
  }
}

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

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

  body {
    font-size: 16px;
  }

  .section {
    padding-block: 82px;
  }

  .day-rhythm-track {
    width: 100%;
    padding-left: 16px;
  }

  .day-moment {
    padding: 27px 24px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand::before {
    width: 38px;
    height: 38px;
    border-radius: 50%;
  }

  .hero-content.shell {
    width: 100%;
    padding-right: 20px;
    padding-bottom: clamp(40px, 6vh, 56px);
    padding-left: 20px;
  }

  .hero-orbit {
    width: 138px;
    opacity: 0.82;
  }

  .hero-ambience {
    opacity: 0.3;
  }

  .hero-eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    margin-bottom: 0;
    font-size: clamp(2.9rem, 12.5vw, 3.6rem);
    line-height: 0.94;
    white-space: nowrap;
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 3.65rem);
  }

  .hero-info-block {
    margin-top: 24px;
  }

  .hero-copy {
    max-width: 390px;
    margin-bottom: 24px;
    line-height: 1.55;
    text-shadow: 0 1px 12px rgba(8, 11, 9, 0.3);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
  }

  .hero-actions .button {
    justify-content: space-between;
    width: auto;
    min-height: 56px;
    padding-inline: 16px;
  }

  .intro-grid {
    gap: 48px;
  }

  .intro::before {
    top: 3%;
    font-size: 21vw;
  }

  .menu-preview::before {
    top: 28%;
    right: -72%;
    width: 620px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 520px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .signature {
    min-height: 78svh;
  }

  .signature picture img {
    object-position: 45% 50%;
  }

  .signature-content {
    padding-bottom: 48px;
  }

  .signature-marquee {
    top: 20px;
  }

  .signature-marquee-track {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .signature-content h2 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  .signature-facts {
    display: grid;
    gap: 5px;
  }

  .signature-facts span + span::before {
    display: none;
  }

  .menu-contact,
  .visit-top {
    align-items: stretch;
    flex-direction: column;
  }

  .menu-contact .button,
  .visit-top .button {
    width: 100%;
  }

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

  .gallery-item {
    --float-distance: -4px;
  }

  .gallery-caption {
    padding: 42px 12px 11px;
    font-size: 0.7rem;
    opacity: 1;
    transform: none;
  }

  .gallery-heading > p {
    display: none;
  }

  .reviews .shell {
    gap: 44px;
  }

  .review-list {
    display: grid;
    grid-auto-columns: minmax(275px, 84vw);
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    scrollbar-color: #77a789 transparent;
  }

  .review {
    padding-right: 28px;
    padding-left: 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .review + .review {
    padding-left: 28px;
  }

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

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

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

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

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

  .mobile-actions {
    position: fixed;
    z-index: var(--z-actions);
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 5px;
    color: var(--ink);
    background: var(--paper-strong);
    box-shadow: 0 7px 14px rgba(20, 35, 28, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 28px));
    transition: opacity 220ms var(--ease-drawer), transform 280ms var(--ease-drawer);
  }

  .mobile-actions.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-actions a {
    display: grid;
    gap: 3px;
    min-height: 46px;
    place-items: center;
    padding: 8px 5px;
    font-size: 0.75rem;
    font-weight: 760;
    transition: color 180ms var(--ease-out), background-color 180ms var(--ease-out), scale 140ms var(--ease-out);
  }

  .mobile-actions .icon {
    width: 17px;
    height: 17px;
  }

  .mobile-actions-primary {
    color: var(--paper-strong);
    background: var(--green);
  }

  .lightbox {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    padding: 66px 10px 16px;
  }

  .lightbox-control {
    width: 44px;
    height: 44px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 430px) {
  .button {
    min-height: 50px;
  }

  .fact-line {
    display: grid;
  }

  .fact-line span {
    padding: 10px 0;
  }

  .fact-line span + span::before {
    display: none;
  }

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

  .lightbox-control {
    width: 40px;
    height: 44px;
  }
}

@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;
  }

  .hero-image,
  .hero-ambience,
  .hero-orbit svg,
  .day-rhythm::after,
  .intro::before,
  .menu-preview::before,
  .menu-item .media-frame::after,
  .signature picture img,
  .signature-marquee-track,
  .gallery-item,
  .reviews::before,
  .reviews::after,
  .rating-summary .stars {
    animation: none !important;
  }

  .hero-image,
  .signature picture img {
    transform: scale(1.015) !important;
  }

  .hero-ambience,
  .hero-orbit svg,
  .menu-preview::before,
  .menu-item .media-frame::after,
  .reviews::before,
  .reviews::after,
  .rating-summary .stars {
    transform: none !important;
  }

  .intro::before,
  .gallery-item {
    translate: 0 0 !important;
  }

  .day-rhythm::after {
    opacity: 0.55;
    transform: translate3d(190%, 0, 0) !important;
  }

  .button:active,
  .nav-call:active,
  .nav-toggle:active,
  .gallery-item:active,
  .mobile-actions a:active,
  .social-links a:active,
  .lightbox button:active {
    opacity: 0.78;
    scale: 1 !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }
}
