/* ============================================================
   YOSO — Los Gigantes, Tenerife
   Brand palette: #3d4231 ink-green · #f6f4f0 paper
                  #dcd1c4 sand     · #584130 earth
   ============================================================ */

@import url("fonts.css");

:root {
  --green: #3d4231;
  --paper: #f6f4f0;
  --sand: #dcd1c4;
  --earth: #584130;

  --green-soft: #4a503c;
  --paper-warm: #efebe3;
  --line: rgba(61, 66, 49, 0.16);
  --ink-70: rgba(61, 66, 49, 0.72);
  --ink-55: rgba(61, 66, 49, 0.55);

  --font-display: "Sweet Gothic", "Questrial", "Jost", "Aeonik", sans-serif;
  --font-body: "Aeonik", "Jost", -apple-system, sans-serif;

  --maxw: 1320px;
  --gut: clamp(1.25rem, 5vw, 6rem);
  --section: clamp(5rem, 11vw, 11rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------  reset  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--green);
  background: var(--paper);
  line-height: 1.7;
  font-size: clamp(1rem, 0.55vw + 0.9rem, 1.075rem);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--green); color: var(--paper); }

/* ----------  type  ---------- */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1.12;
  font-feature-settings: "liga" 1;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.72rem;
  color: var(--earth);
  display: inline-block;
}
.lead { font-size: clamp(1.15rem, 1.4vw + 0.8rem, 1.5rem); line-height: 1.6; font-weight: 300; text-wrap: balance; }
.muted { color: var(--ink-70); }

/* ----------  layout helpers  ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--section); }
.center { text-align: center; }
.divider { width: 56px; height: 1px; background: var(--earth); opacity: 0.5; margin: 1.6rem 0; }
.center .divider, .intro .divider { margin-inline: auto; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }

/* ----------  buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.24em; font-size: 0.74rem;
  padding: 1.05em 2.1em; border-radius: 2px;
  background: var(--green); color: var(--paper);
  transition: background 0.5s var(--ease), color 0.5s var(--ease), transform 0.5s var(--ease);
}
.btn:hover { background: var(--earth); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--green); box-shadow: inset 0 0 0 1px var(--line); }
.btn--ghost:hover { background: var(--green); color: var(--paper); box-shadow: inset 0 0 0 1px var(--green); }
.btn--light { background: var(--paper); color: var(--green); }
.btn--light:hover { background: var(--sand); color: var(--green); }

.link-underline { position: relative; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.74rem; }
.link-underline::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.link-underline:hover::after { transform: scaleX(1); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.7rem) var(--gut);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.site-header.solid {
  background: rgba(246, 244, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: clamp(0.7rem, 1.4vw, 1.05rem);
  box-shadow: 0 1px 0 var(--line);
}
.brand-logo { height: clamp(26px, 2.6vw, 36px); width: auto; transition: filter 0.5s var(--ease); }
/* logo art is dark; invert to white while over the hero */
.site-header:not(.solid) .brand-logo { filter: invert(1) brightness(2.2); }

.nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.4vw, 2.8rem); }
.nav a:not(.btn) {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 0.72rem; position: relative; color: inherit;
}
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -7px; height: 1px; width: 100%; background: currentColor; transform: scaleX(0); transform-origin: center; transition: transform 0.45s var(--ease); }
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.site-header:not(.solid) .nav { color: var(--paper); }
.site-header:not(.solid) .nav .btn { background: rgba(246,244,240,0.14); box-shadow: inset 0 0 0 1px rgba(246,244,240,0.5); color: var(--paper); backdrop-filter: blur(6px); }
.site-header:not(.solid) .nav .btn:hover { background: var(--paper); color: var(--green); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 6px 0; z-index: 120; }
.nav-toggle span { display: block; height: 1.4px; width: 100%; background: var(--green); transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }
.site-header:not(.solid) .nav-toggle span { background: var(--paper); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  /* backdrop-filter on the header would make it the containing block for the
     fixed nav overlay (and clip it); drop the blur on mobile so the overlay
     resolves against the viewport instead. */
  .site-header.solid { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--paper); }
  .nav {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    flex-direction: column; justify-content: center;
    gap: 2rem; background: var(--paper); color: var(--green);
    transform: translateY(-100%); transition: transform 0.6s var(--ease);
    pointer-events: none;
  }
  .nav a:not(.btn) { font-size: 1rem; letter-spacing: 0.28em; }
  body.menu-open .nav { transform: none; pointer-events: auto; }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav-toggle span { background: var(--green); }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.4px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.4px) rotate(-45deg); }
  .site-header:not(.solid) .nav { color: var(--green); }
  .site-header:not(.solid) .nav .btn { background: var(--green); color: var(--paper); box-shadow: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; transform: scale(1.08); animation: heroZoom 16s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 88% 62% at 50% 52%, rgba(26,28,21,0.55) 0%, rgba(26,28,21,0.30) 45%, rgba(26,28,21,0) 78%),
    linear-gradient(to bottom, rgba(26,28,21,0.50) 0%, rgba(26,28,21,0.30) 32%, rgba(26,28,21,0.32) 62%, rgba(26,28,21,0.68) 100%);
}
.hero__inner { text-align: center; color: var(--paper); padding: 0 var(--gut); max-width: 60rem; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  letter-spacing: 0.1em; line-height: 1.05; font-weight: 400;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35), 0 2px 30px rgba(0,0,0,0.45);
}
.hero__sub { margin-top: 1.6rem; font-size: clamp(1.05rem, 1.6vw, 1.4rem); font-weight: 300; letter-spacing: 0.06em; color: rgba(246,244,240,0.96); text-shadow: 0 1px 16px rgba(0,0,0,0.45); }
.hero__rating { margin-top: 2.2rem; display: inline-flex; align-items: center; gap: 0.8rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.72rem; color: var(--paper); text-shadow: 0 1px 14px rgba(0,0,0,0.5); }
.hero__rating b { font-size: 1.05rem; letter-spacing: 0.1em; }
.hero__rating .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sand); }
.hero__scroll { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 1; color: var(--paper); display: grid; justify-items: center; gap: 0.6rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.6rem; opacity: 0.85; }
.hero__scroll i { display: block; width: 1px; height: 46px; background: linear-gradient(var(--paper), transparent); animation: scrollLine 2.4s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.5;} 50% { transform: scaleY(1); opacity: 1;} }

/* hero entrance */
.hero h1, .hero__sub, .hero__rating { opacity: 0; transform: translateY(22px); animation: heroRise 1.4s var(--ease) forwards; }
.hero__sub { animation-delay: 0.25s; }
.hero__rating { animation-delay: 0.5s; }
@keyframes heroRise { to { opacity: 1; transform: none; } }

/* ============================================================
   INTRO / PHILOSOPHY
   ============================================================ */
.intro { text-align: center; padding-bottom: clamp(2.5rem, 5vw, 4.5rem); }
#spaces { padding-top: clamp(2.5rem, 5vw, 4.5rem); }
.intro .lead { max-width: 46rem; margin-inline: auto; }
.intro__statement {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.14em; line-height: 1.3;
  font-size: clamp(1.5rem, 3.4vw, 2.9rem); font-weight: 400;
  max-width: 30rem; margin: 0 auto;
}
.intro__jp { font-family: var(--font-display); letter-spacing: 0.5em; font-size: 0.78rem; color: var(--earth); text-transform: uppercase; }

/* ============================================================
   SPLIT FEATURE BLOCKS (the spaces)
   ============================================================ */
.feature { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.feature + .feature { margin-top: clamp(4rem, 9vw, 9rem); }
.feature--rev .feature__media { order: 2; }
.feature__media { position: relative; overflow: hidden; border-radius: 2px; }
.feature__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.6s var(--ease); }
.feature__media:hover img { transform: scale(1.045); }
.feature__media .tag {
  position: absolute; left: 1.2rem; bottom: 1.2rem;
  background: rgba(246,244,240,0.9); color: var(--green);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.62rem; padding: 0.55em 1em; border-radius: 2px; backdrop-filter: blur(6px);
}
.feature__body { max-width: 30rem; }
.feature__body h2 { font-size: clamp(1.6rem, 2.6vw, 2.5rem); margin-bottom: 0.4rem; }
.feature__body p { color: var(--ink-70); margin-top: 1.1rem; }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; gap: 1.8rem; }
  .feature--rev .feature__media { order: 0; }
  .feature__media img { aspect-ratio: 3 / 4; max-height: 78vh; margin-inline: auto; }
}

/* ============================================================
   TOUCHES (welcome amenities)
   ============================================================ */
