/* =========================================================
   Blue Water Views 10 — direct booking site
   Boutique hotel design language
   ========================================================= */

:root {
  /* bone/ink palette */
  --bone: #F5F1EA;
  --bone-2: #EDE7DB;      /* warmer tint for section bands */
  --ink: #14201C;
  --ink-soft: #3A463F;
  --ink-mute: #7A8379;
  --rule: rgba(20, 32, 28, 0.14);
  --rule-soft: rgba(20, 32, 28, 0.08);

  /* accents */
  --teal: #2B4C51;           /* deep ocean ink — primary action */
  --teal-deep: #1B3438;
  --sand: #D9C9A8;           /* warm sand detail */
  --sand-soft: #E6DBC2;

  /* type */
  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --body: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --page-max: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 16px;
}

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

/* ---------- type system ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.02;
  font-feature-settings: "liga", "dlig";
}
.display--italic { font-style: italic; font-weight: 400; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
}
.eyebrow-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.body-lg {
  font-size: 19px;
  line-height: 1.58;
  color: var(--ink-soft);
  text-wrap: pretty;
  font-weight: 300;
}
.body-md { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-transform: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--bone); }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: rgba(245,241,234,0.12); color: var(--bone); border-color: rgba(245,241,234,0.35); backdrop-filter: blur(8px); }
.btn-light:hover { background: rgba(245,241,234,0.22); }
.btn-light-solid { background: var(--bone); color: var(--ink); }
.btn-light-solid:hover { background: #fff; }

/* ---------- layout ---------- */
.container {
  max-width: var(--page-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: clamp(80px, 10vw, 150px) 0; }
.section-tight { padding: clamp(60px, 7vw, 100px) 0; }
.band-warm { background: var(--bone-2); }
.band-dark { background: var(--teal-deep); color: var(--bone); }

.rule { height: 1px; background: var(--rule); width: 100%; }
.rule-soft { height: 1px; background: var(--rule-soft); width: 100%; }

/* Section header: eyebrow + index number */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  padding-bottom: 56px;
}
.section-head__left { display: flex; flex-direction: column; gap: 20px; }
.section-head__label {
  display: flex; align-items: center; gap: 14px;
}
.section-head__label::before {
  content: ""; width: 32px; height: 1px; background: var(--ink);
}
.section-head__title {
  font-size: clamp(42px, 5.5vw, 76px);
}
.section-head__intro {
  max-width: 460px;
}

@media (max-width: 820px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 80;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom-color: var(--rule);
  color: var(--ink);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.nav--over-hero { color: var(--bone); }
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.01em;
  color: inherit;
  text-decoration: none;
}
.nav__brand-mark {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid currentColor;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0;
}
.nav__brand-name { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.nav__brand-top { font-size: 17px; letter-spacing: 0.005em; }
.nav__brand-sub {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.75;
}
.nav__logo { height: 50px; width: auto; display: block; }
.nav--over-hero .nav__logo--dark { display: none; }
.nav--over-hero .nav__logo--light { display: block; filter: drop-shadow(0 1px 10px rgba(11,22,20,0.5)); }
.nav--scrolled .nav__logo--light { display: none; }
.nav--scrolled .nav__logo--dark { display: block; }
.nav__links { display: flex; gap: 36px; }
.nav__link {
  font-size: 13px; letter-spacing: 0.03em;
  color: inherit; text-decoration: none; opacity: 0.85;
  font-weight: 400;
}
.nav__link:hover { opacity: 1; }
.nav__cta {
  padding: 11px 20px; border-radius: 999px;
  font-size: 12.5px; letter-spacing: 0.04em;
  border: 1px solid currentColor;
  color: inherit; text-decoration: none;
  transition: all .2s ease;
}
.nav--over-hero .nav__cta { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.nav--scrolled .nav__cta { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.nav__cta:hover { transform: translateY(-1px); }

@media (max-width: 900px) {
  .nav__links { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--bone);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.hero__img {
  position: absolute; inset: 0;
  background-image: url(images/hero-balcony-view.jpg);
  background-size: cover;
  background-position: center 35%;
  z-index: 0;
}
.hero__img::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,22,20,0.55) 0%, rgba(11,22,20,0.10) 26%, rgba(11,22,20,0.18) 52%, rgba(11,22,20,0.80) 100%);
}
.hero__top {
  position: relative; z-index: 2;
  padding: 110px var(--gutter) 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px;
}
.hero__locator {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.9;
}
.hero__locator-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bone); }
.hero__rating-chip {
  display: flex; align-items: stretch; gap: 0;
  background: rgba(20,32,28,0.35);
  border: 1px solid rgba(245,241,234,0.25);
  backdrop-filter: blur(14px);
  border-radius: 8px;
  overflow: hidden;
  padding: 14px 16px;
  color: var(--bone);
  max-width: 340px;
}
.hero__rating-num {
  font-family: var(--display);
  font-size: 48px;
  line-height: 0.9;
  padding-right: 16px;
  border-right: 1px solid rgba(245,241,234,0.25);
  display: flex; align-items: center;
}
.hero__rating-text {
  padding-left: 16px; display: flex; flex-direction: column; justify-content: center; gap: 4px;
}
.hero__rating-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; }
.hero__rating-sub { font-size: 13px; line-height: 1.35; }

