:root {
  --navy-deep: #0c1a26;
  --navy: #152838;
  --navy-soft: #223a4f;
  --sage: #7a8471;
  --sage-light: #a4ae9d;
  --cream: #f4ede1;
  --cream-warm: #ebe1cf;
  --cream-dim: #d8ccb5;
  --gold: #b08a4a;
  --gold-light: #c9a66e;
  --ink: #1f1d1a;
  --ink-muted: #6b665e;
  --line: rgba(31, 29, 26, 0.12);
  --line-soft: rgba(31, 29, 26, 0.06);
  --line-light: rgba(244, 237, 225, 0.14);
  --line-light-soft: rgba(244, 237, 225, 0.06);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --nav-h: 84px;
  --max-w: 1320px;
  --max-w-narrow: 960px;
  --max-w-text: 720px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s var(--ease), opacity .3s var(--ease);
}

a:hover { opacity: .72; }

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.005em;
}

strong { font-weight: 500; }

::selection { background: var(--gold); color: var(--cream); }

/* layout */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.container--narrow { max-width: var(--max-w-narrow); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow--light { color: var(--gold-light); }

.section {
  padding: clamp(96px, 14vw, 180px) 0;
  position: relative;
}
.section--light { background: var(--cream); color: var(--ink); }
.section--cream { background: var(--cream-warm); color: var(--ink); }
.section--dark { background: var(--navy-deep); color: var(--cream); }

.section__title {
  font-size: clamp(34px, 5.2vw, 64px);
  margin-bottom: 40px;
  max-width: 22ch;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.section__title--light { color: var(--cream); }

.section__lede {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--ink-muted);
  max-width: 60ch;
  margin-bottom: 56px;
  font-weight: 300;
  line-height: 1.65;
}
.section__lede--light { color: rgba(244, 237, 225, 0.7); }

.prose {
  max-width: var(--max-w-text);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.8;
  color: var(--ink-muted);
  font-weight: 300;
}
.prose p + p { margin-top: 22px; }
.prose a {
  color: var(--gold);
  border-bottom: 1px solid rgba(176, 138, 74, 0.4);
  padding-bottom: 1px;
  transition: border-color .3s var(--ease);
}
.prose a:hover { border-bottom-color: var(--gold); opacity: 1; }

.section--dark .prose { color: rgba(244, 237, 225, 0.75); }
.section--dark .prose a { color: var(--gold-light); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all .4s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { opacity: 1; }

.btn--primary {
  background: var(--gold);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--navy-deep);
  color: var(--cream);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 237, 225, 0.35);
}
.btn--ghost:hover {
  background: var(--cream);
  color: var(--navy-deep);
  border-color: var(--cream);
}

.btn--full { width: 100%; padding: 20px; }

/* nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease), transform .45s var(--ease-smooth);
  border-bottom: 1px solid transparent;
  will-change: transform;
}
.nav.is-scrolled {
  background: rgba(12, 26, 38, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--line-light-soft);
}
.nav.is-hidden {
  transform: translateY(-100%);
}

.nav__inner {
  position: relative;
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
}
.nav__brand:hover { opacity: 1; }

.nav__brand-logo {
  color: var(--gold);
  transition: opacity .4s var(--ease-smooth);
  flex-shrink: 0;
}
.nav__brand:hover .nav__brand-logo { opacity: 0.78; }

.nav__brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
  white-space: nowrap;
  line-height: 1;
}

.nav__reserve {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  padding: 12px 28px;
  border: 1px solid rgba(244, 237, 225, 0.28);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.nav__reserve:hover {
  opacity: 1;
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--cream);
}
.nav__lang-sep {
  opacity: 0.3;
  font-size: 10px;
}
.nav__lang-btn {
  padding: 4px 2px;
  opacity: 0.5;
  transition: opacity .3s var(--ease), color .3s var(--ease);
  font-weight: 500;
}
.nav__lang-btn.is-active { opacity: 1; color: var(--gold); }
.nav__lang-btn:hover { opacity: 1; }

.nav__menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .3s var(--ease);
}
.nav__menu-btn:hover { color: var(--gold-light); }

.nav__menu-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
}
.nav__menu-lines span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform .45s var(--ease), width .45s var(--ease);
  transform-origin: right;
}
.nav__menu-lines span:nth-child(1) { width: 100%; }
.nav__menu-lines span:nth-child(2) { width: 60%; align-self: flex-end; }

.nav__menu-btn:hover .nav__menu-lines span:nth-child(2) { width: 100%; }

.nav__menu-btn.is-active .nav__menu-lines span:nth-child(1) { transform: translateY(2.5px) rotate(45deg); width: 100%; }
.nav__menu-btn.is-active .nav__menu-lines span:nth-child(2) { transform: translateY(-2.5px) rotate(-45deg); width: 100%; align-self: flex-start; }

.nav__menu-label {
  display: inline-block;
  min-width: 44px;
  text-align: left;
}

/* menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  opacity: 0;
  transition: opacity .65s var(--ease-smooth), visibility 0s linear .65s;
  visibility: hidden;
}
.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity .65s var(--ease-smooth);
}

.menu-overlay__bg {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .7s var(--ease-smooth);
}
.menu-overlay.is-open .menu-overlay__bg {
  transform: scaleY(1);
}
.menu-overlay__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(176, 138, 74, 0.12), transparent 60%),
    radial-gradient(ellipse at 25% 80%, rgba(122, 132, 113, 0.1), transparent 60%);
  pointer-events: none;
}

.menu-overlay__close {
  position: absolute;
  top: 28px;
  right: 40px;
  width: 40px;
  height: 40px;
  z-index: 2;
  color: var(--cream);
  opacity: 0;
  transition: opacity .4s var(--ease) .3s, color .3s var(--ease);
}
.menu-overlay.is-open .menu-overlay__close { opacity: 1; }
.menu-overlay__close:hover { color: var(--gold-light); opacity: 1; }
.menu-overlay__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
}
.menu-overlay__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.menu-overlay__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.menu-overlay__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 40px 64px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease) .35s, transform .6s var(--ease) .35s;
}
.menu-overlay.is-open .menu-overlay__inner {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.menu-overlay__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.menu-overlay__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 80px;
  align-content: center;
}
.menu-overlay__nav a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 20px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  padding: 6px 0;
  transition: color .35s var(--ease), gap .4s var(--ease), padding-left .4s var(--ease);
  letter-spacing: -0.005em;
}
.menu-overlay__nav a span {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  opacity: 0.7;
  align-self: center;
  transition: color .35s var(--ease);
}
.menu-overlay__nav a:hover {
  opacity: 1;
  color: var(--gold-light);
  padding-left: 12px;
}
.menu-overlay__nav a:hover span { color: var(--gold-light); opacity: 1; }

.menu-overlay__foot {
  font-size: 13px;
  color: rgba(244, 237, 225, 0.6);
  line-height: 1.8;
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light-soft);
}
.menu-overlay__foot a { color: var(--cream); }

.menu-overlay__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--cream);
}
.menu-overlay__lang .nav__lang-btn {
  padding: 6px 4px;
  opacity: 0.45;
  transition: opacity .3s var(--ease), color .3s var(--ease);
  font-weight: 500;
}
.menu-overlay__lang .nav__lang-btn.is-active { opacity: 1; color: var(--gold); }
.menu-overlay__lang .nav__lang-btn:hover { opacity: 1; }
.menu-overlay__lang .nav__lang-sep { opacity: 0.3; }

/* hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  overflow: hidden;
  padding: var(--nav-h) 40px 140px;
  text-align: center;
}

.hero__media { position: absolute; inset: 0; z-index: 0; }

.hero__fallback {
  position: absolute;
  inset: -5%;
  background-image: url("../images/hero-lake.jpg");
  background-size: cover;
  background-position: center;
  animation: kenBurns 32s ease-in-out infinite alternate;
  transform-origin: center;
}
.hero__fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 0%, rgba(0, 0, 0, 0.18) 45%, transparent 82%),
    radial-gradient(circle at 50% 0%, rgba(255, 222, 168, 0.18), transparent 55%);
  mix-blend-mode: screen;
}

@keyframes kenBurns {
  0%   { transform: scale(1.05) translate(-1.5%, -1%); }
  100% { transform: scale(1.18) translate(1.5%, 1.5%); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(12, 26, 38, 0.35) 0%, rgba(12, 26, 38, 0.7) 85%),
    linear-gradient(180deg, rgba(12, 26, 38, 0.65) 0%, rgba(12, 26, 38, 0.25) 30%, rgba(12, 26, 38, 0.45) 70%, rgba(12, 26, 38, 0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 36px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.hero__title {
  font-weight: 300;
  margin-bottom: 40px;
}

.hero__title-line {
  display: block;
  font-size: clamp(52px, 9vw, 116px);
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: 300;
}

.hero__title-sub {
  display: block;
  font-size: clamp(18px, 2.3vw, 28px);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.88;
  margin-top: 20px;
  letter-spacing: 0.005em;
  line-height: 1.3;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.hero__lede {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
  color: rgba(244, 237, 225, 0.82);
  font-weight: 300;
}

.hero__note {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 52px;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 70px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 3;
  width: 1px;
  height: 56px;
  overflow: hidden;
  opacity: 0.55;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(244, 237, 225, 0.9) 50%, transparent 100%);
  animation: scrollPulse 2.6s ease-in-out infinite;
}

/* location */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  margin-top: 56px;
}

