/* =========================================
   CSS RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

html.lenis {
  height: auto;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

:root {
  --soft-wool: #E4E2DB;
  --ashen-cedar: #473D36;
  --dried-cornleaf: #7F7E59;
  --fresh-barley: #C4AE61;
  --deep-forest: #222D22;
  --cream: #F0EDE7;
  --warm-white: #FAFAF8;
  --text: #473D36;
  --text-dim: rgba(71,61,54,0.65);
  --text-label: rgba(71,61,54,0.45);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Mulish', -apple-system, sans-serif;
}

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

body.loaded {
  overflow: auto;
}

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

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

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

/* =========================================
   PRELOADER
   ========================================= */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--cream);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader__line-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.preloader__line {
  width: 100%;
  height: 2px;
}

.preloader__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 24px));
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--ashen-cedar);
  opacity: 0;
  white-space: nowrap;
}

.preloader__stamp {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  animation: stampRotate 20s linear infinite;
}

@keyframes stampRotate {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.65rem 1.2rem 0.65rem 1.5rem;
  border-radius: 100px;
  background: rgba(240,237,231,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(71,61,54,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  max-width: calc(100vw - 2rem);
}

.nav__monogram {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ashen-cedar);
  flex-shrink: 0;
  line-height: 1;
}

.nav__monogram span {
  display: block;
  text-align: center;
}

.nav__monogram .mono-line {
  width: 12px;
  height: 1px;
  background: var(--ashen-cedar);
  margin: 2px auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ashen-cedar);
  opacity: 0.55;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.nav__links a:hover {
  opacity: 1;
}

.nav__reserve {
  background: var(--ashen-cedar);
  color: var(--soft-wool);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  transition: background 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.nav__reserve:hover {
  background: var(--deep-forest);
  transform: scale(1.02);
}

.nav__hamburger {
  display: none;
  width: 24px;
  height: 24px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ashen-cedar);
  transition: 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100%; height: 100%;
  background: var(--ashen-cedar);
  z-index: 9500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-wool);
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--soft-wool);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.mobile-menu__links a:hover {
  opacity: 1;
}

.mobile-menu__footer {
  position: absolute;
  bottom: 2.5rem;
  text-align: center;
  color: rgba(228,226,219,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.mobile-menu__footer a {
  color: rgba(228,226,219,0.6);
  margin: 0 0.5rem;
}

/* =========================================
   HERO — Full-screen dark (V3 style)
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,23,20,0.3) 0%,
    rgba(26,23,20,0.2) 40%,
    rgba(26,23,20,0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #E4E2DB;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: 0.08em;
  color: #E4E2DB;
}

.hero__tagline {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--fresh-barley);
  font-weight: 400;
}

.hero__bottom {
  position: absolute;
  bottom: 5rem;
  left: 3rem;
  right: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(228,226,219,0.5);
}

/* =========================================
   BOOKING BAR — Glass effect inside hero
   ========================================= */
.booking-bar {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: calc(100% - 6rem);
  max-width: 900px;
  background: rgba(26,23,20,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(228,226,219,0.1);
  border-radius: 8px;
  padding: 1.2rem 1.8rem;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.booking-bar__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.booking-bar__label {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(228,226,219,0.35);
  font-weight: 600;
}

.booking-bar__input {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #E4E2DB;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(228,226,219,0.15);
  padding: 0.35rem 0;
  outline: none;
  width: 100%;
}

.booking-bar__input option {
  background: #1a1714;
  color: #E4E2DB;
}

.booking-bar__input:focus {
  border-color: var(--dried-cornleaf);
}

.booking-bar__btn {
  background: var(--fresh-barley);
  color: var(--deep-forest);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.booking-bar__btn:hover {
  background: var(--deep-forest);
}

/* =========================================
   STATS STRIP
   ========================================= */
.stats-strip {
  display: flex;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.stats-strip__cell {
  flex: 1;
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(71,61,54,0.1);
}

.stats-strip__cell:last-child {
  border-right: none;
}

.stats-strip__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--dried-cornleaf);
  line-height: 1;
}

.stats-strip__label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-top: 0.5rem;
}

/* =========================================
   SVG LINE MORPH
   ========================================= */
.line-morph {
  position: relative;
  height: 80vh;
  overflow: hidden;
  background: var(--cream);
}

.line-morph__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.line-morph__svg-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.line-morph__svg {
  width: 100%;
  height: 300px;
  overflow: visible;
}

.line-morph__path {
  fill: none;
  stroke: var(--dried-cornleaf);
  stroke-width: 1.2;
  stroke-linecap: round;
  opacity: 0.65;
}

/* =========================================
   PHILOSOPHY
   ========================================= */
.philosophy {
  padding: 8rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dried-cornleaf);
  margin-bottom: 2rem;
  font-weight: 600;
}

.philosophy__quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.4;
  font-style: italic;
  color: var(--text);
  margin-bottom: 2rem;
}

.philosophy__quote .word {
  opacity: 0.15;
  transition: opacity 0.1s ease;
}

.philosophy__body {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
}

/* =========================================
   PICTOGRAM ROW
   ========================================= */
.pictogram-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 2rem;
  flex-wrap: wrap;
}

