/* ==========================================================================
   La Crème Guesthouse — Ostend, Belgium
   One stylesheet, no build step. Brand colours are the variables in :root.
   ========================================================================== */

:root {
  /* colour */
  --cream:  #fbf7f0;   /* page background              */
  --shell:  #f2eae0;   /* soft panels                  */
  --sand:   #ddc9ae;   /* warm accent, rules           */
  --brass:  #a07444;   /* links, accent text           */
  --brass-2:#c09a68;   /* accent on dark               */
  --ink:    #20241f;   /* body text                    */
  --muted:  #6d6862;   /* secondary text               */
  --line:   #e7ddcd;   /* hairlines                    */
  --slate:  #232a26;   /* dark sections                */
  --slate-2:#2f3833;
  --white:  #ffffff;
  --wa:     #25d366;   /* WhatsApp brand green         */

  /* type */
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;

  /* metrics */
  --wrap: 1180px;
  --gap: clamp(1rem, 2.2vw, 1.75rem);
  --radius: 6px;
  --radius-lg: 12px;
  --ease: cubic-bezier(.2,.7,.3,1);
  --shadow-sm: 0 1px 2px rgba(32,36,31,.05), 0 4px 14px rgba(32,36,31,.05);
  --shadow: 0 18px 50px rgba(32,36,31,.13);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.6rem, 1.7rem + 3.8vw, 4.6rem); }
h2 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.55rem); }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; letter-spacing: .01em; }
p { margin: 0 0 1.1em; }
a { color: var(--brass); text-underline-offset: .22em; text-decoration-thickness: 1px; }
a:hover { color: var(--ink); }
em { font-style: italic; }
ul { margin: 0 0 1.1em; padding-left: 1.15em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.center { text-align: center; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--white);
  padding: .8rem 1.2rem; z-index: 200;
}
.skip:focus { left: .6rem; top: .6rem; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

/* ---- eyebrow / lead ---------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brass); margin: 0 0 1.1rem;
}
.eyebrow::before { content: ""; width: 2rem; height: 1px; background: currentColor; opacity: .55; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 2rem; height: 1px; background: currentColor; opacity: .55; }
.lead { font-size: clamp(1.06rem, 1rem + .3vw, 1.22rem); color: var(--muted); max-width: 40em; }
.lead--center { margin-inline: auto; }

/* ---- buttons ----------------------------------------------------------- */
.btn {
  --bg: var(--ink); --fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.8rem;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bg); border-radius: 999px;
  font-family: var(--sans); font-size: .76rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease),
                              border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { --bg: var(--brass); --fg: var(--white); color: var(--white); transform: translateY(-1px); }
.btn svg { width: 1.05rem; height: 1.05rem; }
.btn--ghost { --bg: transparent; color: var(--ink); border-color: rgba(32,36,31,.28); }
.btn--ghost:hover { --bg: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--light { --bg: var(--cream); --fg: var(--ink); border-color: var(--cream); }
.btn--light:hover { --bg: var(--brass-2); --fg: var(--slate); color: var(--slate); border-color: var(--brass-2); }
.btn--sm { padding: .7rem 1.25rem; font-size: .68rem; letter-spacing: .12em; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; color: var(--brass);
}
.link-arrow::after { content: ""; width: 1.5rem; height: 1px; background: currentColor; transition: width .3s var(--ease); }
.link-arrow:hover::after { width: 2.4rem; }

/* ---- header ------------------------------------------------------------ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,240,.88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: 80px;
}
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--ink); margin-right: auto; }
/* the mark is already shaped and has its own transparent surround, so no
   border-radius: clipping it to a circle would cut the L and the C swoosh */
.brand__mark { width: 48px; height: 48px; object-fit: contain; }
.brand__name { font-family: var(--display); font-size: 1.32rem; line-height: 1.05; }
.brand__sub {
  display: block; font-family: var(--sans); font-size: .6rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: .2rem;
}
.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.2rem); }
.nav__link {
  font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: var(--ink); padding: .4rem 0; position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--brass); transition: right .35s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { right: 0; }
.nav__link[aria-current="page"] { color: var(--brass); }