.location__text p {
  margin-bottom: 22px;
  color: rgba(244, 237, 225, 0.78);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
}

.travel {
  list-style: none;
  margin: 52px 0 28px;
  display: grid;
}
.travel li {
  display: grid;
  grid-template-columns: 32px 130px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line-light-soft);
  align-items: center;
}
.travel li:last-child { border-bottom: 1px solid var(--line-light-soft); }

.travel__ico {
  width: 22px;
  height: 22px;
  color: var(--gold-light);
  opacity: 0.85;
}

.travel__time {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.travel__to {
  font-size: 13px;
  color: rgba(244, 237, 225, 0.65);
  letter-spacing: 0.02em;
  font-weight: 300;
}

.location__summary {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--cream);
  font-weight: 300;
  margin-top: 36px !important;
  line-height: 1.4;
}

.location__map {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line-light-soft);
  background: var(--cream-warm);
}

.location__map-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  filter: sepia(0.22) saturate(0.85) brightness(0.98) contrast(0.94);
}

.location__map-canvas.leaflet-container {
  background: #e8dfcc !important;
  font-family: var(--font-body);
}

.location__map .leaflet-control-attribution {
  background: rgba(244, 237, 225, 0.78) !important;
  color: rgba(31, 29, 26, 0.55) !important;
  font-size: 9px !important;
  letter-spacing: 0.04em;
  padding: 2px 8px !important;
  border: none !important;
}
.location__map .leaflet-control-attribution a {
  color: rgba(31, 29, 26, 0.72) !important;
}
.location__map .leaflet-control-zoom { display: none !important; }

.map-pin {
  width: 34px !important;
  height: 44px !important;
  margin-left: -17px !important;
  margin-top: -44px !important;
}
.map-pin svg {
  width: 100%;
  height: 100%;
  color: var(--gold-light);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}
.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 166, 110, 0.4), transparent 70%);
  animation: pinPulse 2.4s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scale(1.8); opacity: 0; }
}

.location__map-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 28px 28px 26px;
  background: rgba(12, 26, 38, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(244, 237, 225, 0.12);
  color: var(--cream);
  text-align: left;
}

.location__map-pin {
  width: 26px;
  height: 26px;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.location__map-addr {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.location__map-addr--sub {
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 237, 225, 0.55);
  margin-top: 6px;
  font-weight: 400;
}

.location__map-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 12px 20px;
  border: 1px solid rgba(201, 166, 110, 0.5);
  font-weight: 500;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), gap .3s var(--ease);
}
.location__map-link:hover {
  opacity: 1;
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  gap: 14px;
}
.location__map-link svg { width: 14px; height: 14px; }

@media (max-width: 600px) {
  .location__map-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 22px 22px 20px;
  }
  .location__map-addr { font-size: 18px; }
}

/* spaces */
.spaces {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 80px;
  margin-top: 72px;
}

.space {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.space__ico {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.space__num {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  opacity: 0.6;
}

.space__title {
  font-size: clamp(24px, 2.4vw, 30px);
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.space p {
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
}

.space__list {
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 10px;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 15px;
}
.space__list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.65;
}
.space__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--gold);
}

.space em {
  color: var(--gold);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}

.spaces__footer {
  margin-top: 96px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 300;
  text-align: center;
  color: var(--ink);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

/* gallery */
.gallery {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0 4px;
}

.gallery__item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--navy-soft);
}

