:root {
  --paper: #f3ead7;
  --ink: #253023;
  --muted: rgba(37, 48, 35, 0.68);
  --line: rgba(37, 48, 35, 0.16);
  --menu-bg: rgba(246, 238, 220, 0.72);
  --menu-glow: rgba(157, 121, 63, 0.2);
  --texture-opacity: 0.2;
  --motion-speed: 1200ms;
  --ease-cinema: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.menu-stage {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: clamp(16px, 2.5vw, 34px);
  background:
    radial-gradient(circle at 18% 16%, var(--menu-glow), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(101, 75, 39, 0.14), transparent 32%),
    linear-gradient(135deg, var(--paper), #f8f2e5 52%, #e8dcc5);
  transition:
    background var(--motion-speed) var(--ease-cinema),
    color var(--motion-speed) var(--ease-cinema);
}

.menu-stage:has(.menu-link-green:hover),
.menu-stage:has(.menu-link-green:focus-visible) {
  --paper: #dfe7d0;
  --ink: #1e2a19;
  --muted: rgba(30, 42, 25, 0.68);
  --menu-bg: rgba(225, 232, 210, 0.76);
  --menu-glow: rgba(83, 111, 62, 0.34);
  --texture-opacity: 0.3;
  --motion-speed: 1500ms;
}

.menu-stage:has(.menu-link-wine:hover),
.menu-stage:has(.menu-link-wine:focus-visible) {
  --paper: #4d1220;
  --ink: #fff4df;
  --muted: rgba(255, 244, 223, 0.64);
  --line: rgba(197, 154, 82, 0.24);
  --menu-bg: rgba(76, 16, 28, 0.82);
  --menu-glow: rgba(197, 154, 82, 0.28);
  --texture-opacity: 0.26;
  --motion-speed: 1800ms;
}

.menu-stage:has(.menu-link-welcome:hover),
.menu-stage:has(.menu-link-welcome:focus-visible) {
  --paper: #efd4b9;
  --ink: #432419;
  --muted: rgba(67, 36, 25, 0.72);
  --line: rgba(166, 82, 54, 0.3);
  --menu-bg: rgba(239, 208, 178, 0.86);
  --menu-glow: rgba(188, 92, 58, 0.32);
  --texture-opacity: 0.18;
  --motion-speed: 1450ms;
}

.menu-stage:has(.menu-link-sun:hover),
.menu-stage:has(.menu-link-sun:focus-visible) {
  --paper: #f7e7c0;
  --ink: #5b421f;
  --muted: rgba(91, 66, 31, 0.66);
  --line: rgba(188, 132, 48, 0.24);
  --menu-bg: rgba(250, 231, 190, 0.88);
  --menu-glow: rgba(224, 170, 78, 0.36);
  --texture-opacity: 0.12;
  --motion-speed: 1600ms;
}

.menu-stage:has(.menu-link-calm:hover),
.menu-stage:has(.menu-link-calm:focus-visible) {
  --paper: #e4dfd2;
  --ink: #3d413b;
  --muted: rgba(61, 65, 59, 0.62);
  --line: rgba(133, 132, 118, 0.2);
  --menu-bg: rgba(229, 224, 213, 0.84);
  --menu-glow: rgba(153, 143, 119, 0.2);
  --texture-opacity: 0.12;
  --motion-speed: 2200ms;
}

.menu-stage:has(.menu-link-heritage:hover),
.menu-stage:has(.menu-link-heritage:focus-visible) {
  --paper: #122d4a;
  --ink: #f6eddc;
  --muted: rgba(246, 237, 220, 0.66);
  --line: rgba(182, 117, 69, 0.26);
  --menu-bg: rgba(18, 45, 74, 0.82);
  --menu-glow: rgba(182, 117, 69, 0.26);
  --texture-opacity: 0.22;
  --motion-speed: 1900ms;
}

.ambient-grain,
.ambient-light {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient-grain {
  z-index: 1;
  opacity: var(--texture-opacity);
  mix-blend-mode: multiply;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(41, 33, 21, 0.2) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 12px);
  transition: opacity var(--motion-speed) var(--ease-cinema);
}

.ambient-light {
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.34), transparent 34%),
    radial-gradient(circle at 70% 30%, rgba(255, 220, 148, 0.24), transparent 36%);
}

