/* ============================================================
   CORFU RETREAT — V2 "From sunlight to candlelight"
   Elegant · luxurious · young. Sea view, silence, Greek soul.
   ============================================================ */

:root {
  /* palette — plaster, Aegean blues, shutter blue, terracotta */
  --ink: #0d1b24;
  --ink-soft: #40525e;
  --plaster: #f8f4ed;
  --plaster-deep: #efe8db;
  --aegean: #175a80;
  --aegean-deep: #0a2e42;
  --night: #071c2a;
  --shutter: #8fbcd9;
  --terra: #c2643d;
  --sand: #d9c39a;
  --white: #ffffff;

  --line: rgba(13, 27, 36, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);

  --f-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Instrument Sans', 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --gutter: clamp(20px, 4vw, 56px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--plaster);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--shutter); color: var(--aegean-deep); }

.container {
  width: min(1240px, 100% - var(--gutter) * 2);
  margin-inline: auto;
}

/* ---------- reveal-on-scroll ---------- */
.rv {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .12s; }
.rv-d2 { transition-delay: .24s; }
.rv-d3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--terra);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}
.eyebrow--light { color: var(--sand); }
.eyebrow--center::before { display: none; }

.display {
  font-family: var(--f-display);
  font-weight: 340;
  line-height: .98;
  letter-spacing: -0.02em;
}
.display em {
  font-style: italic;
  font-weight: 340;
  color: var(--aegean);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 44px);
  color: var(--white);
  transition: padding .45s var(--ease), background .45s var(--ease),
              color .45s var(--ease), box-shadow .45s var(--ease);
}
.nav.is-scrolled {
  padding-block: 13px;
  background: rgba(248, 244, 237, .88);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 21px;
  letter-spacing: .01em;
}
.nav__logo i {
  font-style: italic;
  color: var(--sand);
  transition: color .45s var(--ease);
}
.nav.is-scrolled .nav__logo i { color: var(--terra); }

.nav__links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  opacity: .85;
  transition: opacity .3s;
  padding-block: 4px;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__links a.active { opacity: 1; }
.nav__links a.active::after { transform: scaleX(1); }

.nav__book {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 12px 26px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.nav__book:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.nav.is-scrolled .nav__book:hover { background: var(--ink); color: var(--plaster); border-color: var(--ink); }

.nav__toggle { display: none; }

/* mobile nav */
@media (max-width: 860px) {
  .nav__links, .nav__book { display: none; }
  .nav__toggle {
    display: grid;
    place-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: none;
    border: 0;
    cursor: pointer;
    color: inherit;
  }
  .nav__toggle span {
    width: 24px; height: 1.6px;
    background: currentColor;
    transition: transform .35s var(--ease), opacity .25s;
  }
  .nav.menu-open .nav__toggle span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  .nav.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

  .nav.menu-open {
    background: var(--night);
    color: var(--white);
    box-shadow: none;
  }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-content: center;
    gap: 8px;
    text-align: center;
    background: var(--night);
    color: var(--plaster);
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s var(--ease);
  }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mobile-menu a {
    font-family: var(--f-display);
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.35;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
  }
  .mobile-menu.open a { opacity: 1; transform: none; }
  .mobile-menu.open a:nth-child(1) { transition-delay: .10s; }
  .mobile-menu.open a:nth-child(2) { transition-delay: .16s; }
  .mobile-menu.open a:nth-child(3) { transition-delay: .22s; }
  .mobile-menu.open a:nth-child(4) { transition-delay: .28s; }
  .mobile-menu a em { font-style: italic; color: var(--sand); }
}
@media (min-width: 861px) { .mobile-menu { display: none; } }

