:root {
  --forest: #173d35;
  --forest-deep: #0d2b25;
  --moss: #65785f;
  --sage: #b9c4ac;
  --cream: #f5f0e6;
  --paper: #fbf8f1;
  --sand: #d9c8ac;
  --gold: #dcae64;
  --ink: #1d2a25;
  --white: #fffef9;
  --line: rgba(29, 42, 37, 0.16);
  --serif: "Noto Serif", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: 1240px;
  --shadow: 0 24px 70px rgba(14, 35, 29, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 124px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--forest-deep);
  background: var(--white);
  border-radius: 4px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  margin: 0 0 20px;
  color: var(--moss);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

h1 em,
h2 em {
  font-weight: 500;
}

h2 {
  font-size: clamp(2.7rem, 5.2vw, 5.25rem);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  color: var(--forest-deep);
  background: rgba(251, 248, 241, 0.94);
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(18, 46, 38, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  color: inherit;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand-subtitle {
  margin-top: 4px;
  padding-left: 2px;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
  font-size: 0.78rem;
  font-weight: 600;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-cta {
  padding: 11px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--forest-deep);
  background: var(--white);
}

.is-scrolled .nav-cta:hover,
.is-scrolled .nav-cta:focus-visible {
  color: var(--white);
  background: var(--forest);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(920px, 100svh);
  color: var(--white);
  background: var(--forest-deep);
  isolation: isolate;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 52%;
  animation: hero-enter 1.3s cubic-bezier(0.2, 0.72, 0.28, 1) both;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 25, 20, 0.78) 0%, rgba(7, 29, 24, 0.44) 50%, rgba(4, 19, 16, 0.1) 76%),
    linear-gradient(0deg, rgba(7, 28, 23, 0.52) 0%, rgba(7, 28, 23, 0.04) 42%, rgba(7, 28, 23, 0.18) 100%);
}

.hero-content {
  align-self: center;
  width: min(calc(100% - 48px), var(--container));
  padding: 152px 0 106px;
}

.hero-eyebrow {
  color: #e2d7c5;
  animation: content-rise 700ms 200ms ease both;
}

.hero h1 {
  max-width: 950px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(3.65rem, 8.5vw, 8.25rem);
  text-wrap: balance;
  animation: content-rise 800ms 260ms ease both;
}

.hero h1 em {
  color: #e2d0b2;
}

.hero-copy {
  max-width: 635px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.75;
  animation: content-rise 800ms 330ms ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: content-rise 800ms 400ms ease both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--forest-deep);
  background: var(--cream);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
}

.rating-card {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  min-width: 210px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(12, 41, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.35;
  backdrop-filter: blur(12px);
  animation: content-rise 800ms 460ms ease both;
}

.rating-stars {
  grid-column: 1 / -1;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.rating-card strong {
  font-size: 1.05rem;
}

.rating-arrow {
  align-self: end;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-cue span:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  place-items: center;
}

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

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-facts p {
  margin: 0;
  padding: 25px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
}

.quick-facts p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.quick-facts span {
  margin-right: 10px;
  color: var(--gold);
  font-size: 0.65rem;
}

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

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(70px, 9vw, 138px);
}

.story-visual {
  position: relative;
}

.story-visual::before {
  position: absolute;
  z-index: -1;
  top: -32px;
  left: -32px;
  width: 48%;
  height: 62%;
  border: 1px solid var(--sand);
  content: "";
}

.story-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-note {
  position: absolute;
  right: -28px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 225px;
  padding: 17px 19px;
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 18px 46px rgba(14, 40, 33, 0.22);
}

.story-note > span {
  color: var(--gold);
  font-size: 1.5rem;
}

.story-note p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.55;
}

.story-content {
  max-width: 540px;
}

.story-content .lead {
  margin-bottom: 24px;
  color: #273e35;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.65;
}

.story-content > p:not(.eyebrow):not(.lead) {
  margin-bottom: 30px;
  color: #59655f;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

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

.flavours .eyebrow {
  color: var(--sage);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.46fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

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

.section-heading > p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
}

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

.flavour-item {
  display: grid;
  grid-template-columns: 62px minmax(250px, 0.65fr) minmax(280px, 0.65fr) 44px;
  align-items: center;
  gap: 28px;
  min-height: 174px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  transition: background 200ms ease, padding 200ms ease;
}

.flavour-item:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.flavour-number {
  color: var(--gold);
  font-size: 0.7rem;
}

.flavour-time {
  margin-bottom: 5px;
  color: var(--sage);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.flavour-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  font-weight: 600;
}

.flavour-item > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.flavour-mark {
  color: var(--gold);
  font-size: 1.35rem;
  text-align: right;
}

.menu-note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  text-align: right;
}

