:root {
  color-scheme: light;
  --accent: #98644f;
  --accent-deep: #5b3930;
  --accent-soft: #f2e5dc;
  --ink: #251b18;
  --muted: #665952;
  --surface: #fbf7f2;
  --white: #ffffff;
  --signal: #b27750;
  --line: rgba(37, 27, 24, 0.18);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --body: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --page: min(100% - 40px, 1240px);
  --section-space: clamp(5.5rem, 10vw, 9rem);
  --header-height: 72px;
  --z-sticky: 20;
  --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);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

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

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

img {
  max-width: 100%;
}

figure,
blockquote,
dl,
dd,
p,
h1,
h2,
h3 {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-wrap: balance;
}

h2 {
  font-size: clamp(3rem, 7vw, 6rem);
}

p,
li,
blockquote {
  text-wrap: pretty;
}

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

.section {
  padding-block: var(--section-space);
}

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

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-inline: max(20px, calc((100vw - 1240px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  transition: background-color 220ms var(--ease-out), color 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(251, 247, 242, 0.98);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 5px 8px rgba(37, 27, 24, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  background: var(--white);
}

.brand-name {
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.5vw, 40px);
}

.desktop-nav a,
.header-menu-link {
  position: relative;
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right 180ms var(--ease-out);
}

.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header-menu-link {
  display: none;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid currentColor;
  border-radius: 3px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background-color 180ms ease, color 180ms ease, transform 140ms var(--ease-out);
}

.button-small {
  min-height: 44px;
  padding: 0.75rem 1.05rem;
}

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

.site-header.is-scrolled .button-light {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration-thickness: 1px;
  transition: color 160ms ease;
}

.text-link span {
  display: inline-block;
  transition: transform 160ms var(--ease-out);
}

.icon {
  width: 1em;
  height: 1em;
  display: block;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

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

.text-link-icon {
  width: 1.08em;
  height: 1.08em;
}

.header-menu-icon {
  width: 1.55rem;
  height: 1.55rem;
  stroke-width: 1.55;
}

.section-icon {
  width: 1.08em;
  height: 1.08em;
  color: var(--accent);
}

.quick-fact-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-bottom: 12px;
  opacity: 0.9;
}

.text-link-light {
  color: var(--white);
}

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

.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% 50%;
  animation: hero-image-in 1050ms var(--ease-out) both;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.24) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: clamp(48px, 8vw, 140px);
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: clamp(38px, 8vh, 92px);
}

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

.hero-support-block {
  width: min(100%, 390px);
  justify-self: end;
  text-align: right;
}

.eyebrow {
  margin-bottom: 1.15rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.accent {
  color: var(--accent);
}

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

.hero h1 {
  max-width: 780px;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.82;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
  animation-delay: 70ms;
}

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

.hero-copy {
  max-width: none;
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.5;
  animation-delay: 130ms;
}

.hero-actions {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2rem;
  animation-delay: 190ms;
}

.hero-actions .button,
.hero-actions .hero-secondary {
  min-height: 60px;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 0;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: none;
}

.hero-actions .button {
  justify-content: space-between;
  color: var(--ink);
}

.hero-actions .hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
  text-decoration: none;
}

.hero-actions .button-icon,
.hero-actions .text-link-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  stroke-width: 1.45;
}

.hero-actions .hero-secondary > span {
  display: inline-block;
  transition: transform 160ms var(--ease-out);
}