.pictogram-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  cursor: default;
}

.pictogram-item svg {
  width: 44px;
  height: 44px;
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.pictogram-item:hover svg {
  opacity: 0.8;
}

.pictogram-item span {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-label);
  opacity: 0.8;
}

/* =========================================
   POETIC DIVIDER
   ========================================= */
.poetic-divider {
  padding: 6rem 2rem;
  text-align: center;
}

.poetic-divider__text {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 200;
  color: rgba(71,61,54,0.35);
  line-height: 1.3;
}

.sb-letter { display: inline-block; }
.sb-space { display: inline-block; width: 0.3em; }

.poetic-divider__text em {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(127,126,89,0.6);
}

/* =========================================
   BENTO GRIDS
   ========================================= */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  width: 100%;
  padding: 0 2rem;
}

/* Grids 1, 2 & Wine: full-screen wide, edge-to-edge */
#bentoGrid1,
#bentoGrid2,
#bentoWine {
  padding: 0;
}
#bentoGrid1 .bento-cell,
#bentoGrid2 .bento-cell,
#bentoWine .bento-cell {
  border-radius: 0;
}

.bento-cell {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 4px;
}

.bento-cell--span2 {
  grid-column: span 2;
}

/* Image cells */
.bento-cell--image {
  cursor: pointer;
}

.bento-cell--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-cell--image:hover img {
  transform: scale(1.04);
}

.bento-cell__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  color: var(--warm-white);
}

.bento-cell__label {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}

.bento-cell__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.bento-cell__desc {
  font-size: 0.78rem;
  opacity: 0.8;
  margin-top: 0.4rem;
  line-height: 1.6;
}

/* Text cells */
.bento-cell--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}

.bento-cell--text .bento-cell__label {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.bento-cell--text .bento-cell__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.bento-cell--text .bento-cell__desc {
  font-size: 0.8rem;
  opacity: 0.75;
  line-height: 1.7;
}

.bento-cell--text .pictogram-inline {
  width: 34px;
  height: 34px;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.bento-cell--deep-forest {
  background: var(--deep-forest);
  color: var(--soft-wool);
}

.bento-cell--ashen-cedar {
  background: var(--ashen-cedar);
  color: var(--soft-wool);
}

.bento-cell--soft-wool {
  background: var(--soft-wool);
  color: var(--text);
}

.bento-cell--dried-cornleaf {
  background: var(--dried-cornleaf);
  color: var(--soft-wool);
}

.bento-cell--fresh-barley {
  background: var(--fresh-barley);
  color: var(--ashen-cedar);
}

/* =========================================
   SPLIT SECTIONS
   ========================================= */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  margin: 2rem 0;
}

.split-section--reversed {
  direction: rtl;
}

.split-section--reversed > * {
  direction: ltr;
}

.split-section__image {
  position: relative;
  overflow: hidden;
}

.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.split-section__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.split-section__text .section-label {
  text-align: left;
  margin-bottom: 1rem;
}

.split-section__text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.split-section__text p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.split-section__text .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dried-cornleaf);
  margin-top: 1rem;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.split-section__text .link-arrow:hover {
  gap: 0.8rem;
}

.split-section__text--dark {
  background: var(--ashen-cedar);
  color: var(--soft-wool);
}

.split-section__text--dark p {
  color: rgba(228,226,219,0.7);
}

.split-section__text--dark .section-label {
  color: var(--fresh-barley);
}

.split-section__text--dark .link-arrow {
  color: var(--fresh-barley);
}

.split-section__text .pictogram-inline {
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.split-section__text--dark .pictogram-inline {
  opacity: 0.6;
}

/* =========================================
   MOOD STRIP
   ========================================= */
.mood-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 100%;
  margin: 2rem 0;
}

.mood-strip__cell {
  position: relative;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
}

.mood-strip__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mood-strip__cell:hover img {
  transform: scale(1.03);
}