/* ---- language switcher ------------------------------------------------- */
.lang {
  display: inline-flex; align-items: center; gap: .1rem;
  border: 1px solid var(--line); border-radius: 999px; padding: .2rem;
  background: var(--white);
}
.lang__link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.2rem; padding: .32rem .45rem; border-radius: 999px;
  font-size: .68rem; font-weight: 600; letter-spacing: .08em;
  text-decoration: none; color: var(--muted);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lang__link:hover { color: var(--ink); background: var(--shell); }
.lang__link.is-current { background: var(--ink); color: var(--cream); }
.lang__link.is-current:hover { background: var(--ink); color: var(--cream); }

/* on phones only the current language shows, as a circle like the menu
   button; tapping it drops the full list down underneath. Without JS the
   plain pill stays in place. */
.lang-pick { position: relative; }
.lang-toggle { display: none; }
@media (max-width: 900px) {
  .js .lang-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
    border: 1px solid var(--line); background: var(--ink); color: var(--cream);
    font-family: var(--sans); font-size: .7rem; font-weight: 600; letter-spacing: .06em;
  }
  .js .lang-pick .lang {
    position: absolute; top: calc(100% + .5rem); left: 50%; z-index: 101;
    flex-direction: column; gap: .15rem; border-radius: 1.4rem;
    box-shadow: 0 10px 28px rgba(32,36,31,.14);
    opacity: 0; visibility: hidden; transform: translate(-50%, -.4rem);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s .2s;
  }
  .js .lang-pick.is-open .lang {
    opacity: 1; visibility: visible; transform: translate(-50%, 0);
    transition: opacity .2s var(--ease), transform .2s var(--ease);
  }
  .js .lang-pick .lang__link { min-width: 2.4rem; min-height: 2.4rem; }
}

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  border-radius: 50%; background: var(--white); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }
body.nav-open .nav-toggle .icon-open { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 80px 0 auto; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1.5rem;
    transform: translateY(-120%); transition: transform .45s var(--ease);
    max-height: calc(100dvh - 80px); overflow-y: auto;
  }
  body.nav-open .nav { transform: none; }
  .nav__link { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: .85rem; }
  .nav .btn { margin-top: 1.1rem; }
  .header__inner { gap: .6rem; }
  .header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--cream); }
}

/* on phones the brand, the language switcher and the menu button share one
   row, so everything tightens up a little */