.hero__content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 60px;
  align-items: end;
}
.hero__headline-wrap { display: flex; flex-direction: column; gap: 18px; }
.hero__eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sand);
  text-shadow: 0 1px 10px rgba(11,22,20,0.5);
}
.hero__headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(52px, 8vw, 118px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(11,22,20,0.4);
}
.hero__headline em {
  font-style: italic;
  font-weight: 400;
}
.hero__headline .sand {
  color: var(--sand);
}
.hero__sub {
  font-size: 16px;
  line-height: 1.55;
  max-width: 360px;
  color: rgba(245,241,234,0.92);
  text-shadow: 0 1px 14px rgba(11,22,20,0.55);
}
.hero__cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero__aside { display: flex; flex-direction: column; gap: 20px; }

/* hero booking search */
.hero-search {
  background: rgba(245,241,234,0.13);
  border: 1px solid rgba(245,241,234,0.30);
  backdrop-filter: blur(16px) saturate(130%);
  border-radius: 14px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  max-width: 420px;
}
.hero-search__row { display: flex; gap: 10px; }
.hero-search__field { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.hero-search__field > span {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,241,234,0.82);
}
.hero-search__field input,
.hero-search__field select {
  background: rgba(245,241,234,0.95);
  border: 1px solid transparent; border-radius: 8px;
  padding: 11px 12px;
  font-family: var(--mono); font-size: 13px; color: var(--ink);
  width: 100%; box-sizing: border-box; -webkit-appearance: none; appearance: none;
}
.hero-search__field input:focus,
.hero-search__field select:focus { outline: 2px solid var(--sand); outline-offset: 1px; }
.hero-search__btn {
  background: var(--bone); color: var(--ink); border: none; border-radius: 999px;
  padding: 14px 18px; cursor: pointer;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em;
  transition: transform .15s ease, background .2s ease;
}
.hero-search__btn:hover { transform: translateY(-1px); background: #fff; }
.hero__view-link {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  color: rgba(245,241,234,0.9); text-decoration: none; text-transform: uppercase;
}
.hero__view-link:hover { color: var(--bone); }
@media (max-width: 560px) { .hero-search__row { flex-direction: column; } }

/* hero bottom meta bar */
.hero__meta {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(245,241,234,0.18);
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  background: rgba(11,22,20,0.22);
  backdrop-filter: blur(6px);
}
.hero__meta-item {
  display: flex; flex-direction: column; gap: 4px;
}
.hero__meta-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,241,234,0.65);
}
.hero__meta-value {
  font-family: var(--display); font-size: 22px; letter-spacing: 0.005em;
}

@media (max-width: 820px) {
  .hero__top { flex-direction: column; padding-top: 90px; }
  .hero__content { grid-template-columns: 1fr; gap: 28px; }
  .hero__meta { grid-template-columns: repeat(2, 1fr); gap: 20px 24px; }
}

/* =========================================================
   SNAPSHOT (under hero)
   ========================================================= */