/* ============================================================
   HERO — day fades into night
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--night);
}

.hero__layer {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center 62%;
  animation: heroZoom 26s var(--ease) infinite alternate;
}
.hero__layer--night {
  opacity: 0;
  animation: heroZoom 26s var(--ease) infinite alternate,
             nightFall 26s ease-in-out infinite;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
@keyframes nightFall {
  0%, 38%  { opacity: 0; }
  50%, 88% { opacity: 1; }
  100%     { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__layer { animation: none; }
  .hero__layer--night { animation: none; opacity: 0; }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 28, 42, .42) 0%, rgba(7, 28, 42, 0) 32%, rgba(7, 28, 42, .12) 55%, rgba(7, 28, 42, .84) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1240px, 100% - var(--gutter) * 2);
  margin-inline: auto;
  padding-top: 110px;
  padding-bottom: clamp(90px, 14vh, 150px);
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__eyebrow::after {
  content: "";
  flex: 0 0 44px;
  height: 1px;
  background: var(--sand);
  opacity: .6;
}

.hero__title {
  font-size: clamp(2.9rem, 8.4vw, 7.2rem);
  max-width: 13ch;
  text-wrap: balance;
  margin-bottom: 30px;
  text-shadow: 0 2px 40px rgba(7, 28, 42, .35);
}
.hero__title em { color: var(--sand); }

.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero__tagline {
  max-width: 46ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  color: rgba(248, 244, 237, .92);
  text-shadow: 0 1px 18px rgba(7, 28, 42, .55);
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero__proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.proof-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 13px 20px;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  background: rgba(7, 28, 42, .34);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: border-color .3s, transform .3s var(--ease);
}
.proof-chip:hover { border-color: rgba(255,255,255,.45); transform: translateY(-2px); }
.proof-chip b {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--sand);
}
.proof-chip span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, .75);
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, .72);
}
@media (max-width: 640px) {
  .hero__title { font-size: clamp(2.35rem, 11.5vw, 2.9rem); margin-bottom: 22px; }
  .hero__content { padding-bottom: 96px; }
  .hero__proof { width: 100%; flex-wrap: nowrap; }
  .proof-chip { flex: 1; padding: 11px 14px; }
  .proof-chip b { font-size: 1.2rem; }
  .proof-chip span { font-size: 9.5px; letter-spacing: .1em; }
  .btn { padding: 15px 28px; }
}

.hero__scroll i {
  width: 1px;
  height: 44px;
  background: linear-gradient(rgba(248,244,237,0), rgba(248,244,237,.85));
  animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn--solid {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 14px 34px -14px rgba(194, 100, 61, .55);
}
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(194, 100, 61, .65); }
.btn--outline {
  border: 1px solid rgba(255, 255, 255, .55);
  color: var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--dark {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn--dark:hover { background: var(--ink); color: var(--plaster); border-color: var(--ink); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--night);
  color: var(--plaster);
  border-block: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  padding: 17px 0;
}
.marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__set {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--f-display);
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.marquee__set span { padding: 0 18px; opacity: .92; }
.marquee__set i {
  font-style: normal;
  color: var(--sand);
  font-size: .6rem;
  transform: translateY(-1px);
}
.marquee__set em { font-style: italic; color: var(--shutter); }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   INTRO — statement + arch triptych
   ============================================================ */
.intro { padding: clamp(90px, 12vw, 160px) 0 clamp(70px, 9vw, 120px); }

.intro__head {
  max-width: 880px;
  margin-bottom: clamp(56px, 8vw, 100px);
}
.intro__head .eyebrow { margin-bottom: 26px; }
.intro__title { font-size: clamp(2.1rem, 4.6vw, 4rem); }
.intro__title .t-terra { color: var(--terra); }
.intro__lead {
  margin-top: 28px;
  max-width: 56ch;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--ink-soft);
}

.arches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 40px);
  align-items: end;
}
.arch {
  position: relative;
}
.arch__frame {
  border-radius: 999px 999px 18px 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4.1;
  background: var(--plaster-deep);
}
.arch:nth-child(2) .arch__frame { aspect-ratio: 3 / 4.6; }
.arch__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.arch:hover .arch__frame img { transform: scale(1.06); }
.arch figcaption {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.arch figcaption b {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.06rem;
  color: var(--ink);
}
@media (max-width: 700px) {
  .arches { grid-template-columns: 1fr; gap: 34px; }
  .arch__frame, .arch:nth-child(2) .arch__frame { aspect-ratio: 4 / 4.4; }
}

/* ============================================================
   PILLARS — 01 / 02 / 03
   ============================================================ */
.pillars {
  background: var(--plaster-deep);
  padding: clamp(90px, 11vw, 150px) 0;
}
.pillars__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: clamp(60px, 8vw, 110px);
}
.pillars__title { font-size: clamp(2.1rem, 4.6vw, 3.8rem); max-width: 15ch; }
.pillars__note { max-width: 34ch; color: var(--ink-soft); font-size: 1.02rem; }