.concept-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 44px);
  width: min(1600px, 100%);
  margin: 0 auto;
}

.destination-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  gap: clamp(28px, 5vw, 76px);
  width: min(1600px, 100%);
  min-height: calc(100vh - 118px);
  margin: clamp(44px, 8vh, 96px) auto 0;
}

.wine-section {
  --section-ink: #4d1220;
  --section-muted: rgba(77, 18, 32, 0.74);
  --section-line: rgba(90, 20, 33, 0.34);
  --section-shadow: rgba(82, 21, 30, 0.24);
  --cta-bg: rgba(77, 18, 32, 0.76);
  --cta-bg-hover: rgba(77, 18, 32, 0.88);
  --cta-border: rgba(231, 188, 132, 0.34);
}

.green-section {
  --section-ink: #1d3518;
  --section-muted: rgba(29, 53, 24, 0.88);
  --section-line: rgba(37, 62, 31, 0.42);
  --section-shadow: rgba(28, 48, 20, 0.22);
  --cta-bg: rgba(37, 62, 31, 0.72);
  --cta-bg-hover: rgba(37, 62, 31, 0.84);
  --cta-border: rgba(211, 224, 185, 0.28);
}

.welcome-section {
  --section-ink: #5f2d1d;
  --section-muted: rgba(95, 45, 29, 0.82);
  --section-line: rgba(166, 82, 54, 0.36);
  --section-shadow: rgba(110, 55, 28, 0.24);
  --cta-bg: rgba(137, 70, 42, 0.78);
  --cta-bg-hover: rgba(137, 70, 42, 0.9);
  --cta-border: rgba(245, 211, 165, 0.36);
}

.calm-section {
  --section-ink: #3d413b;
  --section-muted: rgba(61, 65, 59, 0.74);
  --section-line: rgba(133, 132, 118, 0.26);
  --section-shadow: rgba(76, 72, 60, 0.17);
  --cta-bg: rgba(85, 91, 77, 0.74);
  --cta-bg-hover: rgba(85, 91, 77, 0.88);
  --cta-border: rgba(231, 224, 211, 0.34);
}

.heritage-section {
  --section-ink: #122d4a;
  --section-muted: rgba(18, 45, 74, 0.76);
  --section-line: rgba(182, 117, 69, 0.36);
  --section-shadow: rgba(31, 28, 24, 0.22);
  --cta-bg: rgba(18, 45, 74, 0.78);
  --cta-bg-hover: rgba(18, 45, 74, 0.9);
  --cta-border: rgba(214, 169, 114, 0.38);
}

.split-reverse {
  grid-template-columns: minmax(0, 1.24fr) minmax(260px, 0.76fr);
}

.split-reverse .section-copy {
  padding-left: clamp(24px, 2.8vw, 54px);
  padding-right: clamp(24px, 3.8vw, 72px);
}

.split-reverse .section-copy h1,
.split-reverse .section-copy h2 {
  max-width: 620px;
  font-size: clamp(3.8rem, 6.2vw, 7.4rem);
}

.section-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 520px;
  min-height: calc(100vh - 118px);
  padding: clamp(48px, 6vw, 96px) 0 clamp(42px, 6vw, 86px);
}

