/* ============================================================================
   Elea Luxury Suites — Kardamena, Kos
   Elevated olive design system · editorial serif · direct-booking funnel
   ========================================================================= */

:root {
  --ink:        #23261b;
  --olive:      #3e4a2e;
  --olive-soft: #66714f;
  --sage:       #9aa285;
  --stone:      #cdc5b4;
  --sand:       #eae4d6;
  --ivory:      #f6f2e9;
  --paper:      #fdfcf8;
  --gold:       #7e7459;   /* official brand olive-brown */
  --gold-soft:  #aa9f94;   /* official brand taupe */

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Century Gothic", "Avenir Next", sans-serif;

  --track: .32em;
  --pad-x: clamp(1.25rem, 5vw, 4rem);
  --section: clamp(4.5rem, 10vw, 8.5rem);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

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

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--olive); color: var(--ivory); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
}

.wrap { max-width: 82rem; margin-inline: auto; padding-inline: var(--pad-x); }
.wrap--narrow { max-width: 62rem; }

/* ---------------------------------------------------------------- eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: .9rem;
  font-family: var(--sans); font-weight: 400;
  font-size: .72rem; letter-spacing: var(--track); text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 2.4rem; height: 1px; background: var(--gold-soft); }
.eyebrow--center::after { content: ""; width: 2.4rem; height: 1px; background: var(--gold-soft); }

.section-title { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin: 1.1rem 0 1.4rem; }
.section-title em { font-style: italic; color: var(--olive-soft); }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: #4c5140; max-width: 46rem; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  padding: 1.02rem 2.2rem;
  font-family: var(--sans); font-weight: 400;
  font-size: .76rem; letter-spacing: .26em; text-transform: uppercase;
  border: 1px solid var(--olive);
  color: var(--ivory); background: var(--olive);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--olive); }
.btn--ghost:hover { background: var(--olive); color: var(--ivory); }
.btn--light { background: transparent; border-color: rgb(246 242 233 / .75); color: var(--ivory); }
.btn--light:hover { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
}

.text-link {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .76rem; letter-spacing: .26em; text-transform: uppercase; font-weight: 400;
  color: var(--olive); border-bottom: 1px solid var(--gold-soft); padding-bottom: .35rem;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.text-link::after { content: "→"; font-family: var(--serif); font-size: 1.05rem; }
.text-link:hover { gap: 1rem; color: var(--gold); }

/* ------------------------------------------------------------------- nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem var(--pad-x);
  max-width: 96rem; margin-inline: auto;
}
.nav__logo { display: flex; align-items: center; gap: .7rem; }
.nav__logo img { height: 2.4rem; width: auto; transition: opacity .3s; }
.nav__logo .logo-dark { display: none; }
.nav__name {
  font-family: var(--serif); font-weight: 400; font-size: 1.45rem;
  letter-spacing: .22em; margin-right: -.22em;
  color: var(--ivory); transition: color .35s var(--ease);
}
.nav.is-solid .nav__name, .nav--page .nav__name, .nav.menu-open .nav__name { color: var(--ink); }
.nav__links { display: flex; align-items: center; gap: 2.4rem; list-style: none; }
.nav__links a:not(.btn) {
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; font-weight: 400;
  color: var(--ivory); position: relative; padding: .4rem 0;
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width .3s var(--ease);
}
.nav__links a:not(.btn):hover::after, .nav__links a[aria-current="page"]:not(.btn)::after { width: 100%; }
.nav__links .btn { padding: .78rem 1.7rem; }

.nav.is-solid { background: rgb(253 252 248 / .96); box-shadow: 0 1px 0 rgb(35 38 27 / .08); backdrop-filter: blur(12px); }
.nav.is-solid .nav__links a:not(.btn) { color: var(--ink); }
.nav.is-solid .nav__logo .logo-light { display: none; }
.nav.is-solid .nav__logo .logo-dark { display: block; }
.nav.is-solid .btn--light { border-color: var(--olive); color: var(--olive); }
.nav.is-solid .btn--light:hover { background: var(--olive); color: var(--ivory); }

/* pages without a photo hero start solid */
.nav--page { position: sticky; background: var(--paper); box-shadow: 0 1px 0 rgb(35 38 27 / .08); }
.nav--page .nav__links a:not(.btn) { color: var(--ink); }
.nav--page .nav__logo .logo-light { display: none; }
.nav--page .nav__logo .logo-dark { display: block; }
.nav--page .btn--light { border-color: var(--olive); color: var(--olive); }
.nav--page .btn--light:hover { background: var(--olive); color: var(--ivory); }