.gallery__item:nth-child(3n+2) { aspect-ratio: 3 / 4; }

.gallery__ph {
  position: absolute;
  inset: 0;
  transition: filter .6s var(--ease);
  transform: scale(1.12);
}
.gallery__item:hover .gallery__ph { filter: brightness(1.08) saturate(1.1); }

.gallery__ph[data-room="livingroom"] {
  background-image: url("../images/room-living.jpg");
  background-size: cover;
  background-position: center;
}
.gallery__ph[data-room="study"] {
  background-image: url("../images/room-study.jpg");
  background-size: cover;
  background-position: center;
}
.gallery__ph[data-room="dining"] {
  background-image: url("../images/events-table.jpg");
  background-size: cover;
  background-position: center;
}
.gallery__ph[data-room="guestwc"] {
  background-image: url("../images/room-guestwc.jpg");
  background-size: cover;
  background-position: center;
}
.gallery__ph[data-room="kitchen"] {
  background-image: url("../images/room-kitchen.jpg");
  background-size: cover;
  background-position: center;
}
.gallery__ph[data-room="bedroom"] {
  background-image: url("../images/room-bedroom.jpg");
  background-size: cover;
  background-position: center;
}
.gallery__ph[data-room="bathroom"] {
  background-image: url("../images/room-bath.jpg");
  background-size: cover;
  background-position: center;
}
.gallery__ph[data-room="balcony"] {
  background-image: url("../images/room-hallway.jpg");
  background-size: cover;
  background-position: center;
}

.gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 26, 38, 0.7) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.gallery__item figcaption {
  position: absolute;
  left: 24px; bottom: 22px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 300;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  z-index: 2;
  transition: transform .5s var(--ease);
}
.gallery__item:hover figcaption { transform: translateY(-4px); }

/* side-image sections */
.section--life,
.section--about,
.section--service,
.section--events {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section--life::before,
.section--about::before,
.section--service::before,
.section--events::before {
  content: "";
  position: absolute;
  top: 0;
  width: 42%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.65;
  z-index: -1;
  animation: sideKenBurns 38s ease-in-out infinite alternate;
  transform-origin: center;
  will-change: transform;
}
.section--about::before { animation-delay: -6s; }
.section--service::before { animation-delay: -12s; animation-direction: alternate-reverse; }
.section--events::before { animation-delay: -20s; }
.section--life::before { animation-delay: -26s; animation-direction: alternate-reverse; }

@keyframes sideKenBurns {
  0%   { transform: scale(1.05) translate(-1%, 0); }
  100% { transform: scale(1.18) translate(1.5%, -1.5%); }
}
.section--life::before {
  right: 0;
  background-image: url("../images/life-villa.jpg");
  mask-image: linear-gradient(to left, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 40%, transparent 100%);
}
.section--about::before {
  left: 0;
  background-image: url("../images/villa-exterior.jpg");
  mask-image: linear-gradient(to right, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 40%, transparent 100%);
  opacity: 0.55;
}
.section--service::before {
  left: 0;
  background-image: url("../images/service-breakfast.jpg");
  mask-image: linear-gradient(to right, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 40%, transparent 100%);
  opacity: 0.6;
}
.section--events::before {
  right: 0;
  background-image: url("../images/events-table.jpg");
  mask-image: linear-gradient(to left, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 40%, transparent 100%);
  opacity: 0.6;
}

.section--about .container,
.section--service .container {
  margin-left: auto;
  margin-right: 4%;
}

@media (max-width: 1000px) {
  .section--life::before,
  .section--about::before,
  .section--service::before,
  .section--events::before {
    width: 100%;
    height: 40%;
    top: auto; bottom: 0;
    left: 0; right: 0;
    opacity: 0.25;
    mask-image: linear-gradient(to top, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 30%, transparent 100%);
  }
  .section--about .container,
  .section--service .container {
    margin: 0 auto;
  }
}

.life__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 40px;
  position: relative;
}