.touches { background: var(--green); color: var(--paper); }
.touches .eyebrow { color: var(--sand); }
.touches h2 { color: var(--paper); }
.touches__head { max-width: none; }
.touches__head p { color: rgba(246,244,240,0.78); margin-top: 1rem; max-width: 40rem; }
.touch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.4vw, 2.2rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.touch {
  background: rgba(246,244,240,0.05); border: 1px solid rgba(246,244,240,0.12);
  border-radius: 2px; overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.6s var(--ease), background 0.6s var(--ease);
}
.touch:hover { transform: translateY(-4px); background: rgba(246,244,240,0.08); }
.touch__img { aspect-ratio: 1 / 1; overflow: hidden; }
.touch__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.touch:hover .touch__img img { transform: scale(1.06); }
.touch__txt { padding: 1.3rem 1.4rem 1.6rem; }
.touch__txt h3 { font-size: 0.86rem; letter-spacing: 0.18em; color: var(--paper); }
.touch__txt p { font-size: 0.92rem; color: rgba(246,244,240,0.7); margin-top: 0.5rem; line-height: 1.55; }
@media (max-width: 820px) { .touch-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .touch-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WELLBEING
   ============================================================ */
.wellbeing { background: var(--paper-warm); }
.wellbeing .eyebrow { color: var(--ink-55); }
.well-head { max-width: none; }
.well-head p { color: var(--ink-70); margin-top: 1rem; max-width: 40rem; }
/* Composed mosaic / bento — photos of different sizes tessellate into one
   balanced block. Titles sit on the photo; the description reveals on hover
   (desktop) and shows inline on phones. Deliberately unlike the masonry. */
.well-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(170px, 22vw, 290px);
  gap: clamp(0.5rem, 0.9vw, 0.85rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  grid-template-areas:
    "clay clay water"
    "clay clay robes"
    "gua  books yoga";
}
.well-card { position: relative; overflow: hidden; border-radius: 2px; margin: 0; }
.well-card:nth-child(1) { grid-area: clay; }
.well-card:nth-child(2) { grid-area: water; }
.well-card:nth-child(3) { grid-area: robes; }
.well-card:nth-child(4) { grid-area: gua; }
.well-card:nth-child(5) { grid-area: books; }
.well-card:nth-child(6) { grid-area: yoga; }
.well-card__img { position: absolute; inset: 0; aspect-ratio: auto; }
.well-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1.6s var(--ease); }
.well-card:hover .well-card__img img { transform: scale(1.05); }
/* keep each photo's subject in frame when the tile crops it */
.well-card:nth-child(2) .well-card__img img { object-position: center 32%; } /* water: tap + BE ECO sign */
.well-card:nth-child(5) .well-card__img img { object-position: center 34%; } /* books & candles */
.well-card:nth-child(6) .well-card__img img { object-position: center 50%; } /* SPA book + driftwood */
.well-card__txt {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: clamp(1rem, 1.6vw, 1.6rem); color: var(--paper);
  /* subtle base gradient — just enough to seat the title */
  background: linear-gradient(to top, rgba(28,30,22,0.55) 0%, rgba(28,30,22,0.18) 60%, rgba(28,30,22,0) 100%);
}
/* deeper, taller gradient that fades in with the longer text on hover */
.well-card__txt::before {
  content: ""; position: absolute; inset: -4rem 0 0 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to top, rgba(18,20,14,0.92) 0%, rgba(18,20,14,0.72) 38%, rgba(18,20,14,0.3) 74%, rgba(18,20,14,0) 100%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.well-card:hover .well-card__txt::before { opacity: 1; }
.well-card__txt h3 { font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper); }
.well-card__txt p {
  font-size: 0.9rem; color: rgba(246,244,240,0.86); line-height: 1.55; max-width: 32rem;
  max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
  transition: max-height 0.7s var(--ease), opacity 0.5s var(--ease), margin-top 0.6s var(--ease);
}
.well-card:hover .well-card__txt p { max-height: 14rem; opacity: 1; margin-top: 0.55rem; }
.well-note { text-align: center; margin-top: clamp(1.6rem, 3vw, 2.6rem); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.76rem; color: var(--ink-55); }
/* Tablet — two tiles wide, descriptions always shown (no hover on touch). */
@media (max-width: 820px) {
  .well-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(180px, 38vw, 260px);
    grid-template-areas:
      "clay  clay"
      "water robes"
      "gua   books"
      "yoga  yoga";
  }
  .well-card__txt p { max-height: 14rem; opacity: 1; margin-top: 0.55rem; }
  .well-card__txt::before { opacity: 1; }
}
/* Phone — single column stack of full-bleed photos. */
@media (max-width: 540px) {
  .well-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(240px, 72vw, 340px);
    grid-template-areas: "clay" "water" "robes" "gua" "books" "yoga";
  }
  .well-card__txt p { max-width: none; }
}