.nav__burger {
  display: none; background: none; border: 0; width: 2.6rem; height: 2.6rem;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.nav__burger span { width: 26px; height: 1.5px; background: var(--ivory); transition: transform .3s var(--ease), opacity .3s, background .3s; }
.nav.is-solid .nav__burger span, .nav--page .nav__burger span { background: var(--ink); }
.nav.menu-open .nav__burger span { background: var(--ink); }
.nav.menu-open .nav__burger span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav__burger span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; gap: 2rem;
    background: var(--ivory);
    opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
  }
  .nav__links a:not(.btn) { color: var(--ink) !important; font-size: .95rem; }
  .nav.menu-open .nav__links { opacity: 1; pointer-events: auto; }
  .nav.menu-open .nav__logo .logo-light { display: none; }
  .nav.menu-open .nav__logo .logo-dark { display: block; }
  .nav__links .btn--light { border-color: var(--olive); color: var(--olive); }
}

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  isolation: isolate; overflow: hidden;
  color: var(--ivory);
}
.hero__slides, .hero__slide { position: absolute; inset: 0; }
.hero__slide {
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease-in-out;
  transform: scale(1);
}
.hero__slide.is-active { opacity: 1; animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgb(35 38 27 / .42) 0%, rgb(35 38 27 / .18) 45%, rgb(35 38 27 / .55) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 8rem var(--pad-x) 11rem; max-width: 60rem; }
.hero__brand { width: clamp(84px, 10vw, 118px); margin: 0 auto 1.2rem; }
.hero__wordmark {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3.6rem, 10vw, 6.8rem); line-height: 1;
  letter-spacing: .18em; margin-right: -.18em;
  color: var(--ivory);
}
.hero__wordmark span {
  display: block;
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(.66rem, 1.2vw, .8rem);
  letter-spacing: .62em; margin-right: -.62em; text-transform: uppercase;
  color: var(--gold-soft); margin-top: 1.1rem;
}
.hero__lockup { line-height: 0; }
.hero__lockup img {
  width: clamp(230px, 30vw, 360px); height: auto;
  margin-inline: auto;
}
.hero__tagline {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  color: rgb(246 242 233 / .92); margin-top: 2rem;
}
.hero__kicker {
  font-size: .74rem; letter-spacing: .5em; text-transform: uppercase; font-weight: 400;
  color: var(--gold-soft); margin-bottom: 1.6rem;
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 300; color: var(--ivory);
  text-wrap: balance;
}
.hero__title em { font-style: italic; }
.hero__sub { margin-top: 1.4rem; font-size: clamp(.98rem, 1.4vw, 1.15rem); color: rgb(246 242 233 / .85); }
.hero__scroll {
  position: absolute; bottom: 9.5rem; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 1px; height: 4.5rem; background: rgb(246 242 233 / .4); overflow: hidden;
}
.hero__scroll::after {
  content: ""; position: absolute; inset: 0; background: var(--ivory);
  animation: scrollhint 2.2s var(--ease) infinite;
}
@keyframes scrollhint { 0% { transform: translateY(-100%); } 60% { transform: translateY(100%); } 100% { transform: translateY(100%); } }

/* hero for inner pages */
.hero--inner { min-height: 62svh; }
.hero--inner .hero__content { padding: 9rem var(--pad-x) 6rem; }

/* ---------------------------------------------------------- booking bar */
.bookbar-shell { position: relative; z-index: 5; margin-top: -5.4rem; padding-inline: var(--pad-x); }
.hero + .bookbar-shell, .hero ~ .bookbar-shell { }
.bookbar {
  max-width: 66rem; margin-inline: auto;
  background: var(--paper);
  border: 1px solid rgb(35 38 27 / .1);
  box-shadow: 0 30px 60px -30px rgb(35 38 27 / .35);
  display: grid; grid-template-columns: repeat(4, 1fr) auto; align-items: stretch;
}
.bookbar__field {
  display: flex; flex-direction: column; gap: .3rem;
  padding: 1.05rem 1.4rem;
  border-right: 1px solid rgb(35 38 27 / .09);
}
.bookbar__field label {
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--olive-soft);
}
.bookbar__field input, .bookbar__field select {
  border: 0; background: transparent; font: inherit; color: var(--ink);
  font-family: var(--serif); font-size: 1.12rem;
  padding: 0; min-width: 0; width: 100%;
}
.bookbar__field input:focus-visible, .bookbar__field select:focus-visible { outline: none; }
.bookbar__field:focus-within { background: var(--ivory); }
.bookbar .btn { border: 0; align-self: stretch; padding-inline: 2.4rem; }
.bookbar__note {
  max-width: 66rem; margin: .8rem auto 0; text-align: center;
  font-size: .78rem; letter-spacing: .12em; color: var(--olive-soft);
}
@media (max-width: 860px) {
  .bookbar { grid-template-columns: 1fr 1fr; }
  .bookbar__field { border-bottom: 1px solid rgb(35 38 27 / .09); }
  .bookbar .btn { grid-column: 1 / -1; padding-block: 1.1rem; }
  .bookbar-shell { margin-top: -4rem; }
}