.snapshot {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.snapshot__left {
  display: flex; flex-direction: column; gap: 28px;
}
.snapshot__kicker {
  font-size: clamp(28px, 3.4vw, 44px);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  max-width: 520px;
  letter-spacing: -0.005em;
}
.snapshot__kicker em { font-style: italic; color: var(--teal); }
.snapshot__body { max-width: 460px; }
.snapshot__stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.snapshot__stat {
  padding: 20px 24px 20px 0;
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 6px;
}
.snapshot__stat:nth-child(odd) { border-right: 1px solid var(--rule); padding-left: 0;}
.snapshot__stat:nth-child(even) { padding-left: 24px; }
.snapshot__stat-num {
  font-family: var(--display); font-size: 42px; line-height: 1; font-weight: 400;
}
.snapshot__stat-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 820px) {
  .snapshot { grid-template-columns: 1fr; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about__image {
  aspect-ratio: 4 / 5;
  background-size: cover; background-position: center;
  border-radius: 2px;
}
.about__copy {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 520px;
}
.about__title {
  font-size: clamp(40px, 4.6vw, 64px);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.about__title em { font-style: italic; }
.about__para {
  font-size: 16.5px; line-height: 1.65; color: var(--ink-soft);
  text-wrap: pretty;
}
.about__signoff {
  display: flex; align-items: center; gap: 16px;
  padding-top: 28px; border-top: 1px solid var(--rule);
}
.about__signoff-name {
  font-family: var(--display); font-size: 20px; font-style: italic;
}
.about__signoff-role {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 820px) {
  .about { grid-template-columns: 1fr; }
  .about__image { aspect-ratio: 4/3; }
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 10px;
}
.gallery__cell {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bone-2);
  border-radius: 2px;
}
.gallery__cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.gallery__cell:hover img { transform: scale(1.04); }

/* placements (12-col grid) */
.g-a { grid-column: span 7; grid-row: span 6; }
.g-b { grid-column: span 5; grid-row: span 3; }
.g-c { grid-column: span 5; grid-row: span 3; }
.g-d { grid-column: span 4; grid-row: span 4; }
.g-e { grid-column: span 4; grid-row: span 4; }
.g-f { grid-column: span 4; grid-row: span 4; }
.g-g { grid-column: span 6; grid-row: span 4; }
.g-h { grid-column: span 6; grid-row: span 4; }

@media (max-width: 820px) {
  .gallery__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 70px; }
  .g-a { grid-column: span 6; grid-row: span 5; }
  .g-b { grid-column: span 3; grid-row: span 3; }
  .g-c { grid-column: span 3; grid-row: span 3; }
  .g-d { grid-column: span 3; grid-row: span 3; }
  .g-e { grid-column: span 3; grid-row: span 3; }
  .g-f { grid-column: span 3; grid-row: span 3; }
  .g-g { grid-column: span 3; grid-row: span 3; }
  .g-h { grid-column: span 6; grid-row: span 4; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(11,22,20,0.94);
  display: grid; place-items: center;
  padding: 40px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(245,241,234,0.12);
  border: 1px solid rgba(245,241,234,0.25);
  color: var(--bone);
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  font-family: var(--mono); font-size: 14px;
  backdrop-filter: blur(8px);
  transition: background .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(245,241,234,0.22); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { top: 50%; left: 24px; transform: translateY(-50%); }
.lightbox__nav--next { top: 50%; right: 24px; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 12px; color: rgba(245,241,234,0.75);
  letter-spacing: 0.1em;
}

/* =========================================================
   AMENITIES
   ========================================================= */
.amenity-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.amenity-group {
  padding: 36px 32px 36px 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.amenity-group:nth-child(3n) { border-right: none; padding-right: 0; }
.amenity-group:nth-child(n+4) .amenity-group__list { min-height: 0; }
.amenity-group:nth-child(even-adjust) { padding-left: 32px; }
.amenity-group + .amenity-group { padding-left: 32px; }
.amenity-group:nth-child(3n+1) { padding-left: 0; }

.amenity-group__head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 20px;
}
.amenity-group__num {
  font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.08em;
}
.amenity-group__title {
  font-family: var(--display); font-size: 26px; font-weight: 400;
}
.amenity-group__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.amenity-group__list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--ink-soft);
}
.amenity-group__list li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .amenity-groups { grid-template-columns: 1fr; }
  .amenity-group { padding: 28px 0 !important; border-right: none !important; }
}

/* =========================================================
   LOCATION
   ========================================================= */