.pillar {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding: clamp(44px, 6vw, 80px) 0;
}
.pillar + .pillar { border-top: 1px solid var(--line); }
.pillar:nth-child(even) .pillar__media { order: 2; }

.pillar__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 70px -30px rgba(13, 27, 36, .38);
}
.pillar__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.pillar:hover .pillar__media img { transform: scale(1.05); }
.pillar__badge {
  position: absolute;
  left: 18px; bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(7, 28, 42, .55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--plaster);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pillar__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 90, 128, .55);
  margin-bottom: 10px;
}
.pillar__title {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  margin-bottom: 20px;
}
.pillar__text {
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 16px;
}
.pillar__list {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.pillar__list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: .95rem;
  color: var(--ink-soft);
}
.pillar__list li::before {
  content: "—";
  color: var(--terra);
  flex: none;
}

@media (max-width: 860px) {
  .pillar { grid-template-columns: 1fr; gap: 26px; }
  .pillar:nth-child(even) .pillar__media { order: 0; }
}

/* ============================================================
   QUOTE — full-bleed, slow parallax
   ============================================================ */
.quote {
  position: relative;
  min-height: 82svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  color: var(--white);
}
.quote__bg {
  position: absolute;
  inset: -18% 0;
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}
.quote__veil {
  position: absolute;
  inset: 0;
  background: rgba(7, 28, 42, .56);
}
.quote__inner {
  position: relative;
  z-index: 2;
  padding: 100px var(--gutter);
  max-width: 900px;
}
.quote__mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 4rem;
  line-height: 0;
  color: var(--sand);
  display: block;
  margin-bottom: 34px;
}
.quote__text {
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  text-wrap: balance;
}
.quote__text em { color: var(--shutter); }
.quote__attr {
  margin-top: 30px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: clamp(90px, 11vw, 150px) 0; }
.gallery__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.gallery__title { font-size: clamp(2.1rem, 4.6vw, 3.8rem); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(120px, 16vw, 220px);
  gap: clamp(10px, 1.6vw, 20px);
}
.g-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--plaster-deep);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease-out);
}
.g-item:hover img { transform: scale(1.07); }
.g-item::after {
  content: attr(data-label);
  position: absolute;
  left: 16px; bottom: 13px;
  color: var(--white);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  text-shadow: 0 1px 14px rgba(7, 28, 42, .8);
}
.g-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,28,42,0) 55%, rgba(7,28,42,.55));
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.g-item:hover::after { opacity: 1; transform: none; }
.g-item:hover::before { opacity: 1; }

.g-1 { grid-column: span 7; grid-row: span 2; }
.g-2 { grid-column: span 5; grid-row: span 1; }
.g-3 { grid-column: span 5; grid-row: span 1; }
.g-4 { grid-column: span 4; grid-row: span 1; }
.g-5 { grid-column: span 4; grid-row: span 1; }
.g-6 { grid-column: span 4; grid-row: span 1; }
@media (max-width: 760px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 34vw; }
  .g-1 { grid-column: span 2; grid-row: span 2; }
  .g-2, .g-3, .g-4, .g-5 { grid-column: span 1; }
  .g-6 { grid-column: span 2; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  border-block: 1px solid var(--line);
  background: var(--plaster);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(34px, 4.5vw, 60px) 20px;
  text-align: center;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat b {
  display: block;
  font-family: var(--f-display);
  font-weight: 340;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1;
  color: var(--aegean);
  margin-bottom: 10px;
}
.stat b i { font-style: italic; font-size: .55em; color: var(--terra); }
.stat span {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 700px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--night);
  color: var(--plaster);
  padding: clamp(90px, 11vw, 150px) 0;
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: "";
  position: absolute;
  top: -220px; right: -220px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 188, 217, .14), transparent 65%);
}
.reviews__head { text-align: center; margin-bottom: clamp(50px, 6vw, 80px); }
.reviews__title {
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  margin-top: 24px;
}
.reviews__title em { color: var(--shutter); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .045);
  transition: transform .45s var(--ease), border-color .45s;
}
.review-card:hover { transform: translateY(-6px); border-color: rgba(216, 195, 154, .45); }
.review-card__stars {
  color: var(--sand);
  font-size: 13px;
  letter-spacing: 4px;
}
.review-card__text {
  font-family: var(--f-display);
  font-size: 1.18rem;
  line-height: 1.5;
  font-weight: 340;
  flex: 1;
}
.review-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, .6);
}
@media (max-width: 860px) { .reviews__grid { grid-template-columns: 1fr; } }