/* -------------------------------------------------------------- sections */
.section { padding-block: var(--section); }
.section--ivory { background: var(--ivory); }
.section--sand { background: var(--sand); }
.section--olive { background: var(--olive); color: var(--ivory); }
.section--olive h2, .section--olive h3 { color: var(--ivory); }
.section--olive .lede { color: rgb(246 242 233 / .8); }

/* intro editorial split */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split--flip { grid-template-columns: .95fr 1.05fr; }
.split__imgs { position: relative; }
.split__imgs .img-main { width: 86%; aspect-ratio: 4 / 5; object-fit: cover; }
.split__imgs .img-float {
  position: absolute; right: 0; bottom: -3.2rem; width: 52%;
  aspect-ratio: 1; object-fit: cover;
  border: 6px solid var(--paper);
  box-shadow: 0 24px 48px -24px rgb(35 38 27 / .4);
}
.split__body p + p { margin-top: 1.1rem; }
@media (max-width: 900px) {
  .split, .split--flip { grid-template-columns: 1fr; }
  .split__imgs { margin-bottom: 2.5rem; }
}

/* stats strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgb(35 38 27 / .12); border-block: 1px solid rgb(35 38 27 / .12); }
.stat { background: var(--ivory); padding: 2.6rem 1rem; text-align: center; }
.stat b { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 3.6vw, 2.9rem); color: var(--olive); }
.stat span { font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--olive-soft); }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---------------------------------------------------------------- suites */
.suite-card {
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(2.4rem, 5vw, 4.2rem);
}
.suite-card + .suite-card { border-top: 1px solid rgb(35 38 27 / .1); }
.suite-card:nth-child(even) .suite-card__media { order: 2; }
.suite-card__media { position: relative; overflow: hidden; }
.suite-card__media img {
  aspect-ratio: 3 / 2; object-fit: cover; width: 100%;
  transition: transform 1.1s var(--ease);
}
.suite-card__media:hover img { transform: scale(1.05); }
.suite-card__num {
  position: absolute; top: 1.1rem; left: 1.3rem;
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  color: var(--ivory); text-shadow: 0 1px 12px rgb(35 38 27 / .5);
  letter-spacing: .1em;
}
.suite-card h3 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: .9rem; }
.suite-card__facts {
  display: flex; flex-wrap: wrap; gap: .5rem 1.6rem;
  margin: 1.2rem 0 1.4rem; padding: 0; list-style: none;
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--olive-soft);
}
.suite-card__facts li { display: flex; align-items: center; gap: .55rem; }
.suite-card__facts svg { width: 1.05rem; height: 1.05rem; stroke: var(--gold); flex: 0 0 auto; }
.suite-card__cta { display: flex; flex-wrap: wrap; gap: 1.1rem 1.8rem; align-items: center; margin-top: 1.7rem; }
@media (max-width: 900px) {
  .suite-card, .suite-card:nth-child(even) { grid-template-columns: 1fr; }
  .suite-card:nth-child(even) .suite-card__media { order: 0; }
}