@keyframes hero-image-in {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

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

.quick-facts {
  background: var(--accent);
  color: var(--white);
}

.quick-facts-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.quick-facts p {
  min-width: 0;
  padding: 24px clamp(16px, 2vw, 28px);
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.quick-facts p:first-child {
  padding-left: 0;
}

.quick-facts p:last-child {
  padding-right: 0;
  border-right: 0;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 500;
  line-height: 1.15;
}

.quick-facts span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(430px, 1.05fr) minmax(380px, 0.95fr);
  grid-template-areas: "copy collage";
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}

.intro-collage {
  position: relative;
  width: min(100%, 520px);
  min-height: 0;
  margin-inline: auto;
  grid-area: collage;
}

.intro-collage::before {
  position: absolute;
  inset: -13px -8px 19px 15px;
  z-index: 0;
  border: 1px solid rgba(152, 100, 79, 0.3);
  content: "";
  transform: rotate(1deg);
  pointer-events: none;
}

.portrait-frame,
.ratio-three-four {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.portrait-frame {
  width: 100%;
}

.intro-photo-block {
  position: relative;
  z-index: 1;
  margin: 0;
}

.portrait-frame img,
.ratio-three-four img,
.gallery-media img,
.experience-portrait img,
.experience-landscape img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.intro-photo-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.intro-photo-caption span:last-child {
  color: var(--accent);
  text-align: right;
}

.intro-copy {
  grid-area: copy;
}

.intro-copy h2 {
  max-width: 660px;
  font-size: clamp(3.2rem, 5.8vw, 5.65rem);
}

.large-copy {
  max-width: 570px;
  margin-top: 2rem;
  color: #4b3a33;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.38;
}

.expect-list {
  margin-block: 2.4rem 1.8rem;
  border-top: 1px solid var(--ink);
}

.expect-list > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.32fr) 1fr;
  gap: 24px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}

.expect-list h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.expect-list p {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.section-heading {
  margin-bottom: clamp(42px, 7vw, 76px);
}

.section-heading > div {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 42px;
}

.section-heading h2 {
  max-width: 800px;
}

.section-heading p {
  max-width: 285px;
  padding-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

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

.menu-card figure img,
.gallery-item img {
  transition: transform 420ms var(--ease-out);
}

.menu-card-copy {
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.menu-card-copy h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.menu-card-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 16px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.82rem;
}

.menu-card-copy li::before {
  content: "+";
  margin-right: 7px;
  color: var(--accent);
}

.menu-note {
  max-width: 560px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.78rem;
}

.favourites-section {
  padding-block: var(--section-space);
  background: var(--accent);
  color: var(--white);
}

.favourites-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(400px, 1.15fr);
  gap: clamp(50px, 10vw, 150px);
}

.favourites-lead h2 {
  max-width: 490px;
}

.favourites-lead p {
  max-width: 260px;
  margin-top: 1.6rem;
  color: rgba(255, 255, 255, 0.76);
}

.favourites-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
}

.favourites-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-block: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.favourites-list span {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.08;
}

.favourites-list small {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.experience-section {
  padding-block: var(--section-space);
  background: var(--white);
}

.experience-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(430px, 1.22fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.experience-story + .experience-story {
  margin-top: clamp(96px, 14vw, 190px);
}

.experience-story-brunch {
  grid-template-columns: minmax(360px, 0.72fr) minmax(520px, 1.28fr);
}

.experience-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  box-shadow: 24px 24px 0 var(--accent-soft);
}

.experience-landscape {
  position: relative;
  aspect-ratio: 4 / 3;
  box-shadow: -26px 26px 0 var(--accent);
}

.experience-portrait,
.experience-landscape {
  overflow: hidden;
}

.story-label {
  margin-bottom: 1.2rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-copy h3 {
  max-width: 640px;
  font-size: clamp(3.2rem, 6.8vw, 5.7rem);
}

.experience-copy > p:not(.story-label) {
  max-width: 520px;
  margin-top: 1.7rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.65;
}

.experience-copy .text-link {
  margin-top: 2rem;
}

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

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 54px) clamp(18px, 2.6vw, 34px);
  align-items: start;
}

.gallery-item {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
}

.gallery-media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #2d211d;
}

.gallery-item-mark {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--ink);
  z-index: 2;
  transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.gallery-item-mark .icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 1.7;
}

.gallery-caption {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.35;
}

.reviews-section {
  background: var(--surface);
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(48px, 7vw, 82px);
}

.rating-lockup {
  display: grid;
  justify-items: end;
  flex: 0 0 auto;
  color: var(--accent);
}

.rating-lockup strong {
  font-family: var(--display);
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1;
}

