:root {
  --ink: #16221b;
  --ink-soft: #526057;
  --forest: #2f5b43;
  --forest-deep: #18281f;
  --leaf: #a7c8a2;
  --paper: #f5f7f2;
  --white: #ffffff;
  --line: rgba(22, 34, 27, 0.16);
  --shadow: 0 24px 70px rgba(18, 34, 25, 0.13);
  --radius: 8px;
  --shell: min(1180px, calc(100% - 40px));
  --header-height: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --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: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Aptos, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

.icon {
  width: 1.05em;
  height: 1.05em;
  display: block;
  flex: 0 0 auto;
}

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

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

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

button {
  color: inherit;
}

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

::selection {
  color: var(--white);
  background: var(--forest);
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  min-height: var(--header-height);
  color: var(--white);
  background: linear-gradient(180deg, rgba(20, 28, 24, 0.76) 0%, rgba(20, 28, 24, 0.52) 64%, rgba(20, 28, 24, 0.16) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-shell {
  width: var(--shell);
  height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 7px;
  font-size: 0.83rem;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.desktop-nav a::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-link {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.nav-visit {
  margin-left: 5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 17px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 750;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

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

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

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: none;
  padding: 24px 20px 30px;
  background: rgba(20, 28, 24, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: clamp(1.35rem, 7vw, 2rem);
  line-height: 1.2;
}

.mobile-nav[data-open="true"] {
  display: block;
  animation: menu-in 260ms var(--ease) both;
}

.hero {
  position: relative;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

.hero-media img {
  display: block;
  object-fit: cover;
  object-position: 50% 47%;
  transform-origin: 50% 48%;
  animation: hero-ambient 16s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 10, 9, 0.13) 0%, rgba(8, 10, 9, 0.18) 45%, rgba(8, 10, 9, 0.7) 100%);
}

.hero-overlay::after {
  position: absolute;
  content: "";
  inset: -20% -35%;
  opacity: 0.24;
  background: linear-gradient(108deg, transparent 35%, rgba(255, 255, 255, 0.28) 48%, transparent 61%);
  transform: translate3d(-32%, 0, 0);
  animation: daylight-shift 11s var(--ease) infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.64fr);
  align-items: end;
  column-gap: clamp(44px, 9vw, 160px);
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: clamp(38px, 8vh, 90px);
}

.hero-title-block {
  align-self: end;
}

.hero-action-block {
  width: 100%;
  max-width: 430px;
  justify-self: end;
  padding-bottom: clamp(2px, 1.25vw, 16px);
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--forest);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.84);
  animation: copy-in 700ms 120ms var(--ease) both;
}

.hero h1 {
  max-width: 8ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 7.2vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.91;
  text-wrap: balance;
  animation: copy-in 760ms 180ms var(--ease) both;
}

.hero-copy {
  max-width: 24ch;
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.12rem, 1.7vw, 1.48rem);
  line-height: 1.4;
  text-align: right;
  animation: copy-in 760ms 240ms var(--ease) both;
}

.hero-support {
  max-width: 46ch;
  margin: 12px 0 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.91rem;
  line-height: 1.48;
  text-align: right;
  animation: copy-in 760ms 270ms var(--ease) both;
}

.hero-ctas {
  display: flex;
  justify-content: flex-end;
  gap: 11px;
  margin-top: 28px;
  animation: copy-in 760ms 300ms var(--ease) both;
}

@media (min-width: 821px) {
  .hero-ctas .button {
    min-width: 0;
    min-height: 58px;
    flex: 1;
    justify-content: space-between;
    padding-inline: 15px;
    border-radius: 0;
  }

  .hero-ctas .button .icon {
    order: 2;
  }
}

@media (min-width: 1180px) {
  .hero-ctas .button {
    min-height: 60px;
    padding-inline: 21px;
  }
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1;
  transition: transform 200ms var(--ease), color 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

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

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
}

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

.button:active,
.social-link:active,
.menu-toggle:active,
.gallery-item:active,
.lightbox-control:active,
.lightbox-close:active {
  transform: scale(0.97);
}

.section {
  padding: clamp(88px, 11vw, 150px) 0;
}

.about-section {
  background: var(--white);
}

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

.about-collage {
  position: relative;
  min-height: 750px;
  padding: 0 22% 20% 0;
}

.about-collage figure {
  margin: 0;
}

.about-collage img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-main {
  position: relative;
}

.about-main img {
  box-shadow: var(--shadow);
}

.about-main figcaption {
  position: absolute;
  top: 30px;
  left: -18px;
  margin: 0;
  padding: 11px 15px;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-detail {
  position: absolute;
  width: 35%;
}

.about-detail img {
  border: 8px solid var(--white);
  box-shadow: 0 16px 46px rgba(18, 34, 25, 0.14);
}

.about-detail-coffee {
  right: 0;
  bottom: 10%;
}

.about-detail-patio {
  right: 17%;
  bottom: 0;
  width: 29%;
}

h2 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.99;
  text-wrap: balance;
}

.section-mark {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 19px;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-mark::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.about-copy .lede {
  max-width: 630px;
  margin: 30px 0 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

.about-copy > p:not(.section-mark, .lede) {
  max-width: 610px;
  margin: 19px 0 0;
  color: var(--ink-soft);
}

.fact-row {
  max-width: 650px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.fact-row li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.fact-row li > div {
  display: grid;
  gap: 1px;
}

.fact-icon {
  width: 19px;
  height: 19px;
  color: var(--forest);
}

.fact-row strong {
  font-size: 0.86rem;
}

.fact-row span {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.text-link,
.review-card a,
.visit-socials a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 27px;
  color: var(--forest);
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 56px;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 5px auto;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.menu-editorial {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 108px);
  align-items: start;
}

.menu-board {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  border: 0;
  border-radius: var(--radius);
  background: #dce4dd;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.menu-board img,
.favourites-strip img,
.journey-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
}

.menu-board::after {
  position: absolute;
  content: "";
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(to top, rgba(8, 12, 10, 0.55), rgba(8, 12, 10, 0));
  pointer-events: none;
}

.menu-board span {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.menu-list-intro {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 16px;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--forest);
}

.menu-list-intro p {
  margin: 0;
}

.menu-list-intro p:first-child {
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.menu-list-intro p:last-child {
  max-width: 340px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  text-align: right;
}

.menu-list {
  display: grid;
  grid-template-columns: minmax(132px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.menu-list h3,
.hours h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

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

.menu-list dl div,
.hours dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.menu-list dt,
.menu-list dd,
.hours dt,
.hours dd {
  margin: 0;
  font-size: 0.85rem;
}

.menu-list dd,
.hours dd {
  font-weight: 800;
  text-align: right;
}

.favourites-block {
  margin-top: clamp(70px, 9vw, 112px);
  padding-top: 31px;
  border-top: 1px solid var(--line);
}

.favourites-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 25px;
}

.favourites-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.favourites-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.favourites-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.7vw, 20px);
}

.favourites-strip figure {
  margin: 0;
}

.favourites-strip img {
  border-radius: var(--radius);
}

.favourites-strip figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 750;
}

.journey-section {
  overflow: clip;
  padding: clamp(88px, 11vw, 150px) 0 clamp(70px, 9vw, 110px);
  color: var(--white);
  background: var(--forest-deep);
}

.journey-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 82px);
}

.journey-heading > p {
  margin: 10px 0 0;
  color: var(--leaf);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.journey-grid {
  position: relative;
  display: block;
  padding-bottom: 18svh;
}

.journey-panel {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  min-height: calc(100svh - var(--header-height) - 36px);
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(38px, 7vw, 96px);
  padding: clamp(28px, 4.5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #1b3024;
  box-shadow: 0 26px 80px rgba(8, 16, 11, 0.28);
  isolation: isolate;
}

.journey-panel + .journey-panel {
  margin-top: 34svh;
}

.journey-panel-late {
  top: calc(var(--header-height) + 30px);
  background: #244431;
}

.journey-panel::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: -30% -55%;
  opacity: 0.16;
  background: linear-gradient(108deg, transparent 39%, rgba(167, 200, 162, 0.32) 49%, transparent 59%);
  transform: translate3d(-30%, 0, 0);
  animation: journey-light 13s var(--ease) infinite;
  pointer-events: none;
}

.journey-panel-late::after {
  animation-delay: -6s;
}

.journey-media {
  width: min(100%, 500px);
  overflow: hidden;
  border-radius: var(--radius);
}

.journey-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.journey-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

.journey-panel:first-child .journey-media img {
  transform-origin: 48% 52%;
  animation: journey-breathe 12s ease-in-out infinite alternate;
}

.journey-panel span {
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-panel h3 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.journey-panel p {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

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

.section-heading-tight {
  margin-bottom: 45px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
  padding-bottom: 64px;
}

.gallery-column {
  display: grid;
  align-content: start;
  gap: clamp(12px, 2vw, 24px);
}

.gallery-column-shifted {
  transform: translateY(64px);
}

.gallery-column-soft-shift {
  transform: translateY(24px);
}

.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #dce4dd;
  cursor: zoom-in;
  isolation: isolate;
}

.gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 350ms ease;
}

.gallery-item::after {
  position: absolute;
  content: "";
  inset: auto 0 0;
  height: 32%;
  z-index: 1;
  background: linear-gradient(to top, rgba(8, 12, 10, 0.5), rgba(8, 12, 10, 0));
  pointer-events: none;
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  right: 17px;
  bottom: 15px;
  left: 17px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.reviews-section {
  background: #e7eee7;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(55px, 9vw, 130px);
  align-items: start;
}

.reviews-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.rating-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.rating-lockup strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.rating-lockup span,
.review-author p {
  color: var(--forest);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.rating-lockup p {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.snapshot-note {
  max-width: 330px;
  margin: 19px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.review-composition {
  display: grid;
  gap: 24px;
}

.review-card {
  padding: 29px 0 33px;
  border-top: 1px solid var(--line);
}

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

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

.review-author h3,
.review-author p {
  margin: 0;
}

.review-author h3 {
  font-size: 0.91rem;
}

.review-author p {
  margin-top: 1px;
  font-size: 0.67rem;
}

.review-card blockquote {
  max-width: 760px;
  margin: 23px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.26rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.review-feature {
  padding: clamp(32px, 5vw, 58px);
  color: var(--white);
  border: 0;
  border-radius: var(--radius);
  background: var(--forest-deep);
}

.review-feature blockquote {
  margin: 0;
  font-size: clamp(1.85rem, 3.5vw, 3.25rem);
  line-height: 1.16;
}

.review-feature .review-author p,
.review-feature a {
  color: var(--leaf);
}

.review-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
}

.review-footer a {
  margin-top: 0;
}

.review-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.review-secondary .review-card {
  display: flex;
  flex-direction: column;
}

.review-secondary .review-card blockquote {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
}

.review-secondary .review-card > a {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
}

.review-card a {
  margin-top: 20px;
}

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

.visit-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.visit-info address {
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  font-style: normal;
  line-height: 1.65;
}

.visit-address {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.visit-address .icon {
  width: 19px;
  height: 19px;
  margin-top: 4px;
  color: var(--forest);
}

.hours {
  margin-top: 37px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.hours h3 {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hours h3 .icon {
  width: 18px;
  height: 18px;
  color: var(--forest);
}

.hours dl div {
  padding: 8px 0;
}

.hours > p {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.visit-actions {
  margin-top: 30px;
}

.visit-socials {
  display: flex;
  gap: 22px;
}

.visit-socials a {
  margin-top: 18px;
}

.visit-map-column {
  display: grid;
  gap: 34px;
}

.map-wrap {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce4dd;
  box-shadow: var(--shadow);
}

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

.good-to-know {
  display: grid;
  grid-template-columns: minmax(140px, 0.4fr) minmax(0, 1.6fr);
  gap: 30px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.good-to-know h3 {
  margin: 0;
  font-size: 1.05rem;
}

.good-to-know ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.good-to-know li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.79rem;
  font-weight: 700;
}

.facility-icon {
  width: 17px;
  height: 17px;
  color: var(--forest);
}

.site-footer {
  padding: 72px 0 30px;
  color: rgba(255, 255, 255, 0.8);
  background: #111a15;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.75fr;
  align-items: start;
  gap: clamp(40px, 8vw, 110px);
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.footer-lead > p {
  max-width: 420px;
  margin-top: 31px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.footer-label {
  margin-bottom: 18px !important;
  color: var(--leaf);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-details address {
  color: var(--white);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.65;
}

.footer-details > p:last-child {
  margin-top: 19px;
  font-size: 0.82rem;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 61px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
}

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

.copyright {
  font-size: 0.75rem;
}

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  border: 0;
  background: rgba(8, 11, 9, 0.96);
}

.lightbox::backdrop {
  background: rgba(8, 11, 9, 0.96);
}

.lightbox-panel {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 74px;
  align-items: center;
  padding: 70px 24px 30px;
}

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

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

.lightbox figcaption {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  text-align: center;
}

.lightbox-close,
.lightbox-control {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 40px;
  min-height: 40px;
  padding: 0;
  border-radius: 999px;
}

.lightbox-close .icon {
  width: 20px;
  height: 20px;
}

.lightbox-control {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.lightbox-control .icon {
  width: 26px;
  height: 26px;
}

.lightbox-control[hidden] {
  display: none;
}

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

.image-reveal {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

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

.reveal-ready .image-reveal {
  opacity: 0;
  clip-path: inset(0 0 14% 0);
  transition: opacity 760ms var(--ease), clip-path 900ms var(--ease);
}

.reveal-ready .image-reveal.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

@keyframes hero-ambient {
  0% { transform: scale(1.025) translate3d(-0.4%, 0, 0); }
  48% { transform: scale(1.06) translate3d(0.7%, -0.5%, 0); }
  100% { transform: scale(1.035) translate3d(-0.2%, 0.7%, 0); }
}

@keyframes daylight-shift {
  0% { transform: translate3d(-35%, 0, 0); opacity: 0.04; }
  45%, 58% { opacity: 0.2; }
  100% { transform: translate3d(35%, 0, 0); opacity: 0.05; }
}

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

@keyframes journey-light {
  0% { transform: translate3d(-45%, 0, 0) skewX(-8deg); opacity: 0.03; }
  48%, 62% { opacity: 0.16; }
  100% { transform: translate3d(45%, 0, 0) skewX(-8deg); opacity: 0.04; }
}

@keyframes copy-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes menu-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-depth-scroll {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(0, 8%, 0) scale(1.08); }
}

@keyframes hero-copy-scroll {
  from { transform: translate3d(0, 0, 0); opacity: 1; }
  to { transform: translate3d(0, -18%, 0); opacity: 0.16; }
}

@keyframes about-main-scroll {
  from { transform: translate3d(0, 42px, 0) scale(0.985); }
  to { transform: translate3d(0, -30px, 0) scale(1.015); }
}

@keyframes about-coffee-scroll {
  from { transform: translate3d(0, 82px, 0) rotate(1.2deg); }
  to { transform: translate3d(0, -18px, 0) rotate(-0.5deg); }
}

@keyframes about-patio-scroll {
  from { transform: translate3d(0, -24px, 0) rotate(-0.8deg); }
  to { transform: translate3d(0, 46px, 0) rotate(0.6deg); }
}

@keyframes gallery-rise-left {
  from { transform: translate3d(0, 72px, 0); }
  to { transform: translate3d(0, -48px, 0); }
}

@keyframes gallery-drift-middle {
  from { transform: translate3d(0, -18px, 0); }
  to { transform: translate3d(0, 78px, 0); }
}

@keyframes gallery-rise-right {
  from { transform: translate3d(0, 44px, 0); }
  to { transform: translate3d(0, -36px, 0); }
}

@supports (animation-timeline: view()) {
  .hero {
    view-timeline-name: --hero-scroll;
    view-timeline-axis: block;
  }

  .hero-media {
    animation: hero-depth-scroll linear both;
    animation-timeline: --hero-scroll;
    animation-range: exit 0% exit 100%;
    will-change: transform;
  }

  .hero-content {
    animation: hero-copy-scroll linear both;
    animation-timeline: --hero-scroll;
    animation-range: exit 0% exit 78%;
    will-change: transform, opacity;
  }

  .about-section {
    view-timeline-name: --about-scroll;
    view-timeline-axis: block;
  }

  .about-main,
  .about-detail-coffee,
  .about-detail-patio {
    animation-duration: 1ms;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: --about-scroll;
    animation-range: entry 5% cover 72%;
    will-change: transform;
  }

  .about-main {
    animation-name: about-main-scroll;
  }

  .about-detail-coffee {
    animation-name: about-coffee-scroll;
  }

  .about-detail-patio {
    animation-name: about-patio-scroll;
  }

  .gallery-section {
    view-timeline-name: --gallery-scroll;
    view-timeline-axis: block;
  }

  .gallery-column {
    animation-duration: 1ms;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: --gallery-scroll;
    animation-range: entry 4% cover 76%;
    will-change: transform;
  }

  .gallery-column:nth-child(1) {
    animation-name: gallery-rise-left;
  }

  .gallery-column:nth-child(2) {
    animation-name: gallery-drift-middle;
  }

  .gallery-column:nth-child(3) {
    animation-name: gallery-rise-right;
  }
}

@media (max-width: 1040px) {
  .desktop-nav,
  .nav-visit {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 700px);
    --header-height: 68px;
  }

  .hero-media img {
    object-position: 55% 48%;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 10, 9, 0.1) 0%, rgba(8, 10, 9, 0.14) 40%, rgba(8, 10, 9, 0.3) 100%);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
  }

  .hero-title-block,
  .hero-action-block {
    width: 100%;
    min-width: 0;
  }

  .hero-action-block {
    max-width: 590px;
    margin-top: 24px;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 12vw, 5.6rem);
  }

  .hero-copy,
  .hero-support {
    margin-left: 0;
    text-align: left;
  }

  .hero-copy {
    max-width: 30ch;
  }

  .about-grid,
  .menu-editorial,
  .reviews-layout,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 64px;
  }

  .about-collage {
    width: min(88%, 600px);
    min-height: 760px;
  }

  .about-copy {
    width: 94%;
    margin-left: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 21px;
  }

  .section-heading > p {
    margin-left: 0;
  }

  .menu-editorial {
    gap: 58px;
  }

  .menu-board {
    width: min(70%, 470px);
  }

  .journey-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 78px;
    padding-bottom: 0;
  }

  .journey-panel,
  .journey-panel-late {
    position: relative;
    top: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .journey-panel + .journey-panel {
    margin-top: 0;
  }

  .journey-panel::after {
    display: none;
  }

  .journey-media {
    width: min(84%, 520px);
  }

  .journey-panel-late .journey-media {
    margin-left: auto;
  }

  .journey-panel-late .journey-copy {
    width: 92%;
    margin-left: auto;
  }

  .reviews-intro {
    position: static;
  }

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

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

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

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    font-size: 15px;
  }

  .brand span {
    max-width: 122px;
    font-size: 0.81rem;
    line-height: 1.1;
  }

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

  .nav-actions {
    gap: 7px;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

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

  .hero-content {
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.35rem);
    line-height: 0.93;
  }

  .hero-copy {
    margin-top: 0;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .hero-support {
    margin-top: 8px;
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .hero-ctas {
    width: 100%;
    margin-top: 24px;
  }

  .hero-ctas .button {
    flex: 1;
  }

  .section {
    padding: 82px 0;
  }

  h2 {
    font-size: clamp(2.5rem, 12.5vw, 3.65rem);
  }

  .about-collage {
    width: 100%;
    min-height: 510px;
    padding-right: 20%;
    padding-bottom: 18%;
  }

  .about-copy {
    width: 100%;
  }

  .about-main figcaption {
    top: 18px;
    left: 10px;
  }

  .about-detail {
    width: 36%;
  }

  .about-detail-patio {
    right: 18%;
    width: 30%;
  }

  .fact-row {
    grid-template-columns: 1fr;
  }

  .menu-board {
    width: 84%;
  }

  .menu-list-intro,
  .favourites-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-list-intro p:last-child {
    text-align: left;
  }

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

  .favourites-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }

  .journey-heading,
  .journey-grid,
  .journey-panel {
    grid-template-columns: 1fr;
  }

  .journey-heading {
    gap: 20px;
  }

  .journey-heading > p {
    margin-top: 0;
  }

  .journey-media {
    width: 82%;
  }

  .journey-panel-late .journey-media {
    margin-left: auto;
  }

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

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

  .gallery-column {
    gap: 14px;
  }

  .gallery-column-shifted,
  .gallery-column-soft-shift {
    transform: none;
  }

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

  .review-feature blockquote {
    font-size: 1.7rem;
  }

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

  .review-secondary {
    grid-template-columns: 1fr;
  }

  .rating-lockup strong {
    font-size: 3.4rem;
  }

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

  .good-to-know,
  .good-to-know ul {
    grid-template-columns: 1fr;
  }

  .good-to-know {
    gap: 20px;
  }

  .good-to-know ul {
    gap: 0;
  }

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

  .footer-lead {
    grid-column: auto;
  }

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

  .lightbox-panel {
    grid-template-columns: 50px minmax(0, 1fr) 50px;
    padding: 65px 8px 24px;
  }

  .lightbox-control {
    width: 42px;
    height: 42px;
    font-size: 0.64rem;
  }
}

@media (max-width: 767px) {
  .site-header {
    background: linear-gradient(180deg, rgba(11, 17, 13, 0.78) 0%, rgba(11, 17, 13, 0.48) 68%, rgba(11, 17, 13, 0) 100%);
    border-bottom-color: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .hero {
    height: 100svh;
    min-height: 720px;
  }

  .hero-media img {
    object-position: 55% 50%;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 10, 9, 0.13) 0%, rgba(8, 10, 9, 0.16) 39%, rgba(8, 10, 9, 0.78) 100%);
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: max(34px, env(safe-area-inset-bottom));
  }

  .hero-action-block {
    margin-top: 20px;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .hero h1 {
    max-width: 11.5ch;
    font-size: clamp(2.65rem, 11.5vw, 3.65rem);
    line-height: 0.92;
    letter-spacing: -0.035em;
  }

  .hero-copy {
    max-width: 27ch;
    margin-top: 0;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .hero-support {
    max-width: 32ch;
    margin-top: 8px;
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .hero-ctas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-ctas .button {
    min-height: 62px;
    min-width: 0;
    width: 100%;
    justify-content: space-between;
    padding: 0 15px;
    border-radius: 0;
    font-size: 0.84rem;
  }

  .hero-ctas .button .icon {
    order: 2;
    width: 17px;
    height: 17px;
  }

}

@keyframes about-main-mobile-scroll {
  from { transform: translate3d(0, 24px, 0) scale(0.99); }
  to { transform: translate3d(0, -14px, 0) scale(1.01); }
}

@keyframes about-detail-mobile-scroll {
  from { transform: translate3d(0, 34px, 0); }
  to { transform: translate3d(0, -12px, 0); }
}

@keyframes gallery-mobile-focus {
  from { transform: translate3d(0, 22px, 0) scale(0.95); }
  to { transform: translate3d(0, -6px, 0) scale(1); }
}

@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .about-main {
      animation-name: about-main-mobile-scroll;
    }

    .about-detail-coffee,
    .about-detail-patio {
      animation-name: about-detail-mobile-scroll;
    }

    .gallery-column,
    .gallery-column-shifted,
    .gallery-column-soft-shift {
      animation: none;
    }

    .gallery-item {
      animation: gallery-mobile-focus linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 58%;
      will-change: transform;
    }
  }
}

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

  .reveal,
  .image-reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .hero-media,
  .hero-media img,
  .hero-content,
  .hero-overlay::after,
  .about-main,
  .about-detail-coffee,
  .about-detail-patio,
  .gallery-column,
  .gallery-item,
  .journey-panel::after,
  .journey-panel:first-child .journey-media img {
    animation: none !important;
    transform: none !important;
    opacity: 1;
    will-change: auto;
  }

  .journey-panel,
  .journey-panel-late {
    position: relative;
    top: auto;
    min-height: 0;
    margin-top: 0;
  }

  .journey-grid {
    display: grid;
    gap: 72px;
    padding-bottom: 0;
  }
}

/* Emil-inspired motion polish: purposeful layers, strong easing, and quiet gaps. */
.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #d7efcf, #ffffff 48%, #91bf9b);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

@supports (animation-timeline: scroll()) {
  .site-header::after {
    animation: page-progress linear both;
    animation-timeline: scroll(root block);
  }
}

.hero-atmosphere {
  position: absolute;
  z-index: 2;
  inset: var(--header-height) 0 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-trail {
  position: absolute;
  inset: 5% -4% 2%;
  width: 108%;
  height: 93%;
  overflow: visible;
  opacity: 0.72;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.18));
}

.hero-trail path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.58);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-dasharray: 3 15;
  animation: trail-flow 13s linear infinite;
}

.hero-waypoint {
  position: absolute;
  top: clamp(108px, 17vh, 170px);
  right: clamp(26px, 6vw, 96px);
  width: clamp(150px, 14vw, 210px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 36, 27, 0.24), rgba(19, 36, 27, 0.02) 65%, transparent 66%);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: waypoint-orbit 9s var(--ease-in-out) infinite;
  will-change: transform;
}

.hero-waypoint::before,
.hero-waypoint::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.hero-waypoint::before {
  inset: 12%;
  border: 1px dashed rgba(255, 255, 255, 0.42);
  animation: ring-spin 18s linear infinite reverse;
}

.hero-waypoint::after {
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: #d7efcf;
  box-shadow: 0 0 0 7px rgba(215, 239, 207, 0.12), 0 0 24px rgba(215, 239, 207, 0.7);
  transform: translate(-50%, -50%);
  animation: waypoint-pulse 2.8s var(--ease-in-out) infinite;
}

.hero-waypoint span {
  position: relative;
  z-index: 1;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: center;
}

.hero-waypoint i {
  width: 42px;
  height: 1px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.28);
}

.ambient-ribbon {
  position: relative;
  z-index: 3;
  height: 48px;
  overflow: hidden;
  color: var(--forest-deep);
  background: #d7efcf;
  border-block: 1px solid rgba(22, 34, 27, 0.12);
}

.ambient-ribbon-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ribbon-flow 25s linear infinite;
  will-change: transform;
}

.ambient-ribbon span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.about-section,
.menu-section,
.reviews-section {
  position: relative;
  overflow: clip;
}

.about-section::before {
  position: absolute;
  top: 8%;
  right: -150px;
  width: 430px;
  aspect-ratio: 1;
  content: "";
  opacity: 0.38;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 20px, rgba(47, 91, 67, 0.12) 21px 22px);
  animation: contour-drift 17s var(--ease-in-out) infinite alternate;
  pointer-events: none;
  will-change: transform;
}

