:root {
  --ink: #241d12;
  --olive: #2e2a1d;
  --olive-soft: #4c432a;
  --cream: #f7ecd7;
  --cream-deep: #e8d5ad;
  --paper: #fffaf0;
  --terracotta: #b8892e;
  --terracotta-dark: #8e6418;
  --gold: #d9ba6a;
  --white: #fffdf5;
  --muted: #756a58;
  --border: rgba(57, 42, 19, .18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --container: min(1240px, calc(100vw - 64px));
  --shadow: 0 24px 70px rgba(57, 42, 19, .18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
button, a { font: inherit; }
a { color: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--terracotta); }

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .98; }
h1 em, h2 em { font-weight: 500; }
h2 { margin-bottom: 24px; font-size: clamp(3rem, 6vw, 6.7rem); letter-spacing: -.05em; }
h3 { font-size: clamp(1.8rem, 3vw, 3rem); }
.section { margin-inline: auto; padding: 140px 0; }
.eyebrow {
  margin-bottom: 24px;
  color: var(--terracotta-dark);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow--light { color: #f4dc9b; }
.lead { color: #45524d; font-size: clamp(1.05rem, 1.5vw, 1.32rem); line-height: 1.75; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 14px 26px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .card-link:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.button--small { min-height: 43px; padding: 11px 21px; font-size: .7rem; }
.button--light { color: var(--ink); background: var(--white); }
.button--light:hover { background: var(--cream); }
.button--terracotta { color: var(--white); background: var(--terracotta); }
.button--terracotta:hover { background: var(--terracotta-dark); box-shadow: 0 10px 28px rgba(142, 100, 24, .24); }
.button--dark { color: var(--white); background: var(--ink); }
.button--dark:hover { background: var(--olive-soft); }
.text-link, .card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 5px;
  cursor: pointer;
  background: transparent;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span, .card-link span { transition: transform .2s ease; }
.text-link:hover span, .card-link:hover span { transform: translate(3px, -3px); }
.text-link--light { color: var(--white); }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 92px;
  grid-template-columns: 230px 1fr auto;
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  padding: 0 max(32px, calc((100vw - 1400px) / 2));
  color: var(--white);
  transition: height .3s ease, color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(251, 248, 241, .94);
  box-shadow: 0 8px 40px rgba(17, 27, 23, .08);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; width: 210px; align-self: center; align-items: center; }
.brand img { width: 100%; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .3)); }
.site-header.is-scrolled .brand img { filter: brightness(0) saturate(100%) invert(15%) sepia(12%) saturate(1293%) hue-rotate(105deg) brightness(92%); }
.desktop-nav { display: flex; justify-content: center; gap: 34px; }
.desktop-nav a {
  position: relative;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-header.is-scrolled .button--light { color: var(--white); background: var(--ink); }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: min(920px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--olive);
}
.hero__media, .hero__media img, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: center 52%; animation: hero-arrive 1.4s cubic-bezier(.2, .75, .3, 1) both; }
.hero__shade { background: linear-gradient(90deg, rgba(12, 24, 19, .78) 0%, rgba(12, 24, 19, .39) 47%, rgba(12, 24, 19, .12) 75%), linear-gradient(0deg, rgba(8, 17, 14, .55) 0%, transparent 46%); }
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--container);
  min-height: min(920px, 100svh);
  flex-direction: column;
  justify-content: center;
  margin: auto;
  padding-top: 80px;
}
.hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(4.5rem, 8.5vw, 9.2rem);
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero h1 em { display: block; color: #f4dc9b; }
.hero__intro { max-width: 600px; margin-bottom: 36px; font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.65; }
.hero__actions { display: flex; align-items: center; gap: 28px; }
.hero__note {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100vw - 1400px) / 2));
  bottom: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: .67rem;
  letter-spacing: .16em;
  line-height: 1.8;
  text-transform: uppercase;
}
.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 68px;
  overflow: hidden;
  background: rgba(255, 255, 255, .3);
}
.hero__scroll span { display: block; width: 100%; height: 35%; background: var(--white); animation: scroll-line 2s ease-in-out infinite; }