.rating-number {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-icon {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 4px;
}

.rating-lockup span,
.review-topline span {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.rating-lockup small {
  margin-top: 4px;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  grid-template-rows: auto auto;
  gap: 28px clamp(34px, 6vw, 82px);
}

.review-card {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.review-featured {
  grid-row: 1 / span 2;
  padding: clamp(34px, 5vw, 66px);
  border-top: 0;
  background: var(--accent);
  color: var(--white);
}

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

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

.review-topline div {
  display: grid;
  gap: 2px;
}

.review-topline strong {
  font-size: 0.86rem;
}

.review-topline span {
  font-size: 0.66rem;
}

.review-featured .review-topline span {
  color: var(--white);
}

.review-card blockquote {
  flex: 1;
  margin-block: 28px 30px;
  font-family: var(--display);
  font-size: clamp(1.32rem, 2vw, 1.7rem);
  line-height: 1.42;
}

.review-featured blockquote {
  max-width: 680px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.2;
}

.review-card > a {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.review-featured > a {
  color: var(--white);
}

.find-section {
  padding-block: var(--section-space);
  background: var(--accent-deep);
  color: var(--white);
}

.find-grid {
  display: grid;
  grid-template-columns: minmax(370px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(54px, 7vw, 104px);
  align-items: start;
}

.find-info h2 {
  max-width: 520px;
}

.find-intro {
  max-width: 430px;
  margin-top: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
}

.find-info address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 2rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-style: normal;
  line-height: 1.38;
}

.address-icon {
  width: 1.15em;
  height: 1.15em;
  margin-top: 0.2em;
  color: var(--signal);
}

.hours-list {
  margin-top: 2.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.46);
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.84rem;
}

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

.hours-list dt {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-icon {
  width: 1em;
  height: 1em;
  color: var(--signal);
}

.visit-guide {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.46);
}

.visit-guide li {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 18px;
  padding-block: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.76rem;
}

.visit-guide span {
  color: rgba(255, 255, 255, 0.66);
}

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

.guide-icon {
  width: 1.05em;
  height: 1.05em;
  color: var(--signal);
}

.visit-guide strong {
  font-weight: 650;
}

.find-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 2.2rem;
}

.find-media {
  display: block;
}

.map-frame {
  height: clamp(360px, 55vw, 760px);
  overflow: hidden;
  background: #e5dad2;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

.closing-section {
  position: relative;
  min-height: 76vh;
  min-height: 76svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: #2c211e;
}

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

.closing-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.closing-image {
  object-fit: cover;
  object-position: 50% 48%;
}

.closing-overlay {
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.16) 52%, rgba(0, 0, 0, 0.05) 100%);
}

.closing-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(62px, 9vw, 110px);
}

.closing-content h2 {
  max-width: 720px;
}

.closing-content > p {
  margin-top: 1.3rem;
  font-size: 1.05rem;
}

.closing-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 2rem;
}

.site-footer {
  padding-block: 48px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  font-size: 0.82rem;
}

.footer-brand img {
  width: 82px;
  height: 82px;
  display: block;
  object-fit: contain;
  background: var(--white);
}

.footer-label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.site-footer a {
  color: inherit;
}

.footer-icon {
  width: 0.95em;
  height: 0.95em;
  display: inline-block;
  margin-right: 6px;
  vertical-align: -0.16em;
}

.footer-end {
  display: grid;
  justify-items: end;
  gap: 18px;
  text-align: right;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(8, 8, 8, 0.96);
  color: var(--white);
}

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

.lightbox-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(48px, 1fr) minmax(260px, auto) minmax(48px, 1fr);
  align-items: center;
  padding: 30px;
}