.mood {
  background: var(--cream);
  overflow: hidden;
}

.mood-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr 0.72fr;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.mood-copy {
  padding-right: 10px;
}

.mood-copy p:last-child {
  margin-bottom: 0;
  color: #59665f;
}

.mood-image {
  margin: 0;
}

.mood-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.mood-image-day img {
  aspect-ratio: 4 / 5.4;
}

.mood-image-night {
  transform: translateY(60px);
}

.mood-image-night img {
  aspect-ratio: 4 / 4.8;
}

.mood-image figcaption {
  margin-top: 13px;
  color: var(--moss);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews {
  color: var(--white);
  background:
    linear-gradient(rgba(16, 48, 40, 0.9), rgba(16, 48, 40, 0.9)),
    url("assets/images/menu-detail.webp") center / cover;
}

.reviews-inner {
  max-width: 900px;
  text-align: center;
}

.quote-mark {
  height: 60px;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
}

.reviews blockquote {
  margin: 0 auto 42px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  font-style: italic;
  line-height: 1.25;
}

.review-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.review-links a {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.review-links strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.review-links span:not(.review-divider) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.26);
}

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

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 280px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  padding: 0;
  background: var(--forest-deep);
  border: 0;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item-wide {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 300ms ease, transform 500ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.gallery-item::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  color: var(--forest-deep);
  background: rgba(255, 254, 249, 0.92);
  border-radius: 50%;
  content: "+";
  font-size: 1.15rem;
  place-items: center;
  transform: scale(0.8);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  opacity: 0.82;
  transform: scale(1.035);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.gallery-item:nth-child(2) {
  grid-column: 2;
}

.gallery-item:nth-child(3) {
  grid-column: 2;
}

.gallery-item:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / span 2;
}

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

.visit-card {
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) 1.14fr;
  min-height: 620px;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.visit-details {
  padding: clamp(52px, 6vw, 86px);
}

.visit-details .eyebrow {
  color: var(--sage);
}

.visit-details h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.3rem);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 40px 0;
}