.section-kicker {
  width: fit-content;
  margin: 0 0 22px;
  padding-bottom: 10px;
  padding-right: 72px;
  border-bottom: 1px solid var(--section-line, rgba(37, 62, 31, 0.42));
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-copy h1,
.section-copy h2 {
  margin: 0;
  color: var(--section-ink, #1d3518);
  font-family: "Cormorant Garamond", Georgia, serif;
  max-width: 520px;
  font-size: clamp(4rem, 7.2vw, 8.4rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

.section-copy p:last-child {
  max-width: 390px;
  margin: clamp(30px, 4vh, 42px) 0 0;
  color: var(--section-muted, rgba(29, 53, 24, 0.88));
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.08rem, 1.35vw, 1.34rem);
  font-weight: 500;
  line-height: 1.62;
}

.section-image-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: min(68vh, 760px);
  border: 1px solid rgba(31, 52, 25, 0.18);
  box-shadow:
    0 36px 110px var(--section-shadow, rgba(28, 48, 20, 0.22)),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  background: #23321f;
}

.section-image-frame::before,
.section-image-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.section-image-frame::before {
  background:
    linear-gradient(90deg, rgba(21, 36, 16, 0.18), transparent 34%),
    radial-gradient(circle at 72% 18%, rgba(255, 238, 160, 0.18), transparent 34%);
  mix-blend-mode: normal;
}

.section-image-frame::after {
  border: 18px solid rgba(246, 238, 220, 0.08);
}

.image-booking-cta {
  position: absolute;
  right: clamp(24px, 3.4vw, 54px);
  bottom: clamp(24px, 4vh, 54px);
  z-index: 4;
  margin: 0;
}

.image-booking-cta a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 13px 18px;
  color: #f4efdf;
  background: var(--cta-bg, rgba(37, 62, 31, 0.72));
  border: 1px solid var(--cta-border, rgba(211, 224, 185, 0.28));
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(20, 39, 16, 0.18);
  transition:
    opacity 900ms var(--ease-cinema),
    background 900ms var(--ease-cinema),
    border-color 900ms var(--ease-cinema),
    box-shadow 900ms var(--ease-cinema),
    transform 900ms var(--ease-cinema);
}

.image-booking-cta a:hover,
.image-booking-cta a:focus-visible {
  background: var(--cta-bg-hover, rgba(37, 62, 31, 0.84));
  border-color: rgba(211, 224, 185, 0.42);
  box-shadow: 0 16px 36px rgba(20, 39, 16, 0.22);
  outline: 0;
  opacity: 0.92;
  transform: translateY(-1px);
}

.section-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(68vh, 760px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.02);
}

.wine-section .section-image-frame::before {
  background:
    linear-gradient(90deg, rgba(77, 18, 32, 0.24), transparent 36%),
    radial-gradient(circle at 70% 20%, rgba(255, 194, 116, 0.22), transparent 36%);
}

.wine-section .section-image-frame img {
  filter: saturate(0.96) contrast(1.03) brightness(0.94);
}

.welcome-section .section-image-frame::before {
  background:
    linear-gradient(90deg, rgba(78, 35, 20, 0.12), transparent 34%),
    radial-gradient(circle at 22% 18%, rgba(255, 203, 117, 0.2), transparent 34%);
}

.welcome-section .section-image-frame img {
  filter: saturate(0.95) contrast(1.02) brightness(0.93);
}

.calm-section .section-image-frame::before {
  background:
    linear-gradient(90deg, rgba(228, 223, 210, 0.26), transparent 38%),
    radial-gradient(circle at 72% 18%, rgba(231, 224, 211, 0.16), transparent 34%);
}

.calm-section .section-image-frame img {
  filter: saturate(0.74) contrast(0.98) brightness(1.02);
}

.heritage-section .section-image-frame::before {
  background:
    linear-gradient(90deg, rgba(18, 45, 74, 0.16), transparent 36%),
    radial-gradient(circle at 22% 18%, rgba(214, 169, 114, 0.18), transparent 34%);
}

.heritage-section .section-image-frame img {
  filter: saturate(0.82) contrast(1.04) brightness(0.94);
}

.castle-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  width: min(1600px, 100%);
  min-height: min(88vh, 900px);
  margin: clamp(44px, 8vh, 96px) auto 0;
  overflow: hidden;
  padding: clamp(44px, 6vw, 96px);
  color: #f4ecdc;
  background:
    radial-gradient(circle at 72% 28%, rgba(39, 108, 186, 0.28), transparent 34%),
    linear-gradient(135deg, #061525, #102e4f 54%, #07111d);
  border: 1px solid rgba(182, 117, 69, 0.22);
  box-shadow: 0 38px 120px rgba(6, 14, 25, 0.28);
}

.castle-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(244, 236, 220, 0.08), transparent 34%),
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 12px);
  content: "";
}

.castle-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.castle-copy .section-kicker {
  color: rgba(244, 236, 220, 0.72);
  border-bottom-color: rgba(182, 117, 69, 0.42);
}

.castle-copy h2 {
  margin: 0;
  color: #f4ecdc;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 7vw, 8.4rem);
  font-weight: 600;
  line-height: 0.96;
}