.lightbox figure {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.lightbox figure img {
  width: auto;
  height: min(82vh, 900px);
  max-width: min(80vw, 900px);
  display: block;
  object-fit: contain;
}

.lightbox figcaption {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
}

.lightbox button {
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 1;
  width: 48px;
  height: 48px;
  font-size: 2rem;
}

.lightbox-nav {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  border-radius: 50% !important;
  font-size: 1.5rem;
  transition: background-color 160ms ease, transform 140ms var(--ease-out);
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  pointer-events: none;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.button:active,
.lightbox button:active {
  transform: scale(0.97);
}

.hero-media {
  animation: hero-frame-drift 16s var(--ease-in-out) 1.1s infinite alternate;
  will-change: transform;
}

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

.hero-atmosphere::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 4%;
  width: clamp(260px, 38vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 171, 133, 0.38) 0%, rgba(152, 100, 79, 0.12) 42%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.62;
  animation: hero-light-drift 9s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.hero-orbit {
  position: absolute;
  top: clamp(96px, 12vh, 150px);
  right: clamp(36px, 6vw, 100px);
  width: clamp(160px, 16vw, 240px);
  aspect-ratio: 1;
  color: var(--white);
  animation: hero-orbit-float 6s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

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

.hero-orbit text {
  fill: currentColor;
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.hero-orbit-core {
  position: absolute;
  inset: 31%;
  display: grid;
  place-items: center;
  place-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.16);
  font-family: var(--display);
  font-size: clamp(0.9rem, 1.3vw, 1.15rem);
  line-height: 0.82;
  text-align: center;
  backdrop-filter: none;
  animation: orbit-core-pulse 3.2s var(--ease-in-out) infinite alternate;
}

.hero-orbit-core .icon {
  width: 1.65rem;
  height: 1.65rem;
  stroke-width: 1.6;
}

.hero-orbit-core > span {
  font-size: 0.72em;
  line-height: 1;
  white-space: nowrap;
}

.motion-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--ink);
  color: var(--white);
}

.motion-ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: ticker-flow 26s linear infinite;
  will-change: transform;
}

.motion-ticker p {
  flex: none;
  padding-block: 15px;
  padding-inline-end: clamp(1.5rem, 4vw, 4rem);
  font-size: clamp(0.78rem, 1.15vw, 0.96rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  white-space: nowrap;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
  will-change: opacity, transform;
}

.motion-ready [data-reveal="clip"] {
  clip-path: inset(0 0 16% 0);
  transform: translate3d(0, 26px, 0) scale(0.985);
  transition: opacity 820ms var(--ease-out), transform 900ms var(--ease-out), clip-path 900ms var(--ease-out);
}

.motion-ready [data-reveal-delay="1"] {
  transition-delay: 80ms;
}

.motion-ready [data-reveal-delay="2"] {
  transition-delay: 160ms;
}

.motion-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  clip-path: inset(0 0 0 0);
}

.favourites-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.favourites-section::before,
.favourites-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

.favourites-section::before {
  top: -28%;
  left: 35%;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 68%);
  animation: warm-glow-one 11s var(--ease-in-out) infinite alternate;
}

.favourites-section::after {
  right: -12%;
  bottom: -52%;
  width: min(46vw, 650px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 34px rgba(255, 255, 255, 0.025), inset 0 0 0 70px rgba(255, 255, 255, 0.02);
  animation: warm-glow-two 9s var(--ease-in-out) infinite alternate;
}

.favourites-grid {
  position: relative;
  z-index: 1;
}

.menu-orbit {
  position: absolute;
  top: 50%;
  right: -64px;
  z-index: 0;
  width: clamp(190px, 22vw, 320px);
  aspect-ratio: 1;
  color: rgba(255, 255, 255, 0.22);
  animation: menu-orbit-spin 30s linear infinite;
  will-change: transform;
}

.menu-orbit svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.menu-orbit text {
  fill: currentColor;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}

.favourites-list span {
  display: inline-block;
  transition: transform 220ms var(--ease-out);
}

.experience-story {
  position: relative;
}

.motion-stamp {
  position: absolute;
  top: 10%;
  left: min(31vw, 420px);
  z-index: 3;
  width: clamp(104px, 10vw, 132px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(91, 57, 48, 0.22);
  pointer-events: none;
  animation: stamp-float 5.6s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.motion-stamp::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  animation: orbit-spin 14s linear infinite reverse;
}

.motion-stamp span {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1;
  text-align: center;
}

.gallery-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 4%;
  left: -18%;
  z-index: -1;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161, 108, 82, 0.28), transparent 66%);
  animation: gallery-glow 12s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.gallery-item {
  isolation: isolate;
}

.gallery-media {
  isolation: isolate;
}