.mood-strip__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  color: var(--warm-white);
}

.mood-strip__overlay svg {
  width: 28px;
  height: 28px;
  opacity: 0.7;
  flex-shrink: 0;
}

.mood-strip__overlay span {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* =========================================
   FULL-WIDTH BANNER
   ========================================= */
.full-banner {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--warm-white);
}

.full-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.full-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.full-banner__content {
  position: relative;
  z-index: 2;
}

.full-banner__content svg {
  width: 48px;
  height: 48px;
  opacity: 0.7;
  margin: 0 auto 1rem;
}

.full-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.full-banner__content p {
  font-size: 0.9rem;
  opacity: 0.75;
  font-style: italic;
}

/* =========================================
   CENTERED EDITORIAL
   ========================================= */
.editorial-centered {
  padding: 6rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.editorial-centered svg {
  width: 44px;
  height: 44px;
  margin: 0 auto 1.5rem;
  opacity: 0.45;
}

.editorial-centered h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.editorial-centered p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.9;
}

/* =========================================
   EXPERIENCES GRID
   ========================================= */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.exp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(71,61,54,0.08);
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--cream);
}

.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.exp-card svg {
  width: 34px;
  height: 34px;
  opacity: 0.45;
  margin-bottom: 0.8rem;
}

.exp-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.exp-card__desc {
  font-size: 0.72rem;
  color: var(--text-label);
  line-height: 1.5;
}

/* =========================================
   EVENTS SECTION
   ========================================= */
.events-detail {
  max-width: 800px;
  margin: -2rem auto 4rem;
  text-align: center;
  padding: 3rem 2rem;
}

.events-detail p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.8;
}

/* =========================================
   SPA FEATURES
   ========================================= */
.spa-features {
  display: flex;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.spa-feature {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(71,61,54,0.1);
}

.spa-feature:last-child {
  border-right: none;
}

.spa-feature svg {
  width: 34px;
  height: 34px;
  opacity: 0.45;
  margin: 0 auto 0.8rem;
}

.spa-feature__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.spa-feature__desc {
  font-size: 0.72rem;
  color: var(--text-label);
  line-height: 1.5;
}

/* =========================================
   TESTIMONIAL
   ========================================= */
.testimonial {
  padding: 6rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial .tw {
  display: inline-block;
  opacity: 0.12;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  opacity: 0.7;
}

/* =========================================
   LOCATION
   ========================================= */
.location {
  background: var(--deep-forest);
  color: var(--soft-wool);
  padding: 6rem 2rem;
  text-align: center;
}

.location .section-label {
  color: var(--fresh-barley);
}

.location h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.location p {
  font-size: 0.9rem;
  color: rgba(228,226,219,0.65);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.location__stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.location__stat {
  text-align: center;
}

.location__stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--fresh-barley);
  line-height: 1;
}

.location__stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 0.4rem;
}

/* =========================================
   FAMILY + STAMP
   ========================================= */
.family-section {
  padding: 6rem 2rem;
  text-align: center;
  background: var(--cream);
}

.family-section__stamp {
  width: 125px;
  height: 125px;
  margin: 0 auto 2rem;
  animation: stampRotateSlow 30s linear infinite;
}

@keyframes stampRotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.family-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.family-section p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* =========================================
   BOOKING CTA
   ========================================= */
.booking-cta {
  padding: 6rem 2rem;
  text-align: center;
  background: var(--soft-wool);
}

.booking-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 2rem;
}

.booking-cta__form {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.booking-cta__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 150px;
  flex: 1;
}

.booking-cta__field label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-label);
  font-weight: 600;
}

.booking-cta__field input,
.booking-cta__field select {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid rgba(71,61,54,0.12);
  padding: 0.7rem 0.8rem;
  border-radius: 6px;
  outline: none;
}

.booking-cta__btn {
  background: var(--ashen-cedar);
  color: var(--soft-wool);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 8px;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.booking-cta__btn:hover {
  background: var(--deep-forest);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--ashen-cedar);
  color: var(--soft-wool);
  padding: 5rem 2rem 2rem;
}

.footer__top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo {
  font-family: var(--font-body);
  text-transform: uppercase;
}

.footer__logo-villa {
  font-weight: 300;
  letter-spacing: 0.5em;
  font-size: 0.8rem;
  display: block;
}

.footer__logo-serenity {
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  display: block;
}

.footer__brand-desc {
  font-size: 0.78rem;
  opacity: 0.5;
  line-height: 1.7;
}