.castle-copy p:not(.section-kicker) {
  max-width: 430px;
  margin: clamp(28px, 4vh, 42px) 0 0;
  color: rgba(244, 236, 220, 0.78);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.08rem, 1.35vw, 1.34rem);
  font-weight: 500;
  line-height: 1.62;
}

.castle-copy a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 46px;
  margin-top: clamp(28px, 4vh, 42px);
  padding: 13px 18px;
  color: #061525;
  background: rgba(244, 236, 220, 0.86);
  border: 1px solid rgba(244, 236, 220, 0.44);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 42px rgba(6, 14, 25, 0.24);
  transition:
    opacity 900ms var(--ease-cinema),
    background 900ms var(--ease-cinema),
    transform 900ms var(--ease-cinema);
}

.castle-copy a:hover,
.castle-copy a:focus-visible {
  background: #fff7e8;
  outline: 0;
  opacity: 0.94;
  transform: translateY(-1px);
}

.castle-figure {
  position: relative;
  z-index: 2;
  margin: 0;
  align-self: end;
}

.castle-figure::before {
  position: absolute;
  right: 5%;
  bottom: 1%;
  left: 12%;
  height: 16%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.34), transparent 68%);
  content: "";
  filter: blur(12px);
}

.castle-figure img {
  position: relative;
  display: block;
  width: min(940px, 100%);
  margin-left: auto;
  filter: drop-shadow(0 36px 58px rgba(0, 0, 0, 0.42));
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1600px, 100%);
  margin: clamp(44px, 8vh, 96px) auto 0;
  padding: 22px 0 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.site-footer p {
  max-width: 680px;
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  border-bottom: 1px solid transparent;
  transition: border-color 300ms ease, color 300ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
  border-bottom-color: currentColor;
  outline: 0;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 16%, rgba(157, 121, 63, 0.16), transparent 34%),
    linear-gradient(135deg, #f3ead7, #f8f2e5 52%, #e8dcc5);
}

.legal-content {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 10vw, 120px) 0;
}

.legal-content a {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content h1 {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 0.95;
}

.legal-content p {
  max-width: 680px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.sun-section {
  position: relative;
  z-index: 2;
  width: min(1600px, 100%);
  margin: clamp(44px, 8vh, 96px) auto 0;
}

.sun-image-frame {
  position: relative;
  overflow: hidden;
  min-height: min(82vh, 860px);
  margin: 0;
  border: 1px solid rgba(188, 132, 48, 0.22);
  background: #5b421f;
  box-shadow: 0 38px 120px rgba(96, 57, 20, 0.22);
}

.sun-image-frame::before,
.sun-image-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.sun-image-frame::before {
  background:
    linear-gradient(90deg, rgba(247, 231, 192, 0.88), rgba(247, 231, 192, 0.56) 28%, rgba(247, 231, 192, 0.08) 54%, transparent 72%),
    radial-gradient(circle at 50% 34%, rgba(255, 213, 129, 0.18), transparent 36%);
}

.sun-image-frame::after {
  border: 18px solid rgba(255, 248, 232, 0.08);
}

.sun-image-frame img {
  display: block;
  width: 100%;
  min-height: min(82vh, 860px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.03) brightness(0.94);
}

.sun-copy {
  position: absolute;
  inset: clamp(34px, 5vw, 80px) auto clamp(34px, 5vw, 80px) clamp(34px, 5.8vw, 92px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(470px, 44%);
  margin: 0;
  color: #5b421f;
}

.sun-copy .section-kicker {
  color: rgba(91, 66, 31, 0.72);
  border-bottom-color: rgba(188, 132, 48, 0.3);
}

.sun-copy h2 {
  margin: 0;
  color: #5b421f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 600;
  line-height: 0.96;
}

.sun-copy p:not(.section-kicker) {
  max-width: 390px;
  margin: clamp(28px, 4vh, 42px) 0 0;
  color: rgba(91, 66, 31, 0.78);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.08rem, 1.35vw, 1.34rem);
  font-weight: 500;
  line-height: 1.62;
}

.sun-copy a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 46px;
  margin-top: clamp(28px, 4vh, 42px);
  padding: 13px 18px;
  color: #fff7e8;
  background: rgba(128, 83, 30, 0.74);
  border: 1px solid rgba(255, 225, 168, 0.36);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(96, 57, 20, 0.18);
  transition:
    opacity 900ms var(--ease-cinema),
    background 900ms var(--ease-cinema),
    box-shadow 900ms var(--ease-cinema),
    transform 900ms var(--ease-cinema);
}

.sun-copy a:hover,
.sun-copy a:focus-visible {
  background: rgba(128, 83, 30, 0.88);
  box-shadow: 0 16px 36px rgba(96, 57, 20, 0.22);
  outline: 0;
  opacity: 0.94;
  transform: translateY(-1px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  flex: 0 0 auto;
  padding: 9px 13px 9px 9px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 240, 0.32);
  backdrop-filter: blur(18px);
  transition:
    border-color var(--motion-speed) var(--ease-cinema),
    background var(--motion-speed) var(--ease-cinema);
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #f8f1df;
  background: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  transition:
    color var(--motion-speed) var(--ease-cinema),
    background var(--motion-speed) var(--ease-cinema);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 0.95;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.concept-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(3px, 0.5vw, 8px);
  padding: 7px;
  min-height: 74px;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--menu-bg);
  box-shadow: 0 20px 70px rgba(50, 39, 24, 0.12);
  backdrop-filter: blur(24px);
  transition:
    background var(--motion-speed) var(--ease-cinema),
    border-color var(--motion-speed) var(--ease-cinema),
    box-shadow var(--motion-speed) var(--ease-cinema);
}