/* ------------------------------------------------------------- amenities */
.amenities { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.amenity { text-align: center; padding: 2.2rem 1.2rem; border: 1px solid rgb(246 242 233 / .16); transition: border-color .3s, background .3s; }
.amenity:hover { border-color: var(--gold-soft); background: rgb(246 242 233 / .04); }
.amenity svg { width: 2rem; height: 2rem; stroke: var(--gold-soft); margin-inline: auto; margin-bottom: 1.1rem; }
.amenity h4 { font-size: 1.25rem; font-weight: 400; color: var(--ivory); margin-bottom: .4rem; }
.amenity p { font-size: .86rem; color: rgb(246 242 233 / .65); line-height: 1.55; }
@media (max-width: 900px) { .amenities { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .amenities { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- reviews */
.review-score {
  display: inline-flex; align-items: baseline; gap: 1rem; margin-bottom: 2.6rem;
}
.review-score b { font-family: var(--serif); font-weight: 400; font-size: clamp(3.2rem, 6vw, 4.6rem); color: var(--olive); }
.review-score span { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--olive-soft); max-width: 13rem; line-height: 1.6; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); }
.review {
  background: var(--paper); border: 1px solid rgb(35 38 27 / .09);
  padding: 2.4rem 2.1rem; display: flex; flex-direction: column; gap: 1.4rem;
}
.review blockquote {
  font-family: var(--serif); font-size: 1.28rem; line-height: 1.45; font-weight: 400;
  color: #383d2c;
}
.review blockquote::before { content: "“"; display: block; font-size: 3rem; line-height: .6; color: var(--gold-soft); margin-bottom: .8rem; }
.review cite { font-style: normal; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--olive-soft); margin-top: auto; }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- gallery */
.gal-filters { display: flex; flex-wrap: wrap; gap: .6rem 1.8rem; margin-bottom: 2.6rem; }
.gal-filters button {
  background: none; border: 0; padding: .4rem 0;
  font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; color: var(--olive-soft);
  border-bottom: 1px solid transparent; transition: color .25s, border-color .25s;
}
.gal-filters button.is-active, .gal-filters button:hover { color: var(--ink); border-color: var(--gold); }
.gallery { columns: 3; column-gap: 1.2rem; }
.gallery a { display: block; margin-bottom: 1.2rem; break-inside: avoid; overflow: hidden; position: relative; }
.gallery img { width: 100%; transition: transform .9s var(--ease), opacity .3s; }
.gallery a:hover img { transform: scale(1.045); }
.gallery a.is-hidden { display: none; }
@media (max-width: 900px) { .gallery { columns: 2; } }
@media (max-width: 540px) { .gallery { columns: 1; } }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgb(35 38 27 / .94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(92vw, 110rem); max-height: 86vh; object-fit: contain; }
.lightbox button {
  position: absolute; background: none; border: 0; color: var(--ivory);
  font-size: 2rem; line-height: 1; padding: 1rem; opacity: .75; transition: opacity .2s;
}
.lightbox button:hover { opacity: 1; }
.lightbox__close { top: 1rem; right: 1.2rem; }
.lightbox__prev { left: .6rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: .6rem; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------- explore */
.poi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.2rem); }
.poi {
  background: var(--paper); border: 1px solid rgb(35 38 27 / .09); padding: 2.1rem 1.9rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.poi b { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; }
.poi span { font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.poi p { font-size: .92rem; color: #4c5140; }
@media (max-width: 900px) { .poi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .poi-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem 1.5rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--olive-soft); margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid rgb(35 38 27 / .16); background: var(--paper);
  padding: .85rem 1rem; font: inherit; color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgb(62 74 46 / .12);
}
.form-status { margin-top: 1.2rem; font-size: .95rem; color: var(--olive); min-height: 1.4em; }
.form-status.is-error { color: #8c3b2e; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* phone-country component */
.phone-field { display: flex; align-items: stretch; gap: .5rem; }
.phone-field input[type="tel"] { flex: 1 1 auto; min-width: 0; }
.phone-field__cc {
  position: relative; flex: 0 0 auto; display: flex; align-items: center;
  background: var(--ivory); border: 1px solid rgb(35 38 27 / .16);
}
.phone-field__cc:focus-within { border-color: var(--olive); box-shadow: 0 0 0 3px rgb(62 74 46 / .12); background: var(--paper); }
.phone-field__display {
  display: flex; align-items: center; gap: .45rem;
  padding: .85rem .75rem .85rem .9rem; font-size: 1rem; color: var(--ink);
  white-space: nowrap; pointer-events: none;
}
.phone-field__flag { font-size: 1.15em; line-height: 1; }
.phone-field__dial { font-variant-numeric: tabular-nums; }
.phone-field__cc::after {
  content: ""; margin-right: .8rem; pointer-events: none;
  width: 6px; height: 6px; border-right: 1px solid var(--olive-soft);
  border-bottom: 1px solid var(--olive-soft); transform: translateY(-2px) rotate(45deg);
}
.phone-field__select { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; border: 0; padding: 0; margin: 0; }
.phone-field__select option, .phone-field__select optgroup { color: var(--ink); background: #fff; }
@media (max-width: 330px) {
  .phone-field { flex-wrap: wrap; }
  .phone-field input[type="tel"] { flex: 1 1 100%; }
}

/* --------------------------------------------------------------- CTA band */
.cta-band { position: relative; isolation: isolate; text-align: center; color: var(--ivory); padding-block: clamp(6rem, 13vw, 10rem); background-size: cover; background-position: center; background-attachment: fixed; }
@media (hover: none) { .cta-band { background-attachment: scroll; } }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgb(35 38 27 / .55); }
.cta-band h2 { color: var(--ivory); font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 1rem; }
.cta-band p { color: rgb(246 242 233 / .85); margin-bottom: 2.4rem; }

/* ---------------------------------------------------------------- footer */
.footer { background: var(--ink); color: rgb(246 242 233 / .78); font-size: .92rem; }
.footer a:hover { color: var(--gold-soft); }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 4rem);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.footer__brand img { width: 4.4rem; margin-bottom: 1rem; }
.footer__brand img.footer__lockup { width: 10rem; height: auto; margin-bottom: 1.3rem; }
.footer__wordmark {
  font-family: var(--serif); font-weight: 300; font-size: 1.95rem;
  letter-spacing: .16em; color: var(--ivory); margin-bottom: 1.1rem; line-height: 1.15;
}
.footer__wordmark span {
  display: block; font-family: var(--sans); font-weight: 400;
  font-size: .62rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold-soft); margin-top: .45rem;
}
.footer h4 {
  color: var(--ivory); font-family: var(--sans); font-weight: 400;
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer ul { list-style: none; display: grid; gap: .65rem; }
.footer__legal {
  border-top: 1px solid rgb(246 242 233 / .12);
  padding-block: 1.6rem;
  display: flex; flex-wrap: wrap; gap: .8rem 2rem; align-items: center; justify-content: space-between;
  font-size: .78rem; color: rgb(246 242 233 / .5);
}
.fixer-credit { font-family: Arial, sans-serif; color: rgb(246 242 233 / .85); letter-spacing: .02em; }
.fixer-credit b { font-family: "Arial Black", Arial, sans-serif; font-weight: 900; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

/* whatsapp float */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  width: 3.4rem; height: 3.4rem; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgb(35 38 27 / .45);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); }
.wa-float svg { width: 1.8rem; height: 1.8rem; fill: #fff; }

/* map */
.map-frame { border: 0; width: 100%; height: clamp(20rem, 45vw, 30rem); filter: grayscale(.55) sepia(.14); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__slide.is-active { animation: none; }
  .hero__scroll { display: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* suite page details */
.facts-band { display: flex; flex-wrap: wrap; gap: 1px; background: rgb(35 38 27 / .12); border-block: 1px solid rgb(35 38 27 / .12); }
.facts-band div { flex: 1 1 10rem; background: var(--paper); text-align: center; padding: 1.9rem 1rem; }
.facts-band b { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.7rem; color: var(--olive); }
.facts-band span { font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--olive-soft); }

.feature-cols { columns: 2; column-gap: 3rem; list-style: none; }
.feature-cols li {
  break-inside: avoid; display: flex; gap: .8rem; align-items: baseline;
  padding-block: .55rem; font-size: .98rem; color: #40452f;
}
.feature-cols li::before { content: "—"; color: var(--gold); flex: 0 0 auto; }
@media (max-width: 640px) { .feature-cols { columns: 1; } }

.strip3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.strip3 img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
@media (max-width: 700px) { .strip3 { grid-template-columns: 1fr; } .strip3 img { aspect-ratio: 3 / 2; } }

.other-suites { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.other-suites a { position: relative; display: block; overflow: hidden; color: var(--ivory); }
.other-suites img { aspect-ratio: 21 / 9; object-fit: cover; width: 100%; transition: transform .9s var(--ease); }
.other-suites a:hover img { transform: scale(1.05); }
.other-suites span {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.6rem;
  background: linear-gradient(0deg, rgb(35 38 27 / .8), transparent);
  font-family: var(--serif); font-size: 1.5rem;
}
@media (max-width: 640px) { .other-suites { grid-template-columns: 1fr; } }