.reviews__badges {
  margin-top: clamp(44px, 5vw, 64px);
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  transition: border-color .35s, transform .35s var(--ease);
}
.badge:hover { border-color: var(--sand); transform: translateY(-3px); }
.badge b {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--sand);
}
.badge div { display: grid; line-height: 1.4; }
.badge div span:first-child { font-weight: 600; font-size: .92rem; }
.badge div span:last-child {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, .6);
}

/* ============================================================
   NIGHT CTA
   ============================================================ */
.night-cta {
  position: relative;
  min-height: 92svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.night-cta__bg {
  position: absolute;
  inset: -12% 0;
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}
.night-cta__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,28,42,.6), rgba(7,28,42,.28) 45%, rgba(7,28,42,.72));
}
.night-cta__card {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(40px, 6vw, 72px) clamp(26px, 5vw, 70px);
  margin-inline: var(--gutter);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(7, 28, 42, .38);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.night-cta__title {
  font-size: clamp(2.3rem, 5.4vw, 4.2rem);
  margin: 22px 0 18px;
}
.night-cta__title em { color: var(--sand); }
.night-cta__text {
  max-width: 46ch;
  margin: 0 auto 34px;
  color: rgba(248, 244, 237, .85);
}
.night-cta__row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.night-cta__meta {
  margin-top: 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, .55);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--night);
  color: rgba(248, 244, 237, .72);
  padding: clamp(50px, 7vw, 90px) 0 40px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 34px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer__brand {
  font-family: var(--f-display);
  font-size: 1.9rem;
  color: var(--plaster);
}
.footer__brand i { font-style: italic; color: var(--sand); }
.footer__loc { margin-top: 8px; font-size: .92rem; }
.footer__links {
  display: flex;
  gap: 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer__links a { opacity: .75; transition: opacity .3s; }
.footer__links a:hover { opacity: 1; }
.footer__base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: .85rem;
  color: rgba(248, 244, 237, .5);
}

/* meander divider */
.meander {
  height: 14px;
  margin: 0 auto;
  width: min(340px, 60%);
  opacity: .55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='14' viewBox='0 0 28 14' fill='none' stroke='%23d9c39a' stroke-width='1.4'%3E%3Cpath d='M0 1h20v12h-8V5h-4v4h24'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
}

/* sticky mobile bar */
.mobile-bar {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 80;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(7, 28, 42, .78);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .14);
  transform: translateY(120%);
  transition: transform .5s var(--ease);
}
.mobile-bar.show { transform: none; }
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 13px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mobile-bar a.primary { background: var(--terra); color: var(--white); }
.mobile-bar a.ghost { border: 1px solid rgba(255, 255, 255, .3); color: var(--plaster); }
@media (max-width: 860px) { .mobile-bar { display: flex; } }