.location {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
}
.location__map {
  position: relative;
  aspect-ratio: 4 / 4.4;
  background: var(--bone-2);
  border-radius: 2px;
  overflow: hidden;
}
.location__map-svg { width: 100%; height: 100%; display: block; }
.location__pin-label {
  position: absolute;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  background: var(--bone);
  padding: 5px 9px; border-radius: 3px;
  border: 1px solid var(--rule);
  transform: translate(-50%, -140%);
  white-space: nowrap;
}
.location__pin-label--bwv {
  background: var(--teal); color: var(--bone); border-color: var(--teal);
}

.location__copy {
  display: flex; flex-direction: column; gap: 24px;
  padding-top: 12px;
}
.location__title {
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  max-width: 420px;
}
.location__distances {
  margin-top: 8px;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--rule);
}
.location__distance {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 16px; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.location__distance-num {
  font-family: var(--mono); font-size: 11px; color: var(--ink-mute);
  letter-spacing: 0.08em;
}
.location__distance-name {
  font-family: var(--display); font-size: 20px;
}
.location__distance-val {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-soft);
}

@media (max-width: 820px) {
  .location { grid-template-columns: 1fr; }
}

/* =========================================================
   WHY BOOK DIRECT
   ========================================================= */
.direct {
  background: var(--teal-deep);
  color: var(--bone);
}
.direct .eyebrow { color: rgba(245,241,234,0.7); }
.direct .section-head__label::before { background: var(--bone); }
.direct__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245,241,234,0.18);
  margin-top: 20px;
}
.direct__item {
  padding: 44px 40px 44px 0;
  border-right: 1px solid rgba(245,241,234,0.18);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 340px;
}
.direct__item + .direct__item { padding-left: 40px; }
.direct__item:last-child { border-right: none; padding-right: 0; }
.direct__item-num {
  font-family: var(--mono); font-size: 11px; color: rgba(245,241,234,0.6);
  letter-spacing: 0.12em;
}
.direct__item-title {
  font-family: var(--display); font-size: 30px; font-weight: 400; line-height: 1.15;
  max-width: 280px;
}
.direct__item-title em { font-style: italic; color: var(--sand); }
.direct__item-body {
  font-size: 15px; line-height: 1.6; color: rgba(245,241,234,0.78); max-width: 320px;
  margin-top: auto;
}

.direct__compare {
  margin-top: 80px;
  border: 1px solid rgba(245,241,234,0.18);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  border-radius: 4px;
}
.direct__compare-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(245,241,234,0.6);
}
.direct__compare-row {
  display: flex; flex-direction: column; gap: 4px;
}
.direct__compare-source {
  font-family: var(--display); font-size: 22px;
}
.direct__compare-price {
  font-family: var(--mono); font-size: 13px; color: rgba(245,241,234,0.75);
}
.direct__compare-price--bold {
  color: var(--sand); font-size: 14px;
}

@media (max-width: 820px) {
  .direct__grid { grid-template-columns: 1fr; }
  .direct__item { border-right: none; border-bottom: 1px solid rgba(245,241,234,0.18); padding: 32px 0 !important; min-height: 0;}
  .direct__compare { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
}

/* =========================================================
   ENQUIRY / AVAILABILITY
   ========================================================= */
.enquiry {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.enquiry__left {
  position: sticky; top: 110px;
  display: flex; flex-direction: column; gap: 24px;
}
.enquiry__title {
  font-family: var(--display);
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.enquiry__title em { font-style: italic; }
.enquiry__contact {
  margin-top: 20px; padding-top: 24px; border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 14px;
}
.enquiry__contact-row {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 20px; align-items: baseline;
  font-size: 14.5px;
}
.enquiry__contact-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute);
}
.enquiry__contact-val a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rule); }
.enquiry__contact-val a:hover { border-bottom-color: var(--ink); }