.gallery-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.24) 49%, transparent 66%);
  opacity: 0;
  transform: translate3d(-120%, 0, 0);
  animation: gallery-glint 10s linear infinite;
  will-change: transform, opacity;
}

.gallery-item:nth-child(2) .gallery-media::before { animation-delay: -8.3s; }
.gallery-item:nth-child(3) .gallery-media::before { animation-delay: -6.6s; }
.gallery-item:nth-child(4) .gallery-media::before { animation-delay: -5s; }
.gallery-item:nth-child(5) .gallery-media::before { animation-delay: -3.3s; }
.gallery-item:nth-child(6) .gallery-media::before { animation-delay: -1.6s; }

.review-featured {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.review-featured::before {
  content: "“";
  position: absolute;
  right: 2%;
  bottom: -38%;
  z-index: -1;
  color: rgba(255, 255, 255, 0.13);
  font-family: var(--display);
  font-size: clamp(17rem, 32vw, 31rem);
  line-height: 1;
  animation: quote-float 7s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.rating-lockup span {
  position: relative;
}

.rating-lockup span::after {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  color: var(--signal);
  opacity: 0.18;
  transform: scale(0.96);
  animation: stars-breathe 2.8s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.find-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.find-section::before,
.find-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

.find-section::before {
  top: -22%;
  left: -12%;
  width: min(62vw, 900px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(178, 119, 80, 0.28), transparent 68%);
  animation: find-glow 13s var(--ease-in-out) infinite alternate;
}

.find-section::after {
  right: 7%;
  bottom: -130px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 28px rgba(255, 255, 255, 0.018), inset 0 0 0 58px rgba(255, 255, 255, 0.016);
  animation: find-ring 16s linear infinite;
}

.find-grid {
  position: relative;
  z-index: 1;
}

.find-media {
  position: relative;
}

.open-beacon {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(91, 57, 48, 0.2);
  backdrop-filter: blur(8px);
}

.open-beacon > span {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #20a65a;
}

.open-beacon > span::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid #20a65a;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  animation: beacon-pulse 2s var(--ease-out) infinite;
  will-change: transform, opacity;
}

.closing-section::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -30%;
  z-index: 1;
  width: 24%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  opacity: 0.4;
  transform: translate3d(-100%, 0, 0) rotate(12deg);
  animation: closing-light 11s linear infinite;
  will-change: transform, opacity;
}

.closing-image {
  animation: closing-breathe 14s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.closing-ghost {
  position: absolute;
  top: 9%;
  left: -4%;
  z-index: 1;
  color: rgba(255, 255, 255, 0.14);
  font-family: var(--display);
  font-size: clamp(6rem, 16vw, 15rem);
  letter-spacing: -0.04em;
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
  animation: closing-ghost-drift 10s var(--ease-in-out) infinite alternate;
  will-change: transform, opacity;
}

.closing-content {
  z-index: 2;
}

.footer-brand img {
  animation: footer-mark-float 6s var(--ease-in-out) infinite alternate;
  will-change: transform;
}

.lightbox.is-pointer-open[open] {
  animation: lightbox-in 220ms var(--ease-out) both;
}

.lightbox.is-pointer-open[open] figure {
  animation: lightbox-figure-in 260ms var(--ease-out) both;
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after {
    right: 0;
  }

  .button:hover {
    transform: translateY(-2px);
    background: var(--accent-deep);
  }

  .button-light:hover {
    background: var(--surface);
    color: var(--accent-deep);
  }

  .site-header.is-scrolled .button-light:hover {
    background: var(--accent-deep);
    color: var(--white);
  }

  .text-link:hover .text-link-icon,
  .text-link:hover span {
    transform: translate3d(5px, -1px, 0);
  }

  .brand img {
    transition: transform 220ms var(--ease-out);
  }

  .brand:hover img {
    transform: rotate(-5deg) scale(1.04);
  }

  .menu-card:hover figure img,
  .gallery-item:hover img {
    transform: scale(1.045);
  }

  .gallery-item:hover .gallery-item-mark {
    background: var(--accent);
    color: var(--white);
    transform: translate3d(2px, -2px, 0);
  }

  .favourites-list li:hover span {
    transform: translate3d(8px, 0, 0);
  }

  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
  }
}

@keyframes hero-frame-drift {
  from { transform: translate3d(-0.35%, -0.2%, 0) scale(1.035); }
  to { transform: translate3d(0.55%, 0.35%, 0) scale(1.075); }
}

@keyframes hero-light-drift {
  from { transform: translate3d(-5%, -2%, 0) scale(0.9); opacity: 0.42; }
  to { transform: translate3d(10%, 8%, 0) scale(1.08); opacity: 0.74; }
}

@keyframes hero-orbit-float {
  from { transform: translate3d(0, -6px, 0); }
  to { transform: translate3d(-8px, 10px, 0); }
}

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

@keyframes orbit-core-pulse {
  from { transform: scale(0.96); opacity: 0.84; }
  to { transform: scale(1.04); opacity: 1; }
}

@keyframes ticker-flow {
  /* Four identical segments let the track shift by one segment without
     exposing an empty tail at wide viewports. */
  to { transform: translate3d(-25%, 0, 0); }
}

@keyframes warm-glow-one {
  from { transform: translate3d(-8%, -4%, 0) scale(0.88); opacity: 0.45; }
  to { transform: translate3d(8%, 6%, 0) scale(1.08); opacity: 0.85; }
}

@keyframes warm-glow-two {
  from { transform: translate3d(0, 0, 0) rotate(-8deg); opacity: 0.55; }
  to { transform: translate3d(-8%, -6%, 0) rotate(7deg); opacity: 1; }
}

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

@keyframes stamp-float {
  from { transform: translate3d(0, -7px, 0) rotate(-4deg); }
  to { transform: translate3d(6px, 9px, 0) rotate(4deg); }
}

@keyframes gallery-glow {
  from { transform: translate3d(-6%, -4%, 0) scale(0.9); opacity: 0.55; }
  to { transform: translate3d(36%, 12%, 0) scale(1.12); opacity: 1; }
}

@keyframes gallery-glint {
  0%, 68% { transform: translate3d(-120%, 0, 0); opacity: 0; }
  74% { opacity: 0.55; }
  82% { transform: translate3d(120%, 0, 0); opacity: 0; }
  100% { transform: translate3d(120%, 0, 0); opacity: 0; }
}

@keyframes quote-float {
  from { transform: translate3d(0, 12px, 0) rotate(-3deg); opacity: 0.72; }
  to { transform: translate3d(-14px, -10px, 0) rotate(3deg); opacity: 1; }
}

@keyframes stars-breathe {
  from { transform: scale(0.96); opacity: 0.12; }
  to { transform: scale(1.08); opacity: 0.78; }
}

@keyframes find-glow {
  from { transform: translate3d(-6%, -3%, 0) scale(0.92); opacity: 0.52; }
  to { transform: translate3d(18%, 10%, 0) scale(1.12); opacity: 0.9; }
}

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

@keyframes beacon-pulse {
  0% { transform: scale(0.5); opacity: 0.8; }
  80%, 100% { transform: scale(1.55); opacity: 0; }
}

@keyframes location-breathe {
  from { transform: scale(1.01) translate3d(-0.5%, 0, 0); }
  to { transform: scale(1.075) translate3d(1.2%, -0.8%, 0); }
}

@keyframes closing-light {
  0%, 24% { transform: translate3d(-100%, 0, 0) rotate(12deg); opacity: 0; }
  42% { opacity: 0.5; }
  68%, 100% { transform: translate3d(650%, 0, 0) rotate(12deg); opacity: 0; }
}

@keyframes closing-breathe {
  from { transform: scale(1.015) translate3d(-0.4%, 0, 0); }
  to { transform: scale(1.08) translate3d(1%, -0.8%, 0); }
}

@keyframes closing-ghost-drift {
  from { transform: translate3d(-2%, 0, 0); opacity: 0.58; }
  to { transform: translate3d(8%, 8px, 0); opacity: 1; }
}

@keyframes footer-mark-float {
  from { transform: translate3d(0, -3px, 0) rotate(-2deg); }
  to { transform: translate3d(4px, 5px, 0) rotate(3deg); }
}

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

@keyframes lightbox-figure-in {
  from { opacity: 0; transform: translate3d(0, 12px, 0) scale(0.97); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@media (max-width: 1040px) {
  .find-grid {
    grid-template-columns: 1fr;
  }

  .intro-collage {
    width: min(100%, 520px);
    min-height: 0;
  }

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

}

@media (max-width: 940px) {
  .intro-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "collage"
      "copy";
  }
}

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

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-support-block {
    width: min(100%, 520px);
    justify-self: start;
    text-align: left;
  }

  .favourites-grid,
  .experience-story,
  .experience-story-brunch {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

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

  .gallery-item:nth-child(n) {
    grid-column: span 1;
  }

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

  .review-featured {
    grid-row: auto;
  }

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

  .footer-end {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 719px) {
  :root {
    --page: min(100% - 32px, 640px);
    --section-space: 5.3rem;
    --header-height: 82px;
  }

  h2 {
    font-size: clamp(2.8rem, 13vw, 4.15rem);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding-inline: 22px;
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }

  .brand {
    gap: 10px;
    font-size: 0.84rem;
  }

  .brand img {
    width: 58px;
    height: 58px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
  }

  .brand-name {
    max-width: 200px;
    overflow: hidden;
    font-family: var(--display);
    font-size: clamp(0.9rem, 4.3vw, 1.1rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
  }

  .header-actions {
    gap: 0;
  }

  .header-menu-link {
    width: 44px;
    height: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    text-decoration: none;
  }

  .header-menu-icon {
    width: 1.7rem;
    height: 1.7rem;
    stroke-width: 1.35;
  }

  .header-actions .button-small {
    display: none;
  }

  .button,
  .text-link,
  .eyebrow,
  .quick-facts span,
  .expect-list h3,
  .menu-note,
  .favourites-list small,
  .review-topline span,
  .review-card > a,
  .visit-guide li,
  .footer-label,
  .footer-grid {
    font-size: 0.875rem;
  }

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

  .hero-orbit {
    top: 106px;
    right: -2px;
    width: 140px;
    opacity: 0.86;
  }

  .hero-orbit text {
    font-size: 9px;
    letter-spacing: 2.4px;
  }

  .hero-orbit-core {
    background: rgba(0, 0, 0, 0.16);
    backdrop-filter: none;
  }

  .hero-atmosphere::before {
    top: 8%;
    right: -22%;
    width: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 44%, transparent 70%);
    opacity: 0.4;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.32) 42%, rgba(0, 0, 0, 0.16) 74%, rgba(0, 0, 0, 0.1) 100%);
  }

  .hero-content {
    display: block;
    width: calc(100% - 44px);
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: max(44px, env(safe-area-inset-bottom));
  }

  .hero-support-block {
    width: 100%;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(2.95rem, 13vw, 4.2rem);
    line-height: 0.86;
    letter-spacing: 0.01em;
    text-transform: uppercase;
  }

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

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

  .hero-copy {
    max-width: 340px;
    margin-top: 1.35rem;
    font-size: 1.04rem;
    line-height: 1.4;
  }

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

  .hero-actions .button,
  .hero-actions .hero-secondary {
    min-height: 64px;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 0;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.15;
    text-transform: none;
  }

  .hero-actions .button {
    justify-content: space-between;
    color: var(--ink);
  }

  .hero-actions .hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    text-decoration: none;
  }

  .hero-actions .button-icon,
  .hero-actions .text-link-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    stroke-width: 1.45;
  }

  .hero-actions .hero-secondary > span {
    display: inline-block;
    transition: transform 160ms var(--ease-out);
  }

  .quick-facts-track {
    width: 100%;
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(185px, 1fr));
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .quick-facts p {
    scroll-snap-align: start;
    padding: 20px 16px;
  }

  .quick-facts p:first-child {
    padding-left: 16px;
  }

  .quick-facts p:last-child {
    padding-right: 16px;
  }

  .motion-ticker-track {
    animation-duration: 20s;
  }

  .motion-ticker p {
    padding-block: 14px;
    font-size: 0.875rem;
  }

  .intro-collage {
    display: block;
    min-height: 0;
  }

  .intro-collage::before {
    inset: -8px -10px 12px 8px;
  }

  .portrait-frame {
    width: 100%;
  }

  .intro-photo-caption {
    gap: 12px;
    font-size: 0.72rem;
  }

  .intro-copy h2 {
    font-size: clamp(2.95rem, 13vw, 4rem);
  }

  .expect-list > div {
    grid-template-columns: 104px 1fr;
    gap: 14px;
  }

  .section-heading > div {
    display: block;
  }

  .section-heading p {
    margin-top: 16px;
    padding: 0;
  }

  .menu-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    margin-inline: -16px;
    padding: 0 16px 12px;
    scrollbar-width: thin;
  }

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

  .favourites-grid,
  .experience-story,
  .experience-story-brunch {
    grid-template-columns: 1fr;
  }

  .favourites-grid {
    gap: 46px;
  }

  .favourites-lead h2 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .menu-orbit {
    top: 26%;
    right: -76px;
    width: 190px;
  }

  .experience-story {
    gap: 48px;
  }

  .experience-story + .experience-story {
    margin-top: 110px;
  }

  .motion-stamp {
    top: 29%;
    right: -2px;
    left: auto;
    width: 98px;
  }

  .experience-story-brunch .experience-copy {
    order: 2;
  }

  .experience-story-brunch .experience-landscape {
    order: 1;
  }

  .experience-portrait {
    width: calc(100% - 22px);
    box-shadow: 18px 18px 0 var(--accent-soft);
  }

  .experience-landscape {
    width: calc(100% - 18px);
    margin-left: 18px;
    box-shadow: -18px 18px 0 var(--accent);
  }

  .experience-copy h3 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

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

  .reviews-heading {
    display: grid;
    gap: 28px;
  }

  .rating-lockup {
    justify-items: start;
  }

  .reviews-grid {
    gap: 44px;
  }

  .review-featured {
    padding: 30px 24px;
  }

  .review-featured blockquote {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .review-card blockquote {
    font-size: 1.42rem;
  }

  .find-grid {
    gap: 56px;
  }

  .find-info h2 {
    font-size: clamp(3.4rem, 16vw, 4.7rem);
  }

  .visit-guide li {
    grid-template-columns: 92px 1fr;
    font-size: 0.82rem;
  }

  .open-beacon {
    top: 12px;
    left: 12px;
    min-height: 36px;
    padding: 8px 12px;
    font-size: 0.72rem;
  }

  .closing-section {
    min-height: 70svh;
  }

  .closing-image {
    object-position: 47% 50%;
  }

  .closing-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.17) 55%, rgba(0, 0, 0, 0.05) 100%);
  }

  .closing-content h2 {
    font-size: clamp(3.5rem, 16vw, 4.8rem);
  }

  .closing-ghost {
    top: 11%;
    left: -10%;
    font-size: clamp(6rem, 29vw, 8.5rem);
  }

  .closing-actions {
    flex-wrap: wrap;
  }

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

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

  .lightbox-inner {
    grid-template-columns: 54px 1fr 54px;
    padding: 62px 8px 18px;
  }

  .lightbox figure img {
    max-width: calc(100vw - 120px);
    height: auto;
    max-height: 78vh;
  }

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

@media (max-width: 385px) {
  .brand span {
    display: none;
  }

  .menu-card-copy ul {
    grid-template-columns: 1fr;
  }
}

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

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

  .hero-media,
  .hero-atmosphere::before,
  .hero-orbit,
  .hero-orbit > svg,
  .hero-orbit-core,
  .motion-ticker-track,
  .favourites-section::before,
  .favourites-section::after,
  .menu-orbit,
  .motion-stamp,
  .motion-stamp::after,
  .gallery-section::before,
  .review-featured::before,
  .rating-lockup span::after,
  .find-section::before,
  .find-section::after,
  .open-beacon > span::after,
  .closing-section::after,
  .closing-image,
  .closing-ghost,
  .footer-brand img {
    animation: none !important;
    transform: none !important;
  }

  .gallery-media::before,
  .rating-lockup span::after,
  .closing-section::after {
    display: none;
  }
}