.life__quote,
.life__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
  color: var(--ink);
}
.life__quote p,
.life__text p {
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
.life__quote {
  border-left: 1px solid var(--gold);
  padding: 12px 0 12px 40px;
}
.life__quote p + p,
.life__text p + p { margin-top: 22px; }
.life__text { padding-top: 12px; }

/* scenarios */
.scenarios {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.scenario {
  padding: 48px;
  background: rgba(244, 237, 225, 0.03);
  border: 1px solid var(--line-light-soft);
  transition: background .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease);
  position: relative;
}
.scenario::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 1px;
  background: var(--gold);
  transition: width .5s var(--ease);
}
.scenario:hover {
  background: rgba(244, 237, 225, 0.05);
  border-color: var(--line-light);
}
.scenario:hover::before { width: 80px; }

.scenario__days {
  font-size: clamp(60px, 7vw, 88px);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}
.scenario__days span {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-left: 10px;
  vertical-align: middle;
  font-family: var(--font-body);
  font-weight: 400;
}

.scenario__title {
  font-size: clamp(22px, 2vw, 26px);
  margin-bottom: 20px;
  color: var(--cream);
  font-weight: 400;
}

.scenario p {
  color: rgba(244, 237, 225, 0.72);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

/* explore */
.explore {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 40px;
}

.explore__card {
  position: relative;
  padding: 44px 40px;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.explore__card:hover {
  border-color: rgba(176, 138, 74, 0.35);
}

.explore__ico {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 24px;
}

.explore__title {
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 400;
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}

.explore__card p {
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.explore__card p:last-child { margin-bottom: 0; }

.explore__card a {
  color: var(--gold);
  border-bottom: 1px solid rgba(176, 138, 74, 0.4);
  padding-bottom: 1px;
  transition: border-color .3s var(--ease);
}
.explore__card a:hover { opacity: 1; border-bottom-color: var(--gold); }

.explore__list {
  list-style: none;
  margin: 14px 0;
  display: grid;
  gap: 10px;
}
.explore__list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 15px;
}
.explore__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 1px;
  background: var(--gold);
}

.explore__note {
  margin-top: 24px !important;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px !important;
  color: var(--ink) !important;
  line-height: 1.5 !important;
}

/* contact */
.contact {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact__info { padding-top: 14px; }

.contact__list {
  display: grid;
  gap: 32px;
}

.contact__list dt {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact__list dt svg {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
  opacity: 0.7;
}

.contact__list dd {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--cream);
  line-height: 1.35;
  font-weight: 300;
}
.contact__list dd a {
  border-bottom: 1px solid rgba(244, 237, 225, 0.15);
  padding-bottom: 2px;
  transition: border-color .3s var(--ease);
}
.contact__list dd a:hover { opacity: 1; border-bottom-color: var(--gold-light); }

.contact__form {
  padding: 56px;
  background: var(--cream);
  border: 1px solid rgba(244, 237, 225, 0.08);
  color: var(--ink);
}

.contact__form-title {
  font-size: clamp(26px, 2.4vw, 32px);
  margin-bottom: 32px;
  font-weight: 400;
}

.field { margin-bottom: 24px; position: relative; }

.field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  transition: border-color .3s var(--ease);
  font-family: var(--font-body);
  font-weight: 400;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.field textarea { resize: vertical; min-height: 90px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact__note {
  margin-top: 20px;
  font-size: 11px;
  color: var(--ink-muted);
  text-align: center;
  letter-spacing: 0.04em;
  font-weight: 300;
}

.contact__status {
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
  min-height: 22px;
  font-weight: 400;
}
.contact__status.is-ok { color: var(--sage); }
.contact__status.is-err { color: #b24a3a; }

/* footer */
.footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 100px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-light-soft);
}

.footer__mark {
  color: var(--gold);
  margin-bottom: 24px;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.footer__tag {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 36px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-content: start;
  font-weight: 400;
}

.footer__contact {
  font-size: 14px;
  color: rgba(244, 237, 225, 0.65);
  line-height: 1.9;
  font-weight: 300;
}
.footer__contact a { color: var(--cream); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 36px;
  font-size: 12px;
  color: rgba(244, 237, 225, 0.45);
  letter-spacing: 0.1em;
  font-weight: 300;
}

/* responsive */
@media (max-width: 1200px) {
  .nav__inner { gap: 24px; padding: 0 32px; }
  .location__grid { gap: 60px; }
}
@media (max-width: 800px) {
  .nav__reserve { display: none; }
}

@media (max-width: 1000px) {
  .nav__reserve { display: none; }
  .nav__lang { display: none; }
  .nav__right { gap: 16px; }
  .nav__menu-label { display: none; }

  .menu-overlay__inner { padding: 100px 28px 48px; }
  .menu-overlay__nav { grid-template-columns: 1fr; gap: 8px; }
  .menu-overlay__nav a { font-size: clamp(26px, 6vw, 40px); }
  .menu-overlay__close { display: none; }
  .menu-overlay__foot { flex-direction: column; gap: 16px; align-items: flex-start; }
  .menu-overlay__lang { display: flex !important; }

  .location__grid,
  .spaces,
  .scenarios,
  .explore,
  .contact,
  .life__grid,
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer__grid { gap: 48px; }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .hero { padding: var(--nav-h) 24px 200px; }
  .hero__actions { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .travel li { grid-template-columns: 24px 96px 1fr; gap: 16px; }
  .travel__ico { width: 18px; height: 18px; }
  .travel__time { font-size: 20px; }
  .gallery { grid-template-columns: 1fr; }
  .scenario { padding: 36px 28px; }
  .explore__card { padding: 36px 28px; }
  .contact__form { padding: 40px 28px; }
  .footer__nav { grid-template-columns: 1fr; }
  .life__quote { padding-left: 28px; }

  .location__map { aspect-ratio: auto; height: 70vh; min-height: 380px; }
  .location__map-card {
    position: static;
    margin-top: 16px;
    background: var(--navy);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 24px;
  }
  .location__map-pin { width: 22px; height: 22px; margin-bottom: 10px; }
  .location__map { border: none; }
  .location__map-canvas { position: relative; height: 100%; }
}

/* flatpickr override */
.flatpickr-input.f-date + .flatpickr-input {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-body);
  font-weight: 400;
  cursor: pointer;
}
.flatpickr-input.f-date + .flatpickr-input:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.flatpickr-calendar {
  background: var(--cream) !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 20px 60px rgba(12, 26, 38, 0.18) !important;
  font-family: var(--font-body) !important;
  border-radius: 0 !important;
  padding: 6px !important;
}
.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after { display: none !important; }

.flatpickr-months { padding: 8px 6px 4px !important; }
.flatpickr-month {
  color: var(--ink) !important;
  fill: var(--ink) !important;
}
.flatpickr-current-month {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  padding-top: 6px !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: var(--ink) !important;
  font-family: var(--font-display) !important;
  font-weight: 400 !important;
  font-size: 18px !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover { background: rgba(176, 138, 74, 0.1) !important; }

.flatpickr-prev-month, .flatpickr-next-month {
  color: var(--ink-muted) !important;
  fill: var(--ink-muted) !important;
  padding: 10px !important;
}
.flatpickr-prev-month:hover svg, .flatpickr-next-month:hover svg {
  fill: var(--gold) !important;
}

.flatpickr-weekdays { background: transparent !important; }
span.flatpickr-weekday {
  color: var(--ink-muted) !important;
  background: transparent !important;
  font-weight: 500 !important;
  font-size: 10px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.flatpickr-day {
  color: var(--ink) !important;
  border-radius: 0 !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  border: 1px solid transparent !important;
  max-width: 40px !important;
  height: 38px !important;
  line-height: 38px !important;
  transition: background .2s, color .2s !important;
}
.flatpickr-day:hover {
  background: rgba(176, 138, 74, 0.12) !important;
  border-color: transparent !important;
}
.flatpickr-day.today {
  border-color: var(--gold-light) !important;
  color: var(--gold) !important;
}
.flatpickr-day.today:hover {
  background: var(--gold-light) !important;
  color: var(--cream) !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected.today {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--cream) !important;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(31, 29, 26, 0.3) !important;
}

.numInputWrapper span.arrowUp::after { border-bottom-color: var(--ink-muted) !important; }
.numInputWrapper span.arrowDown::after { border-top-color: var(--ink-muted) !important; }

/* grain */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 200;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch' seed='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}
@media (prefers-reduced-motion: no-preference) {
  .grain { animation: grainShift 1.6s steps(6) infinite; }
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3%, 1%); }
  40%  { transform: translate(2%, -2%); }
  60%  { transform: translate(-1%, 3%); }
  80%  { transform: translate(3%, 1%); }
  100% { transform: translate(0, 0); }
}

/* parallax */
.gallery__ph {
  will-change: transform;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes scrollPulse {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