/* ============================================================
   SUB-PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 64svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--night);
}
.page-hero--tall { min-height: 78svh; }
.page-hero__bg {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center 55%;
  animation: heroZoom 26s var(--ease) infinite alternate;
}
.page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,28,42,.5) 0%, rgba(7,28,42,.08) 40%, rgba(7,28,42,.8) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  width: min(1240px, 100% - var(--gutter) * 2);
  margin-inline: auto;
  padding: 150px 0 clamp(56px, 8vh, 90px);
}
.page-hero__content .eyebrow { color: var(--sand); }
.page-hero__title {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  max-width: 16ch;
  text-wrap: balance;
  margin-top: 22px;
  text-shadow: 0 2px 40px rgba(7, 28, 42, .35);
}
.page-hero__title em { color: var(--sand); }
.page-hero__sub {
  margin-top: 20px;
  max-width: 52ch;
  color: rgba(248, 244, 237, .9);
  text-shadow: 0 1px 18px rgba(7, 28, 42, .55);
}

/* breadcrumb-ish page marquee reuse */
.marquee--thin { padding: 13px 0; }

/* ============================================================
   GENERIC SECTION SHELL
   ============================================================ */
.section { padding: clamp(80px, 10vw, 140px) 0; }
.section--alt { background: var(--plaster-deep); }
.section__head { max-width: 860px; margin-bottom: clamp(44px, 6vw, 72px); }
.section__title {
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  margin-top: 22px;
}
.section__title .t-terra { color: var(--terra); }
.section__lead {
  margin-top: 22px;
  max-width: 58ch;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  color: var(--ink-soft);
}

/* ============================================================
   VILLA — story split
   ============================================================ */
.vstory {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.vstory__text p { color: var(--ink-soft); margin-bottom: 18px; max-width: 54ch; }
.vstory__text p.lead {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.4;
  font-weight: 340;
  color: var(--ink);
  margin-bottom: 26px;
}
.vstory__text p.lead em { font-style: italic; color: var(--aegean); }
.vstory__media { position: relative; }
.vstory__media .arch__frame { aspect-ratio: 3 / 3.9; }
.vstory__stamp {
  position: absolute;
  left: -26px; bottom: 34px;
  background: var(--terra);
  color: var(--white);
  border-radius: 999px;
  width: 108px; height: 108px;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.5;
  box-shadow: 0 18px 40px -16px rgba(194, 100, 61, .6);
  rotate: -8deg;
}
.vstory__stamp b {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: 0;
  text-transform: none;
}
@media (max-width: 860px) {
  .vstory { grid-template-columns: 1fr; }
  .vstory__stamp { left: auto; right: 16px; bottom: -22px; }
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}
.amen-card {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--plaster);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s var(--ease);
}
.amen-card:hover {
  transform: translateY(-5px);
  border-color: rgba(194, 100, 61, .4);
  box-shadow: 0 30px 60px -34px rgba(13, 27, 36, .3);
}
.amen-card__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.9rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 90, 128, .5);
  margin-bottom: 16px;
}
.amen-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.amen-card p { color: var(--ink-soft); font-size: .96rem; }
.amen-card ul {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.amen-card li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: .92rem;
  color: var(--ink-soft);
}
.amen-card li::before { content: "—"; color: var(--terra); flex: none; }
@media (max-width: 860px) { .amen__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FULL GALLERY + LIGHTBOX
   ============================================================ */
.gfull {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(110px, 13vw, 190px);
  gap: clamp(10px, 1.4vw, 18px);
}
.gfull .g-item { cursor: zoom-in; }
.gfull .g-item:nth-child(9n+1) { grid-column: span 4; grid-row: span 2; }
.gfull .g-item:nth-child(9n+2) { grid-column: span 2; grid-row: span 1; }
.gfull .g-item:nth-child(9n+3) { grid-column: span 2; grid-row: span 1; }
.gfull .g-item:nth-child(9n+4) { grid-column: span 2; grid-row: span 1; }
.gfull .g-item:nth-child(9n+5) { grid-column: span 2; grid-row: span 1; }
.gfull .g-item:nth-child(9n+6) { grid-column: span 2; grid-row: span 1; }
.gfull .g-item:nth-child(9n+7) { grid-column: span 2; grid-row: span 2; }
.gfull .g-item:nth-child(9n+8) { grid-column: span 4; grid-row: span 2; }
.gfull .g-item:nth-child(9n+9) { grid-column: span 2; grid-row: span 1; }
@media (max-width: 760px) {
  .gfull { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 34vw; }
  .gfull .g-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gfull .g-item:nth-child(5n+1) { grid-column: span 2 !important; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 28, 42, .93);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: min(1200px, 88vw);
  max-height: 82vh;
  border-radius: 14px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .6);
}
.lightbox button {
  position: absolute;
  z-index: 2;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .06);
  color: var(--plaster);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background .3s, border-color .3s;
  display: grid;
  place-items: center;
}
.lightbox button:hover { background: rgba(255, 255, 255, .16); border-color: var(--sand); }
.lightbox__close { top: 22px; right: 26px; }
.lightbox__prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox__count {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .26em;
  color: rgba(248, 244, 237, .7);
}
@media (max-width: 700px) {
  .lightbox button { width: 42px; height: 42px; font-size: 21px; }
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
}