.menu-link {
  --swatch-one: #344321;
  --swatch-two: #8f9f77;
  --swatch-three: #1d2418;
  position: relative;
  display: grid;
  align-content: center;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 4px;
  min-width: clamp(92px, 9.2vw, 148px);
  padding: 10px clamp(14px, 1.35vw, 20px);
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    color var(--motion-speed) var(--ease-cinema),
    background var(--motion-speed) var(--ease-cinema),
    border-color var(--motion-speed) var(--ease-cinema),
    min-width var(--motion-speed) var(--ease-cinema),
    box-shadow var(--motion-speed) var(--ease-cinema),
    transform var(--motion-speed) var(--ease-cinema);
}

.menu-link::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, var(--swatch-one), var(--swatch-two));
  content: "";
  transform: translateX(-7%);
  transition:
    opacity var(--motion-speed) var(--ease-cinema),
    transform calc(var(--motion-speed) + 400ms) var(--ease-cinema);
}

.menu-link:hover,
.menu-link:focus-visible {
  color: #fffaf0;
  border-color: rgba(255, 255, 255, 0.2);
  min-width: clamp(150px, 15vw, 240px);
  outline: 0;
  box-shadow: 0 16px 46px rgba(35, 25, 15, 0.2);
  transform: translateY(-2px);
}

.menu-link:hover::before,
.menu-link:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.menu-link-sun:hover,
.menu-link-sun:focus-visible {
  color: #543a17;
  box-shadow:
    0 18px 54px rgba(196, 134, 42, 0.26),
    0 0 44px rgba(246, 216, 156, 0.22);
}

.menu-link-sun:hover .menu-place,
.menu-link-sun:focus-visible .menu-place {
  color: rgba(84, 58, 23, 0.82);
}

.menu-link-welcome:hover,
.menu-link-welcome:focus-visible {
  box-shadow: 0 18px 52px rgba(130, 61, 39, 0.26);
}

.menu-link-calm:hover,
.menu-link-calm:focus-visible {
  color: #f8f2e6;
  box-shadow: 0 16px 44px rgba(76, 72, 60, 0.16);
}