@media (max-width: 480px) {
  .header__inner { gap: .4rem; }
  .brand { gap: .5rem; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__name { font-size: 1.12rem; }
  .brand__sub { font-size: .52rem; letter-spacing: .12em; white-space: nowrap; }
  .js .lang-pick .lang__link { font-size: .66rem; }
  .nav-toggle, .js .lang-toggle { width: 40px; height: 40px; }
}
@media (max-width: 360px) {
  .brand__sub { display: none; }
}

/* ---- hero -------------------------------------------------------------- */
.hero { position: relative; isolation: isolate; color: var(--cream); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right, rgba(20,24,21,.82) 0%, rgba(20,24,21,.62) 46%, rgba(20,24,21,.34) 100%),
    linear-gradient(to bottom, rgba(20,24,21,.5) 0%, rgba(20,24,21,.12) 38%, rgba(20,24,21,.55) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  padding-block: clamp(5rem, 4rem + 11vw, 10rem);
  max-width: 44rem;
}
.hero .eyebrow { color: var(--brass-2); }
.hero h1 { color: var(--cream); margin-bottom: .32em; }
.hero h1 em { color: var(--brass-2); }
.hero__lead { font-size: clamp(1.08rem, 1rem + .4vw, 1.3rem); color: rgba(251,247,240,.9); max-width: 34em; margin-bottom: 2.1rem; }
.hero .btn-row { margin-bottom: 2.6rem; }
.hero .btn--ghost { color: var(--cream); border-color: rgba(251,247,240,.5); }
.hero .btn--ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.hero__facts {
  display: flex; flex-wrap: wrap; gap: .6rem 2.4rem;
  font-size: .8rem; color: rgba(251,247,240,.85);
  padding-top: 1.6rem; border-top: 1px solid rgba(251,247,240,.22);
}
.hero__facts span { display: inline-flex; align-items: center; gap: .55rem; }
.hero__facts svg { width: 1.05rem; height: 1.05rem; color: var(--brass-2); flex: none; }

/* ---- sections ---------------------------------------------------------- */
.section { padding-block: clamp(4rem, 3rem + 6vw, 8rem); position: relative; }
.section--shell { background: var(--shell); }
.section--tight { padding-block: clamp(3rem, 2.4rem + 3vw, 5rem); }
.section--slate { background: var(--slate); color: var(--cream); }
.section--slate h2, .section--slate h3 { color: var(--cream); }
.section--slate .lead, .section--slate p { color: rgba(251,247,240,.78); }
.section--slate .eyebrow { color: var(--brass-2); }

.section-head { max-width: 42rem; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---- intro with the brand mark alongside -------------------------------- */
.intro-split {
  display: grid; grid-template-columns: 1.25fr .75fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.intro-split .section-head { margin-bottom: 0; }
.intro-split__mark { justify-self: center; width: min(100%, 300px); }
.intro-split__mark img { width: 100%; height: auto; }

/* location page: the drawn coast map takes the place of the mark */
.intro-split--map { grid-template-columns: 1fr 1fr; }
.coast { display: block; width: 100%; height: auto; color: var(--brass); }
.coast__sea { fill: var(--shell); }
.coast__road { stroke: var(--brass); stroke-width: 1.3; opacity: .45; }
.coast__road--minor { stroke-width: .8; opacity: .3; }
.coast__road--motorway { stroke-width: 2.4; opacity: .6; }
.coast__water { fill: var(--shell); stroke: var(--brass); stroke-width: .9; opacity: .9; }
.coast__water-label { font-family: var(--display); font-style: italic; font-size: 13px; fill: var(--brass);
  paint-order: stroke; stroke: var(--cream); stroke-width: 4px; stroke-linejoin: round; }
.coast__shield { transform-box: fill-box; transform-origin: center; }
.coast__shield rect { fill: var(--brass); }
.coast__shield text { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: .04em; fill: var(--cream); }
.coast__credit { margin: .6rem 0 0; font-size: .7rem; color: var(--muted); text-align: right; }
.coast__credit a { color: inherit; }
.coast__border { stroke: var(--muted); stroke-width: 1; stroke-dasharray: 5 4; opacity: .55; }
.coast .town {
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; fill: var(--muted);
  /* a cream halo so labels stay legible where a road runs under them */
  paint-order: stroke; stroke: var(--cream); stroke-width: 4px; stroke-linejoin: round;
}
.coast .town--city { fill: var(--ink); }
.coast .town--home { font-size: 13px; font-weight: 600; fill: var(--brass); }
.coast__sea-label { font-family: var(--display); font-style: italic; font-size: 22px; fill: var(--brass); opacity: .75; }

@media (max-width: 860px) {
  /* stacked: the mark sits under the copy, filling the gap before the cards */
  .intro-split { grid-template-columns: 1fr; gap: clamp(1.6rem, 5vw, 2.4rem); }
  .intro-split__mark { width: min(40%, 118px); }
  .intro-split--map .coast, .coast__credit { max-width: 540px; }
}
@media (max-width: 560px) {
  /* the map shrinks to the phone's width, so its type scales back up */
  .coast .town { font-size: 15px; letter-spacing: .06em; }
  .coast .town--home { font-size: 17px; }
  .coast__sea-label { font-size: 26px; }
  .coast__water-label { font-size: 16px; }
  .coast__shield { transform: scale(1.4); }
}

/* ---- facts strip ------------------------------------------------------- */
.facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
}
.fact { background: var(--cream); padding: clamp(1.4rem, 2.6vw, 2.2rem) 1.2rem; text-align: center; }
.fact b { display: block; font-family: var(--display); font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.7rem); font-weight: 500; line-height: 1; }
.fact span { display: block; margin-top: .5rem; font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }

/* ---- at a glance (icons carried over from the original site) ------------
   The source icons are alpha masks, so the colour comes from CSS and they
   follow the brand rather than being baked-in black. */
.glance {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem) 1rem;
}
.glance li {
  display: flex; flex-direction: column; align-items: center; gap: .85rem;
  text-align: center; font-size: .82rem; font-weight: 500; color: var(--ink);
  line-height: 1.35;
}
.glance__icon {
  width: 44px; height: 44px; flex: none;
  background: var(--i) center / contain no-repeat;   /* fallback: black ink */
}
@supports ((-webkit-mask-image: url(a.png)) or (mask-image: url(a.png))) {
  .glance__icon {
    background: var(--brass);
    -webkit-mask: var(--i) center / contain no-repeat;
            mask: var(--i) center / contain no-repeat;
  }
}
/* The url() must be declared HERE, not in an inline style: a relative url in
   a custom property resolves against the stylesheet that declares it, so one
   written in the HTML would resolve against /assets/css/ and 404. */