.about-grid,
.menu-section > .shell,
.reviews-section > .shell {
  position: relative;
  z-index: 1;
}

.menu-section::before {
  position: absolute;
  top: 30%;
  left: -18%;
  width: 70%;
  height: 1px;
  content: "";
  opacity: 0.5;
  background: linear-gradient(90deg, transparent, rgba(47, 91, 67, 0.5), transparent);
  transform: rotate(-7deg) translate3d(-20%, 0, 0);
  animation: menu-trace 12s var(--ease-in-out) infinite alternate;
  pointer-events: none;
}

.favourites-strip figure {
  position: relative;
  animation: favourite-drift 10s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.favourites-strip figure:nth-child(2) {
  animation-delay: -6s;
  animation-duration: 12s;
}

.favourites-strip figure:nth-child(3) {
  animation-delay: -3s;
  animation-duration: 11s;
}

.favourites-strip figure:nth-child(4) {
  animation-delay: -8s;
  animation-duration: 13s;
}

.favourites-strip img {
  box-shadow: 0 16px 34px rgba(18, 34, 25, 0.09);
  transition: transform 240ms var(--ease-out), filter 240ms ease, box-shadow 240ms ease;
}

.journey-panel::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: clamp(-90px, -5vw, -35px);
  width: clamp(210px, 27vw, 390px);
  aspect-ratio: 1;
  content: "";
  opacity: 0.24;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(167, 200, 162, 0.7) 0deg 1deg, transparent 1deg 14deg);
  -webkit-mask: radial-gradient(circle, transparent 0 45%, #000 46% 47%, transparent 48% 61%, #000 62% 63%, transparent 64%);
  mask: radial-gradient(circle, transparent 0 45%, #000 46% 47%, transparent 48% 61%, #000 62% 63%, transparent 64%);
  transform: translateY(-50%);
  animation: journey-orbit 26s linear infinite;
  pointer-events: none;
  will-change: transform;
}

.journey-panel-late::before {
  right: auto;
  left: clamp(-90px, -5vw, -35px);
  animation-direction: reverse;
}

.journey-media {
  position: relative;
  z-index: 1;
}

.journey-panel-late .journey-media img {
  transform-origin: 52% 48%;
  animation: journey-breathe-late 14s var(--ease-in-out) -5s infinite alternate;
}

.gallery-item::before {
  position: absolute;
  z-index: 1;
  inset: -35% -70%;
  content: "";
  opacity: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
  transform: translate3d(-34%, 0, 0) rotate(3deg);
  animation: gallery-light 10s var(--ease-in-out) infinite;
  pointer-events: none;
  will-change: transform, opacity;
}

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

.gallery-item span {
  transition: transform 220ms var(--ease-out), letter-spacing 220ms ease;
}

.review-card {
  position: relative;
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease, border-color 240ms ease;
}

.review-feature {
  overflow: hidden;
  isolation: isolate;
}

.review-feature::before {
  position: absolute;
  z-index: -1;
  right: -0.08em;
  bottom: -0.42em;
  content: "“";
  color: rgba(167, 200, 162, 0.09);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(14rem, 26vw, 25rem);
  line-height: 1;
  animation: quote-breathe 9s var(--ease-in-out) infinite alternate;
  pointer-events: none;
}

.text-link .icon,
.review-card a .icon,
.visit-socials a .icon {
  transition: transform 180ms var(--ease-out);
}

.lightbox[open] .lightbox-panel {
  animation: lightbox-in 360ms var(--ease-drawer) both;
}

.lightbox-control,
.lightbox-close {
  transition: transform 150ms var(--ease-out), background-color 180ms ease, border-color 180ms ease;
}

.button:active,
.social-link:active,
.menu-toggle:active,
.gallery-item:active,
.lightbox-control:active,
.lightbox-close:active {
  transform: scale(0.97);
}

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

  .button-ghost:hover {
    background: rgba(255, 255, 255, 0.17);
  }

  .social-link:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.62);
  }

  .favourites-strip figure:hover img {
    filter: saturate(1.04) contrast(1.02);
    box-shadow: 0 24px 48px rgba(18, 34, 25, 0.16);
    transform: scale(1.025);
  }

  .gallery-item:hover img {
    filter: saturate(1.06) contrast(1.03);
    transform: scale(1.045);
  }

  .gallery-item:hover span {
    letter-spacing: 0.12em;
    transform: translateY(-3px);
  }

  .review-card:hover {
    border-color: rgba(47, 91, 67, 0.28);
    box-shadow: 0 20px 48px rgba(18, 34, 25, 0.1);
    transform: translateY(-5px);
  }

  .text-link:hover .icon,
  .review-card a:hover .icon,
  .visit-socials a:hover .icon {
    transform: translate3d(4px, -4px, 0);
  }

  .lightbox-control:hover,
  .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.56);
    transform: scale(1.05);
  }
}