/* calendar */
.calendar {
  background: var(--bone);
  border: 1px solid rgba(20, 32, 28, 0.22);
  padding: 28px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(20, 32, 28, 0.08);
}
.calendar__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.calendar__month {
  font-family: var(--display); font-size: 25px; font-weight: 500; color: var(--ink);
}
.calendar__nav {
  display: flex; gap: 8px;
}
.calendar__nav button {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--rule); background: transparent; cursor: pointer;
  color: var(--ink); font-family: var(--mono); font-size: 14px;
  display: grid; place-items: center;
  transition: all .15s;
}
.calendar__nav button:hover:not(:disabled) { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.calendar__nav button:disabled { opacity: 0.3; cursor: not-allowed; }
.calendar__grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.calendar__dow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-soft); font-weight: 500;
  text-align: center; padding: 8px 0;
}
.calendar__day {
  aspect-ratio: 1; display: grid; place-items: center;
  font-family: var(--mono); font-size: 14px; font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  color: var(--ink);
  position: relative;
  transition: all .12s;
}
.calendar__day--empty { cursor: default; }
.calendar__day--available {
  background: var(--bone-2);
  color: var(--ink);
}
.calendar__day--available:hover { background: var(--sand); }
.calendar__day--booked {
  background: rgba(20, 32, 28, 0.06);
  color: var(--ink-mute);
  text-decoration: line-through;
  cursor: not-allowed;
}
.calendar__day--in-range { background: var(--sand-soft); border-radius: 0; }
.calendar__day--endpoint {
  background: var(--teal); color: var(--bone);
}
.calendar__day--start { border-radius: 8px 0 0 8px; }
.calendar__day--end { border-radius: 0 8px 8px 0; }
.calendar__legend {
  display: flex; gap: 20px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--rule);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft);
}
.calendar__legend-item { display: flex; align-items: center; gap: 8px; }
.calendar__legend-sw { width: 12px; height: 12px; border-radius: 3px; border: 1px solid var(--rule); }

/* form */
.form {
  margin-top: 28px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field--wide { grid-column: span 2; }
.form__label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute);
}
.form__input, .form__textarea, .form__select {
  background: var(--bone);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  font-family: var(--body); font-size: 14.5px;
  color: var(--ink);
  border-radius: 3px;
  transition: border-color .15s;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none; border-color: var(--ink);
}
.form__textarea { min-height: 110px; resize: vertical; }
.form__display {
  padding: 14px 16px; border: 1px solid var(--rule); border-radius: 3px;
  display: flex; align-items: center; gap: 12px;
  min-height: 50px;
  font-family: var(--mono); font-size: 12.5px;
  color: var(--ink);
  cursor: default;
}
.form__display--empty { color: var(--ink-mute); }
.form__submit {
  grid-column: span 2;
  margin-top: 12px;
  padding: 18px;
  background: var(--teal);
  color: var(--bone);
  border: none;
  border-radius: 999px;
  font-family: var(--body); font-size: 14px; letter-spacing: 0.04em; font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.form__submit:hover { background: var(--teal-deep); transform: translateY(-1px); }

.enquiry__success {
  padding: 40px; border: 1px solid var(--rule); border-radius: 3px;
  text-align: center; background: var(--bone);
}
.enquiry__success-title {
  font-family: var(--display); font-size: 32px; margin-bottom: 12px;
}

@media (max-width: 820px) {
  .enquiry { grid-template-columns: 1fr; }
  .enquiry__left { position: static; }
  .form { grid-template-columns: 1fr; }
  .form__field--wide, .form__submit { grid-column: span 1; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  background: var(--bone-2);
}
.test__featured {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: 20px 0 80px;
}
.test__rating-block {
  display: flex; flex-direction: column; gap: 20px;
}
.test__rating-big {
  font-family: var(--display);
  font-size: clamp(120px, 18vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.test__rating-big .slash { color: var(--ink-mute); font-size: 0.5em; }
.test__rating-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding-top: 16px; border-top: 1px solid var(--rule);
}
.test__rating-meta-item { display: flex; flex-direction: column; gap: 4px; }
.test__rating-meta-num { font-family: var(--display); font-size: 22px; }
.test__rating-meta-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute);
}

.test__lead-quote {
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 38px);
  font-style: italic;
  line-height: 1.25;
  font-weight: 400;
  color: var(--ink);
  text-wrap: pretty;
  letter-spacing: -0.005em;
}
.test__lead-quote::before {
  content: "“";
  font-size: 2.2em; line-height: 0; vertical-align: -0.35em;
  color: var(--teal);
  margin-right: 4px;
}
.test__lead-attrib {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.test__lead-attrib-name { font-family: var(--display); font-size: 18px; font-style: italic; }
.test__lead-attrib-meta {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute);
}