.intro { display: grid; width: var(--container); grid-template-columns: 28% 1fr; gap: 8%; }
.intro__aside { display: flex; align-items: flex-start; gap: 18px; padding-top: 44px; color: var(--muted); font-size: .78rem; line-height: 1.6; text-transform: uppercase; }
.line-mark { display: block; width: 42px; height: 1px; margin-top: 11px; background: var(--terracotta); }
.intro__main h2 { max-width: 850px; }
.intro__main h2 em { color: var(--terracotta); }
.intro__main .lead { max-width: 650px; margin-left: auto; }

.experiences { width: var(--container); padding-top: 40px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 58px; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(3rem, 5vw, 5.5rem); }
.section-heading > p { max-width: 430px; margin-bottom: 8px; color: var(--muted); }
.experience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.experience-card {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: var(--white);
  background: var(--olive);
}
.experience-card--wide { grid-column: span 1; }
.experience-card--feature { min-height: 720px; grid-column: 1 / -1; }
.experience-card--feature img { object-position: center 52%; }
.experience-card img, .experience-card__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.experience-card img { object-fit: cover; transition: transform .8s cubic-bezier(.2, .7, .2, 1); }
.experience-card:hover img { transform: scale(1.035); }
.experience-card__overlay { background: linear-gradient(0deg, rgba(12, 23, 19, .9) 0%, rgba(12, 23, 19, .13) 60%, rgba(12, 23, 19, .36) 100%); }
.experience-card__top {
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 30px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  font-size: .67rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.experience-card__content { position: absolute; z-index: 2; right: 38px; bottom: 36px; left: 38px; }
.experience-card__content .eyebrow { margin-bottom: 14px; }
.experience-card h3 { max-width: 550px; margin-bottom: 14px; font-size: clamp(2.2rem, 4.1vw, 4.5rem); letter-spacing: -.035em; }
.experience-card__content p:not(.eyebrow) { max-width: 520px; margin-bottom: 24px; color: rgba(255, 255, 255, .82); }
.card-link { color: var(--white); }

.recipe-preview {
  display: grid;
  width: var(--container);
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: stretch;
  gap: 0;
  padding-top: 18px;
}
.recipe-preview__image { min-height: 610px; overflow: hidden; }
.recipe-preview__image img { width: 100%; height: 100%; object-fit: cover; }
.recipe-preview__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(48px, 7vw, 96px); background: var(--cream); }
.recipe-preview__copy h2 { max-width: 620px; font-size: clamp(3.4rem, 5.6vw, 6.1rem); }
.recipe-preview__copy h2 em { color: var(--terracotta); }
.recipe-preview__copy > p:not(.eyebrow) { max-width: 500px; margin-bottom: 34px; color: var(--muted); font-size: 1.06rem; }

.story {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(420px, 1.1fr) minmax(240px, .75fr);
  align-items: center;
  gap: 6vw;
  margin-top: 140px;
  padding: 110px max(32px, calc((100vw - 1440px) / 2));
  background: var(--cream);
}
.story__image { overflow: hidden; }
.story__image img { width: 100%; height: 100%; object-fit: cover; }
.story__image--main { height: 650px; }
.story__image--detail { height: 430px; }
.story__copy h2 { font-size: clamp(3.4rem, 5.8vw, 6.2rem); }
.story__copy h2 em { color: var(--terracotta); }
.story__copy > p:not(.eyebrow) { max-width: 580px; color: #4d5a55; font-size: 1.08rem; line-height: 1.8; }
.story__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 52px 0 0; padding-top: 28px; border-top: 1px solid var(--border); }
.story__facts div { display: flex; flex-direction: column; }
.story__facts dt { font-family: var(--serif); font-size: 2.2rem; line-height: 1; }
.story__facts dd { margin: 8px 0 0; color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }

.promise { width: var(--container); }
.promise > h2 { max-width: 800px; }
.promise > h2 em { color: var(--terracotta); }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 80px; }
.promise-grid article { padding-top: 22px; border-top: 1px solid var(--border); }
.promise-icon { color: var(--terracotta); font-family: var(--serif); font-size: 1rem; }
.promise-grid h3 { margin: 55px 0 16px; font-size: 2rem; }
.promise-grid p { max-width: 360px; color: var(--muted); }