@keyframes page-progress {
  to { transform: scaleX(1); }
}

@keyframes trail-flow {
  to { stroke-dashoffset: -180; }
}

@keyframes waypoint-orbit {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(-10px, 14px, 0) rotate(3deg); }
}

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

@keyframes waypoint-pulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.82); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.18); }
}

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

@keyframes contour-drift {
  from { transform: translate3d(0, -12px, 0) rotate(-7deg) scale(0.95); }
  to { transform: translate3d(-52px, 46px, 0) rotate(12deg) scale(1.08); }
}

@keyframes menu-trace {
  from { transform: rotate(-7deg) translate3d(-20%, 0, 0) scaleX(0.72); opacity: 0.2; }
  to { transform: rotate(-7deg) translate3d(68%, 0, 0) scaleX(1.12); opacity: 0.68; }
}

@keyframes favourite-drift {
  from { transform: translate3d(0, -6px, 0) rotate(-0.35deg); }
  to { transform: translate3d(0, 8px, 0) rotate(0.35deg); }
}

@keyframes journey-orbit {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes journey-breathe-late {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-0.7%, -0.6%, 0); }
}

@keyframes gallery-light {
  0%, 66% { opacity: 0; transform: translate3d(-34%, 0, 0) rotate(3deg); }
  74% { opacity: 0.34; }
  90%, 100% { opacity: 0; transform: translate3d(34%, 0, 0) rotate(3deg); }
}