.footer__col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer__col a {
  display: block;
  font-size: 0.82rem;
  opacity: 0.65;
  margin-bottom: 0.6rem;
  transition: opacity 0.3s ease;
}

.footer__col a:hover {
  opacity: 1;
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(228,226,219,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.72rem;
  opacity: 0.35;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.72rem;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.footer__legal a:hover {
  opacity: 0.7;
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__socials a {
  font-size: 0.72rem;
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.footer__socials a:hover {
  opacity: 0.9;
}

/* =========================================
   LETTER BOLD ANIMATION
   ========================================= */
.letter-bold .letter {
  display: inline-block;
  font-weight: 300;
  color: rgba(71,61,54,0.2);
  transition: none;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav {
    width: auto;
    max-width: none;
    padding: 0.6rem 1.2rem;
    left: auto;
    right: 1rem;
    transform: none;
    gap: 1rem;
  }
  .nav__reserve {
    display: none;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-cell--span2 {
    grid-column: span 2;
  }
  .split-section {
    grid-template-columns: 1fr;
  }
  .split-section--reversed {
    direction: ltr;
  }
  .split-section__image {
    height: 400px;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  /* Hero: full-screen image on mobile, no cream border */
  .hero {
    background: #1a1714;
  }
  .hero__image-wrap {
    inset: 0;
    border-radius: 0;
  }
  .hero__overlay {
    border-radius: 0;
  }
  /* Hero bottom text: minimal */
  .hero__bottom {
    bottom: 6.5rem;
    left: 1.5rem;
    right: 1.5rem;
    font-size: 0.55rem;
  }
  .hero__bottom-full { display: none; }
  .hero__bottom-mobile { display: flex !important; }
  .booking-bar {
    flex-direction: column;
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 200px;
    max-width: calc(100% - 3rem);
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    align-items: center;
  }
  .booking-bar__field {
    width: 100%;
    display: none;
  }
  .booking-bar.expanded .booking-bar__field {
    display: flex;
  }
  .booking-bar.expanded {
    background: rgba(26,23,20,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(228,226,219,0.1);
    border-radius: 8px;
    padding: 1.2rem;
    gap: 0.8rem;
  }
  .booking-bar__btn {
    width: 100%;
    text-align: center;
    background: rgba(26,23,20,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(228,226,219,0.1);
    border-radius: 8px;
    padding: 0.85rem 1.8rem;
    color: var(--fresh-barley);
  }
  .booking-bar.expanded .booking-bar__btn {
    background: var(--fresh-barley);
    color: var(--deep-forest);
    backdrop-filter: none;
    border: none;
  }
  .stats-strip {
    flex-wrap: wrap;
  }
  .stats-strip__cell {
    flex: 1 1 calc(33.33% - 1px);
    border-right: none;
    border-bottom: 1px solid rgba(71,61,54,0.1);
    padding: 1.5rem 0.5rem;
  }
  .stats-strip__cell--hide-mobile {
    display: none;
  }
  .line-morph {
    display: none;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-cell--span2 {
    grid-column: span 1;
  }
  /* Grids 1 & 2: full-width feel on mobile */
  #bentoGrid1 .bento-cell--image,
  #bentoGrid2 .bento-cell--image {
    min-height: 55vh;
    border-radius: 0;
  }
  #bentoGrid1,
  #bentoGrid2 {
    gap: 0;
    border-radius: 0;
  }
  .mood-strip {
    grid-template-columns: 1fr;
  }
  .mood-strip__cell {
    height: 280px;
  }
  .experiences-grid {
    grid-template-columns: 1fr;
  }
  .spa-features {
    flex-direction: column;
  }
  .spa-feature {
    border-right: none;
    border-bottom: 1px solid rgba(71,61,54,0.1);
  }
  .spa-feature:last-child {
    border-bottom: none;
  }
  .location__stats {
    gap: 2rem;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .booking-cta__form {
    flex-direction: column;
  }
  .booking-cta__field {
    width: 100%;
  }
  .split-section__text {
    padding: 3rem 2rem;
  }
}

/* =========================================
   INNER PAGE — PAGE HERO (65vh)
   ========================================= */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 4rem 2rem;
}

.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(26,23,20,0.7) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--warm-white);
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.page-hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fresh-barley);
  margin-top: 0.8rem;
}

/* =========================================
   INNER PAGE — BREADCRUMB
   ========================================= */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.breadcrumb a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--dried-cornleaf);
}

/* =========================================
   INNER PAGE — CROSS-SELL ("Continue Exploring")
   ========================================= */
.cross-sell {
  padding: 6rem 2rem;
  text-align: center;
}

.cross-sell__label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dried-cornleaf);
  font-weight: 600;
  margin-bottom: 2rem;
}