.gallery { display: grid; height: 900px; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 7px; padding: 7px; background: var(--paper); }
.gallery figure { min-height: 0; margin: 0; overflow: hidden; }
.gallery figure:nth-child(1) { grid-row: 1 / span 2; }
.gallery figure:nth-child(4) { grid-column: 2 / span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery figure:hover img { transform: scale(1.03); }

.reviews { display: grid; width: var(--container); grid-template-columns: 1.05fr .95fr; gap: 10%; border-top: 1px solid var(--border); }
.reviews__heading h2 { font-size: clamp(3.2rem, 5.8vw, 6.5rem); }
.reviews__heading h2 em { color: var(--terracotta); }
.review-platforms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 48px; }
.review-platform {
  display: grid;
  min-width: 0;
  gap: 3px;
  padding: 17px 15px;
  border: 1px solid rgba(184, 137, 46, .24);
  background: rgba(217, 186, 106, .08);
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.review-platform:hover { border-color: var(--terracotta); background: rgba(217, 186, 106, .16); transform: translateY(-2px); }
.review-platform > span { overflow: hidden; font-size: .61rem; font-weight: 600; letter-spacing: .1em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.review-platform strong { color: var(--terracotta-dark); font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1.15; }
.review-platform small { overflow: hidden; color: var(--muted); font-size: .61rem; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.review-carousel { align-self: center; min-width: 0; }
.review-track { display: grid; min-height: 390px; }
.review-card { display: none; grid-column: 1; grid-row: 1; align-content: start; animation: review-in .45s ease both; }
.review-card.is-active { display: grid; }
.review-card__quote { color: var(--terracotta); font-family: var(--serif); font-size: 4rem; line-height: 1; }
.review-card blockquote { margin: 25px 0 36px; font-family: var(--serif); font-size: clamp(1.65rem, 2.5vw, 2.6rem); line-height: 1.35; }
.review-card footer { display: flex; align-items: center; gap: 15px; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.review-card footer::before { width: 35px; height: 1px; background: var(--terracotta); content: ""; }
.review-card footer span, .review-card footer a { color: var(--muted); }
.review-card footer a { text-underline-offset: 3px; }
.review-controls { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 20px; }
.review-controls button { width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 50%; cursor: pointer; background: transparent; transition: color .2s, background .2s; }
.review-controls button:hover { color: var(--white); background: var(--ink); }
.review-controls span { color: var(--muted); font-size: .72rem; letter-spacing: .08em; }
.reviews__link { grid-column: 2; justify-self: start; margin-top: -42px; }

.visit { position: relative; min-height: 800px; padding: 90px max(32px, calc((100vw - 1240px) / 2)); overflow: hidden; }
.visit__visual, .visit__visual::after, .visit__visual img { position: absolute; inset: 0; width: 100%; height: 100%; }
.visit__visual img { object-fit: cover; object-position: center 50%; }
.visit__visual::after { background: linear-gradient(90deg, rgba(14, 27, 22, .25), rgba(14, 27, 22, .05)); content: ""; }
.visit__card { position: relative; z-index: 1; width: min(570px, 100%); margin-left: auto; padding: 62px; background: var(--cream); box-shadow: var(--shadow); }
.visit__card h2 { font-size: clamp(3.4rem, 5.5vw, 5.7rem); }
.visit__card h2 em { color: var(--terracotta); }
.visit__card address { margin: 34px 0; font-style: normal; }
.visit__details { padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.visit__details p { display: grid; grid-template-columns: 85px 1fr; margin: 7px 0; }
.visit__details span { color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.visit__details a { text-underline-offset: 3px; }
.visit__actions { display: flex; align-items: center; gap: 27px; margin-top: 34px; }

.final-cta { padding: 150px 24px; color: var(--white); background: var(--olive); text-align: center; }
.final-cta h2 { margin: 0 auto 45px; font-size: clamp(3.8rem, 8vw, 8.5rem); letter-spacing: -.055em; }
.final-cta h2 em { color: #f4dc9b; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 80px max(32px, calc((100vw - 1240px) / 2)) 30px; color: var(--white); background: #1d190f; }
.site-footer__brand img { width: min(300px, 90%); }
.site-footer__brand p { margin: 16px 0 0; color: rgba(255, 255, 255, .62); }
.site-footer__links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.site-footer__links div { display: flex; flex-direction: column; gap: 8px; }
.site-footer__links span { margin-bottom: 14px; color: #f4dc9b; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__links a { width: fit-content; color: rgba(255, 255, 255, .78); text-decoration: none; }
.site-footer__links a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.site-footer__bottom { display: flex; grid-column: 1 / -1; justify-content: space-between; margin-top: 35px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .47); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: inherit; text-decoration: none; }
.footer-legal a:hover, .footer-legal a[aria-current="page"] { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }

.legal-page { background: var(--paper); }
.legal-content { width: min(880px, calc(100% - 40px)); margin: 0 auto; padding: 180px 0 110px; }
.legal-content > h1 { max-width: 760px; margin: 0 0 28px; font-size: clamp(4rem, 9vw, 7.5rem); letter-spacing: -.055em; }
.legal-lead { max-width: 740px; margin: 0 0 70px; color: var(--muted); font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.5; }
.legal-content section { padding: 34px 0; border-top: 1px solid var(--border); }
.legal-content section h2 { margin: 0 0 15px; font-size: clamp(2rem, 4vw, 3rem); }
.legal-content section p, .legal-content section li { color: var(--muted); line-height: 1.8; }
.legal-content section a { color: var(--terracotta-dark); }
.legal-content section ul { display: grid; gap: 10px; padding-left: 22px; }

.error-page { min-height: 100vh; color: var(--white); background: linear-gradient(rgba(20, 15, 7, .56), rgba(20, 15, 7, .82)), url("images/hero-rooftop.webp") center / cover; }
.error-content { display: flex; width: min(900px, calc(100% - 40px)); min-height: 100vh; margin: 0 auto; flex-direction: column; align-items: flex-start; justify-content: center; padding: 70px 0; }
.error-content .brand { position: absolute; top: 35px; left: max(20px, calc((100vw - 900px) / 2)); }
.error-content h1 { margin: 20px 0; font-size: clamp(4rem, 10vw, 8rem); line-height: .9; }
.error-content h1 em { color: var(--gold); font-weight: 500; }
.error-content > p:not(.eyebrow) { max-width: 550px; color: rgba(255, 255, 255, .75); font-size: 1.05rem; line-height: 1.7; }
.mobile-booking-bar { display: none; }
.noscript { position: fixed; z-index: 2000; right: 20px; bottom: 20px; left: 20px; margin: 0; padding: 14px; color: var(--white); background: var(--terracotta-dark); text-align: center; }

.reveal { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1); }
.reveal.is-pending { opacity: 0; transform: translateY(26px); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes hero-arrive { from { opacity: 0; transform: scale(1.045); } to { opacity: 1; transform: scale(1); } }
@keyframes scroll-line { 0% { transform: translateY(-110%); } 55%, 100% { transform: translateY(300%); } }
@keyframes review-in { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }

@media (max-width: 1050px) {
  :root { --container: min(100% - 40px, 940px); }
  .site-header { grid-template-columns: 160px 1fr auto; gap: 18px; padding: 0 18px; }
  .brand { width: 155px; }
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: .68rem; }
  .story { grid-template-columns: .8fr 1.2fr; }
  .story__image--detail { display: none; }
  .story__image--main { height: 570px; }
  .reviews { gap: 6%; }
}

@media (max-width: 800px) {
  :root { --container: calc(100vw - 36px); }
  .section { padding: 95px 0; }
  .site-header { height: 72px; grid-template-columns: 1fr auto; }
  .brand { width: 175px; }
  .desktop-nav, .site-header > .button { display: none; }
  .menu-toggle { display: flex; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 7px; border: 0; border-radius: 50%; cursor: pointer; color: inherit; background: rgba(255, 255, 255, .12); }
  .site-header.is-scrolled .menu-toggle { background: rgba(23, 35, 31, .08); }
  .menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 990;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 21px;
    padding: 90px 24px;
    color: var(--white);
    background: var(--olive);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu > a { font-family: var(--serif); font-size: 2.7rem; line-height: 1.1; text-decoration: none; }
  .mobile-menu .button { margin-top: 20px; }
  .hero { min-height: 820px; }
  .hero__content { min-height: 820px; padding-top: 50px; }
  .hero__shade { background: linear-gradient(0deg, rgba(9, 19, 15, .8) 0%, rgba(9, 19, 15, .25) 75%), linear-gradient(90deg, rgba(9, 19, 15, .5), transparent); }
  .hero h1 { font-size: clamp(4.2rem, 18vw, 6.4rem); }
  .hero__intro { max-width: 500px; }
  .hero__note { right: 18px; bottom: 25px; }
  .hero__scroll { display: none; }
  .intro { grid-template-columns: 1fr; gap: 30px; }
  .intro__aside { padding-top: 0; }
  .intro__main .lead { margin-left: 0; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 30px; }
  .experience-card { min-height: 610px; }
  .recipe-preview { grid-template-columns: 1fr; }
  .recipe-preview__image { min-height: 520px; }
  .recipe-preview__copy { padding: 70px 50px; }
  .story { grid-template-columns: 1fr; gap: 55px; margin-top: 80px; padding: 70px 18px; }
  .story__copy { grid-row: 1; }
  .story__image--main { height: 500px; }
  .promise-grid { grid-template-columns: 1fr; gap: 50px; margin-top: 55px; }
  .promise-grid h3 { margin-top: 28px; }
  .gallery { height: 1000px; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 1fr); }
  .gallery figure:nth-child(1) { grid-row: 1 / span 2; }
  .gallery figure:nth-child(4) { grid-column: 1 / span 2; }
  .reviews { grid-template-columns: 1fr; gap: 70px; }
  .reviews__link { grid-column: 1; margin-top: -35px; }
  .visit { padding: 80px 18px; }
  .visit__card { padding: 50px 35px; }
}

@media (max-width: 560px) {
  body { padding-bottom: 72px; }
  h2 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .site-header { padding: 0 16px; }
  .brand { width: 155px; }
  .hero { min-height: 780px; }
  .hero__content { min-height: 780px; justify-content: flex-end; padding: 120px 0 90px; }
  .hero__media img { object-position: 55% center; }
  .hero h1 { font-size: clamp(3.8rem, 17vw, 5.2rem); }
  .hero__intro { font-size: 1rem; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero__note { display: none; }
  .intro__aside { display: none; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 550px; }
  .experience-card__content { right: 24px; bottom: 26px; left: 24px; }
  .experience-card__top { top: 22px; right: 22px; left: 22px; }
  .experience-card h3 { font-size: 2.65rem; }
  .recipe-preview__image { min-height: 390px; }
  .recipe-preview__copy { padding: 52px 25px; }
  .story__image--main { height: 420px; }
  .story__facts { gap: 7px; }
  .story__facts dt { font-size: 1.8rem; }
  .story__facts dd { font-size: .6rem; }
  .gallery { height: auto; grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery figure, .gallery figure:nth-child(1), .gallery figure:nth-child(4) { height: 360px; grid-column: auto; grid-row: auto; }
  .gallery figure:nth-child(2) { display: none; }
  .review-track { min-height: 450px; }
  .review-card blockquote { font-size: 1.7rem; }
  .review-platforms { grid-template-columns: 1fr; }
  .review-platform { grid-template-columns: 1fr auto; align-items: center; }
  .review-platform strong { grid-column: 2; grid-row: 1 / span 2; }
  .visit { min-height: auto; padding: 0; }
  .visit__visual { position: relative; height: 360px; }
  .visit__card { width: calc(100% - 24px); margin: -45px 12px 50px; padding: 42px 25px; }
  .visit__details p { grid-template-columns: 65px 1fr; overflow-wrap: anywhere; }
  .visit__actions { align-items: flex-start; flex-direction: column; }
  .final-cta { padding: 100px 18px; }
  .site-footer { grid-template-columns: 1fr; padding: 65px 22px 25px; }
  .site-footer__links { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom { gap: 10px; flex-direction: column; }
  .mobile-booking-bar {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 12px 9px 16px;
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, .18);
  }
  .mobile-booking-bar div { display: flex; flex-direction: column; line-height: 1.2; }
  .mobile-booking-bar small { color: rgba(255, 255, 255, .58); font-size: .62rem; text-transform: uppercase; }
  .mobile-booking-bar strong { font-family: var(--serif); font-size: .9rem; font-weight: 500; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