/* ============================================================
   FACTS
   ============================================================ */
.facts { background: var(--paper-warm); }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.2rem) clamp(2.2rem, 5vw, 4.5rem); margin-top: clamp(2.5rem, 5vw, 4rem); counter-reset: fact; }
.fact { counter-increment: fact; border-top: 1px solid var(--line); padding-top: 1.4rem; transition: transform 0.5s var(--ease), border-color 0.5s var(--ease); }
.fact:hover { transform: translateY(-4px); border-color: var(--earth); }
.fact::before { content: counter(fact, decimal-leading-zero); font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.3em; color: var(--earth); display: block; margin-bottom: 1rem; }
.fact .num { font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.26em; color: var(--ink-55); display: block; margin-bottom: 0.55rem; text-transform: uppercase; }
.fact h3 { font-size: 0.98rem; letter-spacing: 0.18em; margin-bottom: 0.7rem; }
.fact p { color: var(--ink-70); }
@media (max-width: 860px) { .facts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .facts-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.6rem, 1.2vw, 1rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.gallery-grid figure { overflow: hidden; border-radius: 2px; cursor: zoom-in; position: relative; aspect-ratio: 4 / 5; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease), filter 0.6s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.05); filter: brightness(0.95); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(26,28,21,0.94); display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity 0.45s var(--ease); padding: 4vw; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 2px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox__close, .lightbox__nav { position: absolute; color: var(--paper); width: 54px; height: 54px; display: grid; place-items: center; font-size: 1.4rem; opacity: 0.8; transition: opacity 0.3s; }
.lightbox__close { top: 1.2rem; right: 1.4rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lightbox__nav.prev { left: 1rem; } .lightbox__nav.next { right: 1rem; }
.lightbox__close:hover, .lightbox__nav:hover { opacity: 1; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--green); color: var(--paper); }
.reviews .eyebrow { color: var(--sand); }
.reviews h2 { color: var(--paper); }
.reviews__top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.score { text-align: right; }
.score b { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: 0.04em; display: block; line-height: 1; }
.score span { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sand); }
.review-grid { columns: 3; column-gap: clamp(1rem, 2vw, 1.6rem); margin-top: clamp(2.6rem, 5vw, 4rem); }
.review { break-inside: avoid; margin-bottom: clamp(1rem, 2vw, 1.6rem); padding: 2.1rem 1.9rem 1.9rem; border: 1px solid rgba(246,244,240,0.14); border-radius: 2px; background: rgba(246,244,240,0.03); position: relative; transition: background 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease); }
.review::before { content: "\201C"; position: absolute; top: 0.5rem; right: 1.4rem; font-family: var(--font-display); font-size: 3.4rem; line-height: 1; color: rgba(220,209,196,0.22); pointer-events: none; }
.review:hover { background: rgba(246,244,240,0.06); border-color: rgba(246,244,240,0.28); transform: translateY(-3px); }
.review h3 { font-size: 0.8rem; letter-spacing: 0.16em; color: var(--sand); margin-bottom: 0.8rem; max-width: 16ch; }
.review p { font-size: 0.96rem; line-height: 1.62; color: rgba(246,244,240,0.9); font-style: italic; }
.review__by { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(246,244,240,0.12); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.66rem; color: var(--paper); }
.review__by span { color: rgba(246,244,240,0.55); }
@media (max-width: 900px) { .review-grid { columns: 2; } }
@media (max-width: 600px) { .review-grid { columns: 1; } }

/* ============================================================
   BOOKING / AVAILABILITY
   ============================================================ */
.book__layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; margin-top: clamp(2.4rem, 5vw, 3.5rem); }
@media (max-width: 880px) { .book__layout { grid-template-columns: 1fr; } }