/* ============================================================
   LOCATION — map + nearby
   ============================================================ */
.lux-map-shell {
  --navy: #0d1b24;
  --brass: #c2643d;
  --ivory: #f8f4ed;
  --sand-2: #e9dfcd;
  font-family: var(--f-body);
  letter-spacing: .01em;
  color: var(--navy);
  background: var(--ivory);
  position: relative;
  width: 100%;
  height: clamp(420px, 62vh, 620px);
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 34px 70px -40px rgba(13, 27, 36, .35);
}
.lux-map-canvas { position: absolute; inset: 0; z-index: 1; background: #dfe9ef; }
.lux-map-shell .lux-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 20px 24px;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  pointer-events: none;
}
.lux-map-shell .lux-header > * { pointer-events: auto; }
.lux-header-left {
  background: rgba(248, 244, 237, .92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 14px 22px 14px 18px;
  border-left: 4px solid var(--brass);
  border-radius: 16px;
}
.lux-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 25px;
  line-height: 1;
  color: var(--navy);
  margin: 0;
}
.lux-title em { font-style: italic; color: var(--brass); }
.lux-scale {
  position: absolute;
  right: 24px; bottom: 24px;
  z-index: 500;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--navy);
  text-transform: uppercase;
}
.lux-scale-bar { display: flex; height: 6px; margin-bottom: 6px; border: 1px solid var(--navy); }
.lux-scale-bar div { flex: 1; background: var(--navy); }
.lux-scale-bar div:nth-child(even) { background: var(--ivory); }
.lux-scale-label { display: flex; justify-content: space-between; width: 80px; }
.lux-zoom {
  position: absolute;
  right: 24px; top: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--brass);
  border-radius: 14px;
  overflow: hidden;
}
.lux-zoom button {
  width: 36px; height: 36px;
  background: var(--ivory);
  border: 0;
  color: var(--navy);
  cursor: pointer;
  transition: background .16s;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lux-zoom button:hover { background: var(--sand-2); }
.lux-pin-wrap { background: transparent !important; border: 0 !important; }
.lux-pin { position: relative; display: flex; align-items: center; justify-content: center; }
.lux-pin-dot {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--bg);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1.5px var(--ring), 0 4px 14px rgba(13, 27, 36, .25);
  transition: transform .22s cubic-bezier(.2, .8, .2, 1);
}
.lux-pin:hover .lux-pin-dot { transform: scale(1.1); }
.lux-pin-label {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
  line-height: 1.15;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  pointer-events: none;
  text-shadow: 0 0 10px #f8f4ed, 0 0 4px #f8f4ed, 0 1px 0 rgba(255,255,255,.5);
}
.lux-pin-label[data-dir="top"] { top: auto; bottom: calc(100% + 6px); }
.lux-pin-label[data-dir="right"] { top: 50%; left: calc(100% + 8px); transform: translateY(-50%); }
.lux-pin-label[data-dir="left"] { top: 50%; left: auto; right: calc(100% + 8px); transform: translateY(-50%); }
.lux-popup-wrap .leaflet-popup-content-wrapper {
  background: #f8f4ed;
  color: #0d1b24;
  border-radius: 12px;
  box-shadow: 0 20px 40px -20px rgba(13, 27, 36, .35);
  padding: 0;
  border-top: 2px solid #c2643d;
}
.lux-popup-wrap .leaflet-popup-content {
  margin: 0;
  padding: 16px 20px 16px 18px;
  min-width: 220px;
  font-family: var(--f-body);
}
.lux-popup-wrap .leaflet-popup-tip { background: #f8f4ed; box-shadow: none; }
.lux-popup-kicker {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #c2643d;
  margin-bottom: 6px;
  font-weight: 600;
}
.lux-popup-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.05;
  margin-bottom: 6px;
}
.lux-popup-body { font-size: 12.5px; line-height: 1.45; opacity: .85; }
.lux-attrib {
  position: absolute;
  right: 8px; bottom: 4px;
  z-index: 400;
  font-size: 9px;
  color: #0d1b24;
  opacity: .5;
  letter-spacing: .04em;
}
.lux-attrib a:hover { text-decoration: underline; }
.lux-map-shell .leaflet-container { background: #f8f4ed; font-family: var(--f-body); }

.near__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
}
.near-card {
  position: relative;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s var(--ease);
}
.near-card:hover {
  transform: translateY(-5px);
  border-color: rgba(194, 100, 61, .45);
  box-shadow: 0 32px 60px -34px rgba(13, 27, 36, .28);
}
.near-card__icon {
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .35s, border-color .35s;
}
.near-card:hover .near-card__icon { border-color: rgba(194,100,61,.5); background: rgba(194, 100, 61, .07); }
.near-card__kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 8px;
}
.near-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.65rem;
  margin-bottom: 4px;
}
.near-card__meta {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.near-card p:last-child { color: var(--ink-soft); font-size: .95rem; flex: 1; }
@media (max-width: 960px) { .near__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .near__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { max-width: 880px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--terra); }
.faq-item summary i {
  font-family: var(--f-body);
  font-style: normal;
  flex: none;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 17px;
  color: var(--terra);
  transition: transform .4s var(--ease), background .3s, color .3s;
}
.faq-item[open] summary i { transform: rotate(45deg); background: var(--terra); color: var(--white); border-color: var(--terra); }
.faq-item__body {
  padding: 0 4px 28px;
  max-width: 68ch;
  color: var(--ink-soft);
}

/* ============================================================
   BOOK — calendar, cards, contact
   ============================================================ */
.calendar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 40px);
  box-shadow: 0 34px 70px -46px rgba(13, 27, 36, .35);
}
.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.calendar__nav {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
}
.calendar__nav:hover { background: var(--ink); color: var(--plaster); border-color: var(--ink); }
.calendar__months {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 4vw, 56px);
}
.calendar__month h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.45rem;
  text-align: center;
  margin-bottom: 16px;
}
.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.calendar__weekdays span {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
}
.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.calendar__day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: .88rem;
  border-radius: 10px;
  transition: background .25s, color .25s;
}
.calendar__day--empty { visibility: hidden; }
.calendar__day--free { cursor: pointer; color: var(--ink); }
.calendar__day--free:hover { background: var(--terra); color: var(--white); }
.calendar__day--past { color: rgba(13, 27, 36, .28); }
.calendar__day--booked {
  color: rgba(13, 27, 36, .4);
  background: var(--plaster-deep);
  text-decoration: line-through;
  text-decoration-color: rgba(194, 100, 61, .6);
}
.calendar__day--today { box-shadow: inset 0 0 0 1.5px var(--aegean); }
.calendar__legend {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.calendar__legend span { display: flex; align-items: center; gap: 8px; }
.dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dot--free { background: var(--terra); }
.dot--booked { background: var(--plaster-deep); box-shadow: inset 0 0 0 1px var(--line); }
.dot--past { background: rgba(13, 27, 36, .18); }
.calendar__error {
  text-align: center;
  padding: 30px 20px;
  color: var(--ink-soft);
  font-size: .95rem;
  grid-column: 1 / -1;
}
@media (max-width: 760px) {
  .calendar__months { grid-template-columns: 1fr; }
  .calendar__month:last-child { display: none; }
}

.quote-cta {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.quote-cta .btn { min-width: 260px; }
.quote-cta__hint { margin-top: 12px; font-size: .9rem; color: var(--ink-soft); }

.platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 28px);
  max-width: 980px;
  margin-inline: auto;
}
.platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(30px, 4vw, 46px);
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s var(--ease);
}
.platform-card:hover {
  transform: translateY(-5px);
  border-color: rgba(194, 100, 61, .45);
  box-shadow: 0 34px 66px -36px rgba(13, 27, 36, .3);
}
.platform-card__badge {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  border: 1px solid rgba(194, 100, 61, .35);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 8px;
}
.platform-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}
.platform-card p { color: var(--ink-soft); font-size: .96rem; max-width: 40ch; }
.platform-card__arrow {
  margin-top: auto;
  padding-top: 18px;
  font-size: 1.5rem;
  color: var(--terra);
  transition: transform .35s var(--ease);
}
.platform-card:hover .platform-card__arrow { transform: translateX(8px); }
@media (max-width: 760px) { .platforms { grid-template-columns: 1fr; } }