@keyframes quote-breathe {
  from { opacity: 0.65; transform: translate3d(0, 0, 0) rotate(-2deg); }
  to { opacity: 1; transform: translate3d(-10px, -8px, 0) rotate(1deg); }
}

@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 767px) {
  .hero-trail {
    inset: 12% -38% 16% -24%;
    width: 162%;
    height: 72%;
    opacity: 0.58;
  }

  .hero-waypoint {
    top: 12%;
    right: -34px;
    width: 148px;
    opacity: 0.76;
  }

  .ambient-ribbon {
    height: 42px;
  }

  .ambient-ribbon span {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .about-section::before {
    top: 20%;
    right: -180px;
    width: 330px;
  }

  .favourites-strip figure {
    animation-name: favourite-drift-mobile;
  }

  .journey-panel::before {
    top: 30%;
    right: -72px;
    width: 220px;
    opacity: 0.18;
  }

  .journey-panel-late::before {
    right: auto;
    left: -72px;
  }
}

@keyframes favourite-drift-mobile {
  from { transform: translate3d(0, -3px, 0); }
  to { transform: translate3d(0, 5px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::after,
  .hero-trail path,
  .hero-waypoint,
  .hero-waypoint::before,
  .hero-waypoint::after,
  .ambient-ribbon-track,
  .about-section::before,
  .menu-section::before,
  .favourites-strip figure,
  .journey-panel::before,
  .journey-panel-late .journey-media img,
  .gallery-item::before,
  .review-feature::before,
  .lightbox[open] .lightbox-panel {
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }

  .site-header::after {
    transform: scaleX(1) !important;
  }

  .hero-atmosphere {
    display: none;
  }

  .ambient-ribbon-track {
    width: 100%;
    justify-content: center;
  }

  .ambient-ribbon-track span:nth-child(2) {
    display: none;
  }

  .gallery-item::before,
  .journey-panel::before,
  .about-section::before,
  .menu-section::before {
    display: none;
  }
}