.i-guests { --i: url(../img/icons/guests.png); }
.i-wifi { --i: url(../img/icons/wifi.png); }
.i-bed-double { --i: url(../img/icons/bed-double.png); }
.i-bed-single { --i: url(../img/icons/bed-single.png); }
.i-sauna { --i: url(../img/icons/sauna.png); }
.i-darts { --i: url(../img/icons/darts.png); }
.i-billiard { --i: url(../img/icons/billiard.svg); }

@media (max-width: 480px) {
  .glance { grid-template-columns: repeat(2, 1fr); }
}

/* ---- feature rows (image + text) --------------------------------------- */
.feature {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.feature + .feature { margin-top: clamp(3.5rem, 7vw, 6.5rem); }
.feature--flip .feature__media { order: 2; }
.feature__media { position: relative; }
.feature__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.feature__media::after {
  content: ""; position: absolute; inset: auto -1.4rem -1.4rem auto;
  width: 58%; height: 58%; border: 1px solid var(--sand); border-radius: var(--radius-lg);
  z-index: -1;
}
.feature--flip .feature__media::after { inset: auto auto -1.4rem -1.4rem; }
.feature__body h3 { margin-bottom: .45em; }

/* ---- cards ------------------------------------------------------------- */
.grid { display: grid; gap: var(--gap); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 2.8vw, 2.3rem); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--shell); color: var(--brass); border: 1px solid var(--line); margin-bottom: 1.2rem;
}
.card__icon svg { width: 26px; height: 26px; }
/* the at-a-glance icons, sized for the card tile; two of them widen it */
.card__icon .glance__icon { width: 34px; height: 34px; }
.card__icon:has(.glance__icon + .glance__icon) {
  width: fit-content; padding-inline: .8rem; display: flex; align-items: center; gap: .5rem;
}
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }

/* ---- guest quotes ------------------------------------------------------- */
.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 2.8vw, 2.2rem); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.quote__mark { width: 34px; height: 26px; color: var(--sand); margin-bottom: 1rem; flex: none; }
.quote p {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(1.02rem, .98rem + .2vw, 1.14rem); line-height: 1.5; color: var(--ink);
  margin-bottom: 1.4rem;
}
.quote__by { margin-top: auto; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.quote__by b {
  display: block; margin-bottom: .2rem; font-family: var(--display); font-size: 1.02rem;
  font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--ink);
}
.quotes__note { margin: 1.8rem 0 0; text-align: center; font-size: .8rem; color: var(--muted); }

/* ---- gallery ----------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gap); }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--shell); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery .wide { grid-column: span 8; }
.gallery .half { grid-column: span 4; }
.gallery .third { grid-column: span 4; }
.gallery .wide img { aspect-ratio: 16 / 10; }
.gallery .half img { aspect-ratio: 3 / 4; }
.gallery .third img { aspect-ratio: 4 / 3; }

/* ---- amenity list ------------------------------------------------------ */
.amenities { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem 2rem; }
.amenities li { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; }
.amenities svg { width: 1.05rem; height: 1.05rem; color: var(--brass); flex: none; margin-top: .32rem; }