.menu-name {
  font-size: clamp(0.78rem, 0.96vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: transform var(--motion-speed) var(--ease-cinema);
}

.menu-place {
  max-width: 0;
  color: rgba(255, 250, 240, 0);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.82rem, 1.02vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  opacity: 0;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  transform: translateY(-4px);
  transition:
    color var(--motion-speed) var(--ease-cinema),
    max-width var(--motion-speed) var(--ease-cinema),
    opacity var(--motion-speed) var(--ease-cinema),
    transform var(--motion-speed) var(--ease-cinema);
}

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

.menu-link:hover .menu-place,
.menu-link:focus-visible .menu-place {
  max-width: 260px;
  color: rgba(255, 250, 240, 0.78);
  opacity: 1;
  transform: translateY(0);
}

.menu-link-green {
  --swatch-one: #26371f;
  --swatch-two: #93a77f;
  --swatch-three: #182016;
}

.menu-link-wine {
  --swatch-one: #5a1421;
  --swatch-two: #8d1f33;
  --swatch-three: #c59a52;
}

.menu-link-welcome {
  --swatch-one: #a55236;
  --swatch-two: #c17755;
  --swatch-three: #f0d7b8;
}

.menu-link-sun {
  --swatch-one: #c58a32;
  --swatch-two: #e3b96f;
  --swatch-three: #faedcf;
}

.menu-link-calm {
  --swatch-one: #8e9188;
  --swatch-two: #b9ad99;
  --swatch-three: #e7e0d3;
}

.menu-link-heritage {
  --swatch-one: #122d4a;
  --swatch-two: #f3ead7;
  --swatch-three: #b67545;
}

@media (max-width: 900px) {
  .concept-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .concept-menu {
    justify-content: flex-start;
    width: 100%;
    min-height: 74px;
    overflow-x: auto;
    border-radius: 24px;
    scrollbar-width: none;
  }

  .concept-menu::-webkit-scrollbar {
    display: none;
  }

  .destination-section {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 56px;
  }

  .split-reverse .section-copy {
    order: 1;
  }

  .split-reverse .section-image-frame {
    order: 2;
  }

  .section-copy {
    max-width: 700px;
    min-height: auto;
    padding: 0;
  }

  .section-image-frame,
  .section-image-frame img {
    min-height: 56vh;
  }

  .section-image-frame::before {
    background:
      linear-gradient(90deg, rgba(21, 36, 16, 0.18), transparent 34%),
      radial-gradient(circle at 72% 18%, rgba(255, 238, 160, 0.18), transparent 34%);
  }

  .section-image-frame img {
    object-position: center;
  }

  .image-booking-cta {
    right: clamp(22px, 6vw, 48px);
  }

  .sun-image-frame,
  .sun-image-frame img {
    min-height: 720px;
  }

  .sun-image-frame::before {
    background:
      linear-gradient(180deg, rgba(247, 231, 192, 0.9), rgba(247, 231, 192, 0.66) 45%, rgba(247, 231, 192, 0.08) 82%, transparent),
      radial-gradient(circle at 50% 28%, rgba(255, 213, 129, 0.14), transparent 34%);
  }

  .sun-copy {
    inset: 42px clamp(26px, 8vw, 72px) auto;
    width: auto;
    min-height: 430px;
  }

  .castle-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: clamp(34px, 8vw, 72px);
  }

  .castle-copy {
    max-width: 700px;
  }

  .castle-figure img {
    width: min(780px, 100%);
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .menu-stage {
    padding: 14px;
  }

  .brand {
    width: fit-content;
  }

  .menu-link {
    flex: 0 0 auto;
    min-width: 112px;
  }

  .menu-link:hover,
  .menu-link:focus-visible {
    min-width: 210px;
  }

  .menu-name {
    font-size: 0.78rem;
  }

  .menu-place {
    font-size: 0.6rem;
  }

  .destination-section {
    gap: 28px;
    margin-top: 42px;
  }

  .section-copy {
    padding: 0;
  }

  .section-kicker {
    margin-bottom: 22px;
    padding-right: 54px;
  }

  .section-copy h1,
  .section-copy h2 {
    font-size: clamp(3.3rem, 18vw, 5.2rem);
    line-height: 1;
  }

  .section-copy p:last-child {
    max-width: 330px;
  }

  .section-image-frame,
  .section-image-frame img {
    min-height: 430px;
  }

  .image-booking-cta {
    right: 24px;
    left: auto;
    bottom: 28px;
  }

  .sun-section {
    margin-top: 42px;
  }

  .sun-image-frame,
  .sun-image-frame img {
    min-height: 640px;
  }

  .sun-copy {
    inset: 34px 24px auto;
    min-height: 410px;
  }

  .sun-copy h2 {
    font-size: clamp(3.3rem, 17vw, 5.2rem);
    line-height: 1;
  }

  .sun-copy p:not(.section-kicker) {
    max-width: 330px;
  }

  .castle-section {
    margin-top: 42px;
    padding: 34px 24px 0;
  }

  .castle-copy h2 {
    font-size: clamp(3.3rem, 17vw, 5.2rem);
    line-height: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