.cal { background: var(--paper-warm); border: 1px solid var(--line); border-radius: 3px; padding: clamp(1.2rem, 2.5vw, 2rem); }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.cal__head .m { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.82rem; }
.cal__nav { display: flex; gap: 0.4rem; }
.cal__nav button { width: 38px; height: 38px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; transition: background 0.4s, color 0.4s; }
.cal__nav button:hover { background: var(--green); color: var(--paper); }
.cal__nav button:disabled { opacity: 0.25; cursor: default; }
.cal__months { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
.cal-month table { width: 100%; border-collapse: collapse; }
.cal-month caption { display: none; }
.cal-month th { font-family: var(--font-display); font-weight: 400; font-size: 0.58rem; letter-spacing: 0.12em; color: var(--ink-55); padding-bottom: 0.5rem; text-transform: uppercase; }
.cal-month td { text-align: center; padding: 2px; }
.cal-day { width: 100%; aspect-ratio: 1; border-radius: 50%; font-size: 0.86rem; display: grid; place-items: center; transition: background 0.25s, color 0.25s; position: relative; }
.cal-day.avail:hover { background: var(--sand); }
.cal-day.booked { color: var(--ink-55); text-decoration: line-through; cursor: not-allowed; opacity: 0.55; }
.cal-day.past { color: rgba(61,66,49,0.25); cursor: default; }
.cal-day.sel-start, .cal-day.sel-end { background: var(--green); color: var(--paper); }
.cal-day.in-range { background: var(--sand); border-radius: 0; }
.cal-day.empty { visibility: hidden; }
.cal__legend { display: flex; gap: 1.4rem; margin-top: 1.3rem; font-size: 0.74rem; color: var(--ink-70); flex-wrap: wrap; }
.cal__legend i { display: inline-block; width: 12px; height: 12px; border-radius: 50%; margin-right: 0.45rem; vertical-align: -1px; }
.cal__legend .av { background: var(--sand); } .cal__legend .bk { background: transparent; box-shadow: inset 0 0 0 1px var(--ink-55); }
.cal__note { font-size: 0.8rem; color: var(--ink-55); margin-top: 1rem; }

/* form */
.bform { display: grid; gap: 1.1rem; }
.bform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.64rem; color: var(--earth); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 0.98rem; color: var(--green);
  background: var(--paper); border: 1px solid var(--line); border-radius: 2px;
  padding: 0.85em 0.95em; width: 100%; transition: border-color 0.4s, box-shadow 0.4s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(61,66,49,0.08); }
.field textarea { resize: vertical; min-height: 110px; }
.bform__actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 0.4rem; }
.bform__msg { font-size: 0.9rem; }
.bform__msg.ok { color: var(--green); } .bform__msg.err { color: #9a4a3a; }
.summary { font-size: 0.9rem; color: var(--ink-70); min-height: 1.4em; }
.summary b { color: var(--green); }
@media (max-width: 480px) { .bform .row { grid-template-columns: 1fr; } }

/* ============================================================
   LOCATION
   ============================================================ */
.location { background: var(--paper-warm); }
.loc__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; margin-top: clamp(2.4rem,5vw,3.5rem); }
.loc__info p { color: var(--ink-70); }
.loc__info .addr { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.92rem; color: var(--green); line-height: 1.8; margin: 1.2rem 0; }
.loc__list { list-style: none; display: grid; gap: 0.9rem; margin-top: 1.6rem; }
.loc__list li { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: baseline; }
.loc__list .k { font-family: var(--font-display); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--earth); }
.loc__map { border-radius: 3px; overflow: hidden; min-height: 340px; border: 1px solid var(--line); }
.loc__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(0.3) contrast(0.95); }
@media (max-width: 820px) { .loc__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green); color: var(--paper); padding-block: clamp(3.5rem, 7vw, 6rem); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer__logo img { height: 40px; filter: invert(1) brightness(2.2); margin-bottom: 1.2rem; }
.footer__logo p { color: rgba(246,244,240,0.6); max-width: 22rem; font-size: 0.92rem; }
.footer h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.68rem; color: var(--sand); margin-bottom: 1.1rem; }
.footer a { color: rgba(246,244,240,0.85); }
.footer ul { list-style: none; display: grid; gap: 0.6rem; font-size: 0.95rem; }
.footer ul a:hover { color: var(--paper); }
.footer__bottom { margin-top: clamp(2.5rem,5vw,4rem); padding-top: 1.6rem; border-top: 1px solid rgba(246,244,240,0.14); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.74rem; color: rgba(246,244,240,0.55); letter-spacing: 0.04em; }
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr; gap: 2rem; } }

/* utility */
.nowrap { white-space: nowrap; }