/* ---- statement --------------------------------------------------------- */
.statement {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.9rem);
  line-height: 1.25; text-align: center; max-width: 22em; margin: 0 auto;
}
.statement em { color: var(--brass); }
.statement__meta {
  margin: 1.6rem 0 0; text-align: center;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.statement__meta b { color: var(--brass); font-weight: 600; }

/* a quiet block for practical notes: check-in times, access, house rules */
.note {
  border: 1px solid var(--line); border-left: 3px solid var(--sand);
  border-radius: var(--radius); background: var(--white);
  padding: clamp(1.2rem, 2.4vw, 1.8rem) clamp(1.3rem, 2.6vw, 2rem);
}
.note h4 { margin-bottom: .6rem; }
.note p:last-child, .note ul:last-child { margin-bottom: 0; }
.note ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.note li { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; }
.note li b { font-weight: 600; }

.ornament { display: block; width: 58px; height: 22px; margin: 0 auto 1.8rem; color: var(--sand); }

/* ---- info list (contact / practical) ----------------------------------- */
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
.info-list dt, .info-list h4 { font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin: 0 0 .35rem; }
.info-list a { text-decoration: none; }
.info-list a:hover { text-decoration: underline; }

/* ---- CTA band ---------------------------------------------------------- */
.cta {
  background: var(--slate); color: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 5vw, 4.5rem) clamp(1.6rem, 4vw, 4rem); text-align: center;
  position: relative; overflow: hidden;
}
.cta h2 { color: var(--cream); }
.cta p { color: rgba(251,247,240,.8); max-width: 34em; margin-inline: auto; }
.cta .btn-row { justify-content: center; margin-top: 1.8rem; }
.cta .eyebrow { color: var(--brass-2); }
.cta .btn--ghost { color: var(--cream); border-color: rgba(251,247,240,.45); }
.cta .btn--ghost:hover { background: var(--cream); color: var(--slate); border-color: var(--cream); }

/* ---- footer ------------------------------------------------------------ */
.footer { background: var(--slate); color: rgba(251,247,240,.72); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer a { color: rgba(251,247,240,.82); text-decoration: none; }
.footer a:hover { color: var(--brass-2); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer h4 { color: var(--cream); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; font-size: .92rem; }
.footer__brand { display: inline-flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer__brand img { width: 46px; height: 46px; object-fit: contain; }
.footer__brand span { font-family: var(--display); font-size: 1.28rem; color: var(--cream); }
.footer__tag { font-family: var(--display); font-style: italic; font-size: 1.05rem; color: rgba(251,247,240,.8); max-width: 20em; }
.footer__base {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(251,247,240,.14);
  display: flex; flex-wrap: wrap; gap: .6rem 2rem; justify-content: space-between;
  font-size: .82rem;
}

/* ---- floating WhatsApp button ------------------------------------------ */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wa); color: #fff;
  box-shadow: 0 6px 20px rgba(32,36,31,.28);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 10px 26px rgba(32,36,31,.34); color: #fff; }
.wa-float:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { .wa-float:hover { transform: none; } }
@media print { .wa-float { display: none; } }

/* ---- scroll reveal ----------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .1s; }
.js .reveal[data-delay="2"] { transition-delay: .2s; }
.js .reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover, .gallery figure:hover img, .btn:hover { transform: none; }
}

/* ---- responsive -------------------------------------------------------- */
@media (max-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
}

@media (max-width: 860px) {
  .feature, .feature--flip { grid-template-columns: 1fr; gap: 1.8rem; }
  .feature--flip .feature__media { order: 0; }
  .feature__media::after { display: none; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .wide, .gallery .half, .gallery .third { grid-column: span 1; }
  .gallery .wide img { aspect-ratio: 4 / 3; }
  .gallery .half img, .gallery .third img { aspect-ratio: 1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__inner { padding-block: clamp(3.5rem, 3rem + 8vw, 6rem); }
  .hero::after {
    background: linear-gradient(to bottom,
      rgba(20,24,21,.76) 0%, rgba(20,24,21,.66) 45%, rgba(20,24,21,.72) 100%);
  }
  /* one left reading edge, buttons full width - see the At Yours build notes */
  .hero .btn-row, .cta .btn-row { flex-direction: column; align-items: stretch; gap: .7rem; }
  .hero .btn, .cta .btn { width: 100%; }
  .hero__facts { flex-direction: column; gap: .6rem; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .wide img, .gallery .half img, .gallery .third img { aspect-ratio: 4 / 3; }
  .statement { max-width: none; }
}

/* ---- print -------------------------------------------------------------- */
@media print {
  .header, .footer, .cta, .nav-toggle, .hero__media { display: none; }
  body { background: #fff; color: #000; }
}