.test__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
}
.test__card {
  background: var(--bone-2);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 300px;
}
.test__card-stars {
  font-family: var(--mono); font-size: 14px; letter-spacing: 0.2em; color: var(--teal);
}
.test__card-quote {
  font-size: 15.5px; line-height: 1.6; color: var(--ink-soft);
  flex: 1;
  text-wrap: pretty;
}
.test__card-attrib {
  padding-top: 16px; border-top: 1px solid var(--rule);
  display: flex; align-items: center; gap: 13px;
}
.test__card-attrib-text { display: flex; flex-direction: column; gap: 4px; }
.test__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--sand); color: var(--teal-deep);
  display: grid; place-items: center;
  font-family: var(--display); font-size: 19px; line-height: 1;
}
.test__card-name { font-family: var(--display); font-size: 18px; font-style: italic; }
.test__card-meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 820px) {
  .test__featured { grid-template-columns: 1fr; }
  .test__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(60px, 7vw, 100px) 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__brand {
  font-family: var(--display); font-size: 32px;
  display: flex; flex-direction: column; gap: 8px;
  max-width: 340px;
}
.footer__tagline {
  font-size: 14px; line-height: 1.55; color: rgba(245,241,234,0.65);
  margin-top: 16px;
}
.footer__col-title {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(245,241,234,0.55);
  margin-bottom: 16px;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__list a, .footer__list li { color: var(--bone); text-decoration: none; font-size: 14px; opacity: 0.8; }
.footer__list a:hover { opacity: 1; border-bottom: 1px solid var(--bone); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(245,241,234,0.15);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  color: rgba(245,241,234,0.55);
}
.footer__platforms {
  display: flex; gap: 20px; align-items: center;
}
.footer__platforms a {
  color: rgba(245,241,234,0.65);
  text-decoration: none;
  border: 1px solid rgba(245,241,234,0.2);
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all .2s;
}
.footer__platforms a:hover { color: var(--bone); border-color: var(--bone); }

@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* =========================================================
   STICKY BOOKING BAR (bottom)
   ========================================================= */
.book-bar {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 70;
  background: var(--ink);
  color: var(--bone);
  border-radius: 999px;
  padding: 10px 10px 10px 24px;
  display: flex; align-items: center; gap: 24px;
  box-shadow: 0 12px 40px rgba(11,22,20,0.25);
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.book-bar--visible {
  opacity: 1; transform: translate(-50%, 0); pointer-events: all;
}
.book-bar__price {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--display); font-size: 20px;
}
.book-bar__price-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(245,241,234,0.6);
}
.book-bar__divider { width: 1px; height: 24px; background: rgba(245,241,234,0.2); }
.book-bar__rating {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  color: rgba(245,241,234,0.85);
}
.book-bar__cta {
  background: var(--bone); color: var(--ink);
  padding: 12px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.03em;
  text-decoration: none;
  transition: all .2s;
}
.book-bar__cta:hover { background: #fff; }

@media (max-width: 560px) {
  .book-bar { gap: 14px; padding-left: 18px; font-size: 13px; }
  .book-bar__rating { display: none; }
}

/* =========================================================
   TWEAKS PANEL
   ========================================================= */
.tweaks {
  position: fixed; right: 20px; bottom: 90px;
  z-index: 90;
  width: 300px;
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(11,22,20,0.18);
  padding: 20px;
  font-family: var(--body);
}
.tweaks__title {
  font-family: var(--display); font-size: 20px; margin-bottom: 4px;
}
.tweaks__sub {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 18px;
}
.tweaks__group { margin-bottom: 18px; }
.tweaks__group-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 8px;
  display: block;
}
.tweaks__options { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks__opt {
  padding: 7px 11px; border: 1px solid var(--rule);
  background: transparent; cursor: pointer;
  font-size: 12px;
  font-family: var(--body);
  border-radius: 999px;
  color: var(--ink);
  transition: all .15s;
}
.tweaks__opt--active { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.tweaks__close {
  position: absolute; top: 12px; right: 12px;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--mono); font-size: 14px; color: var(--ink-mute);
}
.tweaks__swatches { display: flex; gap: 8px; }
.tweaks__swatch {
  width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent;
  position: relative;
}
.tweaks__swatch--active {
  border-color: var(--ink);
}
.tweaks__swatch::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  pointer-events: none;
}

/* star utility */
.stars {
  color: var(--teal);
  font-family: var(--mono);
  letter-spacing: 0.2em;
  font-size: 13px;
}