.cross-sell__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.cross-sell__card {
  position: relative;
  height: 45vh;
  min-height: 320px;
  overflow: hidden;
  cursor: pointer;
  color: var(--warm-white);
}

.cross-sell__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cross-sell__card:hover img {
  transform: scale(1.04);
}

.cross-sell__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.cross-sell__card-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 2;
}

.cross-sell__card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
}

.cross-sell__card-desc {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-top: 0.3rem;
}

/* =========================================
   INNER PAGE — RESERVATION FORMS
   ========================================= */
.reservation-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.reservation-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.reservation-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.reservation-form__field--full {
  grid-column: span 2;
}

.reservation-form__field label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-label);
  font-weight: 600;
}

.reservation-form__field input,
.reservation-form__field select,
.reservation-form__field textarea {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(71,61,54,0.2);
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.reservation-form__field input:focus,
.reservation-form__field select:focus,
.reservation-form__field textarea:focus {
  border-color: var(--dried-cornleaf);
}

.reservation-form__field textarea {
  resize: vertical;
  min-height: 80px;
}

.reservation-form__submit {
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--ashen-cedar);
  color: var(--warm-white);
  border: none;
  border-radius: 100px;
  padding: 1rem 3rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.reservation-form__submit:hover {
  background: var(--deep-forest);
}

.reservation-form__success {
  display: none;
  text-align: center;
  padding: 3rem;
}

.reservation-form__success.visible {
  display: block;
}

.reservation-form__success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.reservation-form__success p {
  font-family: var(--font-body);
  color: var(--text-dim);
}

/* =========================================
   INNER PAGE — LANGUAGE SELECTOR (footer)
   ========================================= */
.lang-selector {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1rem;
}

.lang-selector__btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(228,226,219,0.5);
  cursor: pointer;
  transition: color 0.3s ease;
}

.lang-selector__btn:hover {
  color: var(--warm-white);
}

.lang-selector__btn.active {
  color: var(--fresh-barley);
}

.lang-selector__sep {
  color: rgba(228,226,219,0.2);
  font-size: 0.6rem;
}

/* =========================================
   INNER PAGE — GALLERY
   ========================================= */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  flex-wrap: wrap;
}

.gallery-filters__btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid transparent;
  font-weight: 600;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.gallery-filters__btn:hover,
.gallery-filters__btn.active {
  color: var(--text);
  border-bottom-color: var(--dried-cornleaf);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-grid__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid__item:hover img {
  transform: scale(1.04);
}

[data-hidden="true"] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--warm-white);
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--warm-white);
  background: none;
  border: none;
  padding: 1rem;
  cursor: pointer;
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

/* =========================================
   INNER PAGE — RATE TABLE (rooms page)
   ========================================= */
.rate-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  overflow-x: auto;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.8rem;
}

.rate-table th {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-label);
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(71,61,54,0.15);
}

.rate-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(71,61,54,0.08);
  color: var(--text);
}

.rate-table td:first-child {
  font-weight: 500;
}

.rate-table__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
}

.rate-table__note {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 1rem;
}

/* =========================================
   INNER PAGE — CONTACT SECTION
   ========================================= */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.contact-info__item a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info__item a:hover {
  color: var(--dried-cornleaf);
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--soft-wool);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 0.8rem;
  margin-bottom: 2rem;
}

/* =========================================
   INNER PAGE — PACKAGE CARDS (events page)
   ========================================= */
.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.package-card {
  border: 1px solid rgba(71,61,54,0.1);
  border-radius: 4px;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.package-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.package-card__desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.package-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-card__features li {
  font-family: var(--font-body);
  font-size: 0.78rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(71,61,54,0.06);
}

.package-card__features li:last-child {
  border-bottom: none;
}

/* =========================================
   INNER PAGE — RESPONSIVE ADDITIONS
   ========================================= */
@media (max-width: 1024px) {
  .cross-sell__grid {
    grid-template-columns: 1fr;
  }
  .cross-sell__card {
    height: 35vh;
  }
  .contact-section {
    grid-template-columns: 1fr;
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .page-hero {
    height: 55vh;
    min-height: 350px;
  }
  .reservation-form__fields {
    grid-template-columns: 1fr;
  }
  .reservation-form__field--full {
    grid-column: span 1;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .lightbox__nav {
    display: none;
  }
}