.host {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}
.host__text > p { color: var(--ink-soft); margin-bottom: 16px; max-width: 56ch; }
.contact-card {
  position: sticky;
  top: 110px;
  background: var(--night);
  color: var(--plaster);
  border-radius: 22px;
  padding: clamp(28px, 3.4vw, 42px);
  box-shadow: 0 40px 80px -44px rgba(7, 28, 42, .8);
}
.contact-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.7rem;
  margin-bottom: 12px;
}
.contact-card h3 em { font-style: italic; color: var(--sand); }
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  transition: color .3s;
}
.contact-row:hover { color: var(--sand); }
.contact-row:first-of-type { border-top: 0; }
.contact-row__icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
  color: var(--sand);
}
.contact-row__icon svg { width: 19px; height: 19px; }
.contact-row b { display: block; font-weight: 600; font-size: .95rem; }
.contact-row span span {
  display: block;
  font-size: .84rem;
  color: rgba(248, 244, 237, .65);
}
@media (max-width: 900px) {
  .host { grid-template-columns: 1fr; }
  .contact-card { position: static; }
}

.inquiry {
  margin-top: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(26px, 3.4vw, 40px);
}
.inquiry h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.inquiry__sub { color: var(--ink-soft); font-size: .95rem; margin-bottom: 24px; }
.inquiry__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.inquiry__row--3 { grid-template-columns: 1fr 1fr 84px; }
.inquiry label { display: block; margin-bottom: 14px; }
.inquiry label span {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.inquiry input, .inquiry select, .inquiry textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--plaster);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  transition: border-color .25s, box-shadow .25s;
}
.inquiry input:focus, .inquiry select:focus, .inquiry textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(194, 100, 61, .16);
}
.inquiry textarea { resize: vertical; }
.inquiry__status { margin-top: 14px; font-size: .9rem; }
.inquiry__status.is-ok { color: #2f7d5b; }
.inquiry__status.is-error { color: #b03a2e; }
@media (max-width: 640px) {
  .inquiry__row, .inquiry__row--3 { grid-template-columns: 1fr; }
}

/* compact night CTA for sub-pages */
.night-cta--compact { min-height: 74svh; }

/* ---------- language switcher ---------- */
.lang-switch { position: relative; display: flex; align-items: center; }
.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .85;
  padding-block: 4px;
  transition: opacity .3s;
}
.lang-switch__btn:hover { opacity: 1; }
.lang-switch__btn i {
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s var(--ease);
}
.lang-switch.open .lang-switch__btn i { transform: rotate(-135deg) translateY(2px); }
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 16px);
  right: -10px;
  min-width: 176px;
  padding: 8px;
  background: var(--plaster);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(7, 28, 42, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.lang-switch.open .lang-switch__menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav__links .lang-switch__menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 12px;
  letter-spacing: .12em;
  opacity: .8;
}
.nav__links .lang-switch__menu a::after { display: none; }
.nav__links .lang-switch__menu a:hover { background: var(--plaster-deep); opacity: 1; }
.nav__links .lang-switch__menu a.current { opacity: 1; color: var(--terra); }

/* language row inside the mobile menu (dark backdrop) */
.mobile-menu__langs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.mobile-menu .mobile-menu__langs a {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
}
.mobile-menu .mobile-menu__langs a.current {
  background: var(--plaster);
  color: var(--night);
  border-color: var(--plaster);
}