.contact-list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-list dt {
  color: var(--sage);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-list small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

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

.button-light {
  color: var(--forest-deep);
  background: var(--cream);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
}

.map-wrap {
  position: relative;
  min-height: 520px;
  background: #ddd8cc;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  filter: saturate(0.45) contrast(1.04);
}

.map-wrap p {
  position: absolute;
  right: 20px;
  bottom: 20px;
  margin: 0;
  padding: 11px 14px;
  color: var(--forest-deep);
  background: rgba(255, 254, 249, 0.95);
  border-radius: 3px;
  box-shadow: 0 8px 28px rgba(16, 42, 35, 0.15);
  font-size: 0.68rem;
  font-weight: 700;
}

.site-footer {
  padding: 76px 0 26px;
  color: rgba(255, 255, 255, 0.76);
  background: #0a241e;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(190px, 0.65fr) minmax(390px, 1.35fr) minmax(190px, 0.7fr);
  gap: clamp(44px, 5vw, 76px);
  padding-bottom: 60px;
}

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

.footer-tagline {
  margin: 24px 0 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.55;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 34px;
}

.footer-social a,
.footer-contact a {
  transition: color 180ms ease;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-social span,
.footer-location-block span {
  color: var(--gold);
}

.footer-company,
.footer-contact {
  padding-left: clamp(32px, 4vw, 58px);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-company-name {
  max-width: 570px;
  margin-bottom: 13px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 600;
  line-height: 1.55;
}

.footer-company-activity {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.footer-company-activity span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-company-address {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-style: normal;
  line-height: 1.65;
}

.footer-company-ids {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-company-ids div {
  min-width: 0;
}

.footer-company-ids dt {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-company-ids dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.footer-contact-block,
.footer-location-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer-contact .footer-label {
  margin-bottom: 8px;
}

.footer-contact-name {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.footer-phone {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.footer-location-block {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-location-block a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
  line-height: 1.65;
}

.footer-social a:hover,
.footer-social a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.mobile-actions {
  display: none;
}

.lightbox {
  width: min(94vw, 1100px);
  padding: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(3, 15, 12, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -48px;
  right: 0;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  place-items: center;
}

.js .reveal {
  transform: translateY(28px);
  opacity: 0;
  transition: transform 700ms cubic-bezier(0.22, 0.66, 0.26, 1), opacity 700ms ease;
}

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

.flavour-item.reveal:nth-child(2),
.gallery-item.reveal:nth-child(2) {
  transition-delay: 80ms;
}

.flavour-item.reveal:nth-child(3),
.gallery-item.reveal:nth-child(3) {
  transition-delay: 150ms;
}

.gallery-item.reveal:nth-child(4) {
  transition-delay: 220ms;
}

@keyframes hero-enter {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes content-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 110px 48px 70px;
    color: var(--white);
    background: var(--forest-deep);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 350ms cubic-bezier(0.22, 0.66, 0.26, 1), opacity 220ms ease, visibility 0s 350ms;
  }

  .site-nav.is-open {
    z-index: 1;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 350ms cubic-bezier(0.22, 0.66, 0.26, 1), opacity 220ms ease;
  }

  .site-nav a:not(.nav-cta) {
    font-family: var(--serif);
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 500;
  }

  .site-nav .nav-cta {
    margin-top: 14px;
    font-size: 0.85rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
    cursor: pointer;
    place-content: center;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 3px;
    background: currentColor;
    transition: transform 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] {
    color: var(--white);
  }

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

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

  .story-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
  }

  .story-note {
    right: -16px;
  }

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

  .flavour-item {
    grid-template-columns: 45px minmax(220px, 0.75fr) 1fr 30px;
    gap: 18px;
  }

  .mood-grid {
    grid-template-columns: 0.9fr 1fr;
  }

  .mood-copy {
    grid-column: 1 / -1;
    max-width: 650px;
    margin-bottom: 16px;
  }

  .mood-image-night {
    transform: translateY(30px);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 300px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item:nth-child(4) {
    grid-row: span 2;
  }

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

  .footer-top {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 36px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .footer-location-block {
    padding-top: 0;
    padding-left: 40px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: 64px;
  }

  .container,
  .hero-content {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 86px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .site-nav {
    padding-inline: 28px;
  }

  .hero {
    min-height: max(690px, 100svh);
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 24, 19, 0.75), rgba(7, 28, 23, 0.18)),
      linear-gradient(0deg, rgba(5, 23, 19, 0.66) 0%, rgba(6, 26, 21, 0.12) 48%, rgba(7, 28, 23, 0.3) 100%);
  }

  .hero-content {
    align-self: end;
    padding: 140px 0 128px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 5.8rem);
  }

  .hero h1 br {
    display: none;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .rating-card {
    right: 18px;
    bottom: 20px;
    min-width: 175px;
    padding: 13px 15px;
  }

  .scroll-cue {
    display: none;
  }

  .quick-facts-grid {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .quick-facts p {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
    text-align: left;
  }

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

  .story-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .story-visual {
    width: calc(100% - 18px);
  }

  .story-visual::before {
    top: -18px;
    left: -18px;
  }

  .story-note {
    right: -18px;
    bottom: -28px;
  }

  .story-content .lead {
    font-size: 1.2rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 50px;
  }

  .flavour-item {
    grid-template-columns: 34px 1fr 28px;
    gap: 15px;
    padding: 30px 0;
  }

  .flavour-item > div {
    grid-column: 2;
  }

  .flavour-item > p {
    grid-column: 2 / 4;
  }

  .flavour-mark {
    grid-column: 3;
    grid-row: 1;
  }

  .flavour-number {
    grid-row: 1;
    align-self: start;
    padding-top: 6px;
  }

  .menu-note {
    text-align: left;
  }

  .mood-grid {
    grid-template-columns: 1fr 0.82fr;
    align-items: start;
    gap: 16px;
  }

  .mood-copy {
    margin-bottom: 24px;
  }

  .mood-image-day img,
  .mood-image-night img {
    aspect-ratio: 3 / 4.5;
  }

  .mood-image-night {
    margin-top: 56px;
    transform: none;
  }

  .mood-image figcaption {
    font-size: 0.58rem;
  }

  .reviews blockquote {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .review-links {
    gap: 16px;
  }

  .review-links a {
    flex-direction: column;
    gap: 0;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 8px;
  }

  .gallery-item-wide,
  .gallery-item:nth-child(4) {
    grid-row: auto;
  }

  .gallery-item:first-child,
  .gallery-item:nth-child(4) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .visit-details {
    padding: 52px 28px;
  }

  .visit-card {
    min-height: 0;
  }

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

  .visit-actions .button {
    flex: 1;
  }

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

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

  .footer-company,
  .footer-contact {
    grid-column: auto;
    padding-top: 36px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

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

  .footer-location-block {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .footer-company-ids {
    gap: 12px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 64px;
    color: var(--white);
    background: var(--forest-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .mobile-actions a {
    display: grid;
    font-size: 0.74rem;
    font-weight: 700;
    place-items: center;
  }

  .mobile-actions a + a {
    color: var(--forest-deep);
    background: var(--gold);
  }
}

@media (max-width: 430px) {
  .hero-actions .button {
    flex-basis: 100%;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
  }

  .contact-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .visit-actions {
    flex-direction: column;
  }
}

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

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