/* ==========================================================================
   House Leila design system
   One stylesheet, no framework. Mobile-first.
   ========================================================================== */

/* --- Fonts: self-hosted, variable, subset -------------------------------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/cormorant-garamond-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/cormorant-garamond-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Tokens -------------------------------------------------------------- */
:root {
  /* colour */
  --ink: #151515;
  --ink-2: #6a6a6a;
  --ink-3: #726c66;
  --accent: #c19b76;
  --accent-2: #a9835e;
  --accent-tint: #f7f1ea;
  /* #c19b76 is only 2.6:1 on white, so text uses this darker sibling (5.3:1). */
  --accent-text: #8a6440;
  --sea: #8a7358;
  --sand: #f7f5f2;
  --sand-2: #efeae4;
  --white: #fff;
  --line: #e3ddd5;
  --line-2: #ece7e0;
  --shadow-sm: 0 1px 2px rgba(21, 21, 21, .04), 0 2px 8px rgba(21, 21, 21, .03);
  --shadow: 0 2px 6px rgba(21, 21, 21, .05), 0 12px 32px rgba(21, 21, 21, .06);
  --shadow-lg: 0 4px 12px rgba(21, 21, 21, .06), 0 24px 60px rgba(21, 21, 21, .1);

  /* type */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
    Arial, sans-serif;

  /* rhythm */
  --gutter: 20px;
  --maxw: 1180px;
  --radius: 2px;
  --radius-sm: 2px;
  --radius-img: 12px;
  --section: clamp(64px, 9vw, 128px);
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, picture, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-text); }
button { font: inherit; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; }
h1, h2 {
  font-family: var(--serif); font-weight: 500;
  text-transform: uppercase; letter-spacing: .02em; line-height: 1.18;
}
h1 { font-size: clamp(2rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.12rem, 2vw, 1.3rem); letter-spacing: -.005em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }

/* --- Layout -------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 800px; }
.section { padding-block: var(--section); }
.section--sand { background: var(--sand); }
.section--sand-2 { background: var(--sand-2); }
.section--ink { background: #151515; color: #a5a09a; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }

.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
@media (min-width: 700px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.center { text-align: center; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-2); }
.section-head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head p { color: var(--ink-3); }

.eyebrow {
  display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--accent-text); margin-bottom: 18px;
}
.section--ink .eyebrow { color: #eda87f; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 34px; border-radius: var(--radius-img); border: 1px solid transparent;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background-color .18s, color .18s, border-color .18s, transform .18s, box-shadow .18s;
}
.btn:hover { transform: none; }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--sea); outline-offset: 3px; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-2); }
.btn--ghost { border-color: rgba(255, 255, 255, .55); color: #fff; background: rgba(255, 255, 255, .08); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--wa { background: #1f9d55; color: #fff; }
.btn--wa:hover { background: #177d43; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* --- Header -------------------------------------------------------------- */
.skip {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 8px;
  text-decoration: none; transition: top .15s;
}
.skip:focus { top: 0; }

.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.hdr__inner { display: flex; align-items: center; gap: 18px; min-height: 82px; }
.brand { display: flex; align-items: center; text-decoration: none; margin-right: auto; }

.nav { display: none; }
.nav a {
  text-decoration: none; color: var(--ink); font-size: .74rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 13px; white-space: nowrap; transition: color .15s;
}
.nav a:hover { color: var(--accent-text); background: transparent; }
.nav a[aria-current="page"] { color: var(--accent-text); }
.hdr .btn { padding: 13px 26px; font-size: .72rem; }
.hdr__cta { display: none; }

.burger {
  margin-left: auto; display: inline-flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 44px; height: 44px; padding: 0 10px;
  background: none; border: 1px solid var(--line); border-radius: var(--radius-img); cursor: pointer;
}
.burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; border-top: 1px solid var(--line-2); background: #fff;
  padding: 10px var(--gutter) 22px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block; padding: 13px 4px; text-decoration: none; color: var(--ink);
  font-weight: 600; border-bottom: 1px solid var(--line-2);
}
.mobile-nav a[aria-current="page"] { color: var(--accent-text); }
.mobile-nav .btn { width: 100%; margin-top: 16px; }

@media (min-width: 920px) {
  .nav { display: flex; align-items: center; gap: 2px; }
  .hdr__cta { display: inline-flex; }
  .burger { display: none; }
  .mobile-nav { display: none !important; }
}

/* --- Hero ---------------------------------------------------------------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(9, 24, 38, .58) 0%, rgba(9, 24, 38, .38) 45%, rgba(9, 24, 38, .74) 100%);
}
.hero__inner { padding-block: clamp(90px, 16vw, 170px); max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: .3em; text-shadow: 0 2px 24px rgba(0, 20, 40, .35); }
.hero p { font-size: clamp(1.05rem, 2vw, 1.28rem); color: rgba(255, 255, 255, .93); max-width: 34em; }
.hero .eyebrow { color: #f6c3a4; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 26px 0 30px;
  font-size: .92rem; font-weight: 600; color: rgba(255, 255, 255, .94);
}
.hero__facts li { list-style: none; display: flex; align-items: center; gap: 8px; }
.hero__facts ul { padding: 0; margin: 0; display: contents; }

/* page banner (interior pages) */
.pagehead { position: relative; color: #fff; isolation: isolate; }
.pagehead__media { position: absolute; inset: 0; z-index: -2; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehead::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(9, 24, 38, .62), rgba(9, 24, 38, .58));
}
.pagehead__inner { padding-block: clamp(58px, 9vw, 104px); max-width: 760px; }
.pagehead h1 { color: #fff; margin-bottom: .25em; }
.pagehead p { color: rgba(255, 255, 255, .92); font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 40em; margin: 0; }

/* --- Cards --------------------------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--line-2); border-radius: 0;
  padding: clamp(26px, 3.2vw, 38px); box-shadow: none;
  transition: border-color .25s;
}
.card:hover { border-color: var(--accent); box-shadow: none; }
.card h3 { margin-bottom: .5em; font-family: var(--serif); font-weight: 500;
  text-transform: uppercase; letter-spacing: .08em; font-size: 1.05rem; }
.card p { color: var(--ink-2); font-size: .96rem; margin: 0; }
.card__icon {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 22px;
  border-radius: 0; background: transparent; color: var(--accent);
}
.card__icon svg { width: 30px; height: 30px; stroke-width: 1.2; }
.section--sand .card, .section--sand-2 .card { border-color: transparent; }

/* feature block: image + text alternating */
.feature { display: grid; gap: clamp(24px, 4vw, 52px); align-items: center; }
@media (min-width: 860px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--flip .feature__media { order: 2; }
}
.feature + .feature { margin-top: clamp(48px, 7vw, 88px); }
.feature__media img { border-radius: var(--radius-img); box-shadow: none; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature__body h3 {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 500;
  text-transform: uppercase; letter-spacing: .04em;
}

/* --- Gallery ------------------------------------------------------------- */
.gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 700px) { .gal { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1000px) { .gal { grid-template-columns: repeat(4, 1fr); } }
.gal__item {
  position: relative; display: block; padding: 0; border: 0; cursor: zoom-in;
  border-radius: var(--radius-img); overflow: hidden; background: var(--sand-2);
  aspect-ratio: 4 / 3;
}
.gal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gal__item:hover img { transform: scale(1.05); }
.gal__item:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.gal__item--tall { aspect-ratio: 4 / 3; }
.gal-group + .gal-group { margin-top: clamp(40px, 6vw, 68px); }
.gal-group h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .7em; }

/* home teaser strip */
.strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 800px) { .strip { grid-template-columns: repeat(4, 1fr); gap: 14px; } }

/* lightbox */
.lb {
  position: fixed; inset: 0; z-index: 300; display: none;
  background: rgba(8, 18, 28, .94); padding: 16px;
  align-items: center; justify-content: center;
}
.lb.is-open { display: flex; }
.lb img { max-width: 100%; max-height: 86vh; border-radius: var(--radius-img); object-fit: contain; }
.lb__cap {
  position: absolute; bottom: 18px; left: 0; right: 0; text-align: center;
  color: rgba(255, 255, 255, .82); font-size: .9rem; padding-inline: 60px;
}
.lb__btn {
  position: absolute; background: rgba(255, 255, 255, .12); border: 0; color: #fff;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: grid;
  place-items: center; font-size: 1.4rem; line-height: 1; transition: background-color .15s;
}
.lb__btn:hover { background: rgba(255, 255, 255, .26); }
.lb__close { top: 16px; right: 16px; }
.lb__prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb__next { right: 12px; top: 50%; transform: translateY(-50%); }

/* --- Amenity list -------------------------------------------------------- */
.amen { display: grid; gap: clamp(22px, 3vw, 32px); }
@media (min-width: 720px) { .amen { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .amen { grid-template-columns: repeat(3, 1fr); } }
.amen__col {
  background: #fff; border-radius: var(--radius); padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line-2);
}
.amen__col h3 {
  font-size: 1.02rem; padding-bottom: 12px; margin-bottom: 14px;
  border-bottom: 1px solid var(--line-2); display: flex; align-items: center; gap: 10px;
}
.amen__col h3 svg { width: 20px; height: 20px; color: var(--accent); flex: none; }
.amen__col ul { list-style: none; padding: 0; margin: 0; }
.amen__col li {
  position: relative; padding-left: 27px; margin-bottom: 9px;
  font-size: .95rem; color: var(--ink-2);
}
.amen__col li::before {
  content: ''; position: absolute; left: 0; top: .46em; width: 15px; height: 9px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg); border-radius: 1px;
}

/* --- FAQ / accordion ----------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); margin: clamp(34px, 4vw, 48px) 0 16px; }
.faq h2:first-child { margin-top: 0; }
.faq details {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  margin-bottom: 10px; overflow: hidden;
}
.faq details[open] { border-color: var(--line); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; padding: 18px 52px 18px 20px; font-weight: 600; color: var(--ink);
  position: relative; list-style: none; font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 22px; top: 50%; width: 9px; height: 9px;
  margin-top: -6px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq summary:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.faq .faq__a { padding: 0 20px 20px; color: var(--ink-2); font-size: .97rem; }

/* --- Rates --------------------------------------------------------------- */
.rates { display: grid; gap: 16px; }
@media (min-width: 640px) { .rates { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .rates { grid-template-columns: repeat(4, 1fr); } }
.rate {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 26px 22px; text-align: center; position: relative;
}
.rate--peak { border-color: var(--accent); box-shadow: none; }
.rate__tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
}
.rate h3 { font-size: 1.05rem; margin-bottom: 2px; }
.rate__dates { font-size: .82rem; color: var(--ink-3); margin-bottom: 14px; }
.rate__price { font-family: var(--serif); font-size: 2.7rem; color: var(--ink); font-weight: 500; line-height: 1; }
.rate__price span { font-family: var(--sans); font-size: .85rem; color: var(--ink-3); font-weight: 500; }
.rate__min { font-size: .85rem; color: var(--ink-3); margin-top: 10px; }

/* --- Availability calendar ---------------------------------------------- */
.cal-shell {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: clamp(18px, 3vw, 30px); box-shadow: var(--shadow-sm);
}
.cal-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.cal-nav { background: #fff; border: 1px solid var(--line); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; color: var(--ink); flex: none; }
.cal-nav:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.cal-nav:disabled { opacity: .35; cursor: not-allowed; }
.cal-months { display: grid; gap: clamp(22px, 4vw, 44px); }
@media (min-width: 760px) { .cal-months { grid-template-columns: repeat(2, 1fr); } }
.cal-month__name { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); text-align: center; margin-bottom: 12px; font-weight: 600; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-dow { font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); text-align: center; padding-bottom: 8px; }
.cal-day {
  aspect-ratio: 1; display: grid; place-items: center; font-size: .88rem;
  border-radius: 8px; color: var(--ink); position: relative;
}
.cal-day--pad { visibility: hidden; }
.cal-day--free { background: #f2f6f1; color: #4a6b4f; font-weight: 600; }
.cal-day--booked { background: var(--sand-2); color: var(--ink-3); text-decoration: line-through; }
.cal-day--past { color: #c3c9cf; }
.cal-day--today { box-shadow: inset 0 0 0 2px var(--accent); font-weight: 700; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 22px; font-size: .88rem; color: var(--ink-2); }
.cal-legend span { display: inline-flex; align-items: center; gap: 8px; }
.cal-legend i { width: 15px; height: 15px; border-radius: 4px; display: inline-block; }
.cal-note {
  margin-top: 20px; padding: 14px 16px; background: var(--sand); border-radius: var(--radius-sm);
  font-size: .88rem; color: var(--ink-3); border: 1px dashed var(--line);
}

/* --- Steps --------------------------------------------------------------- */
.steps { counter-reset: s; display: grid; gap: 20px; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-left: 62px; }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 0; width: 46px; height: 46px; border-radius: 0;
  border: 1px solid var(--accent); color: var(--accent); display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 500;
}
.step h3 { margin-bottom: .3em; font-size: 1.05rem; }
.step p { font-size: .95rem; color: var(--ink-2); margin: 0; }

/* --- Forms --------------------------------------------------------------- */
.form { display: grid; gap: 16px; }
.form__row { display: grid; gap: 16px; }
@media (min-width: 620px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; font: inherit; font-size: .96rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(193, 155, 118, .18);
}
.field .req { color: var(--accent); }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__note { font-size: .82rem; color: var(--ink-3); }
.form__msg { padding: 14px 16px; border-radius: var(--radius-sm); font-size: .93rem; display: none; }
.form__msg.is-ok { display: block; background: #eef7f0; color: #1e5c32; border: 1px solid #cfe6d6; }
.form__msg.is-err { display: block; background: #fdf1ea; color: #96370f; border: 1px solid #f3d6c5; }

/* --- Contact details ----------------------------------------------------- */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 3px; }
.contact-list a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--accent-text); }
.contact-list small { display: block; color: var(--ink-3); font-weight: 400; font-size: .82rem; }

.map-frame { border-radius: var(--radius-img); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-2); background: var(--sand-2); }
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }

/* --- Reviews ------------------------------------------------------------- */
.reviews-mount { min-height: 120px; }
.reviews-fallback { text-align: center; color: var(--ink-3); font-size: .93rem; }

/* --- CTA band ------------------------------------------------------------ */
.cta-band { position: relative; color: #fff; isolation: isolate; text-align: center; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(9, 24, 38, .68); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .9); max-width: 46em; margin-inline: auto; }

/* --- Footer -------------------------------------------------------------- */
.ftr { background: #151515; color: #a5a09a; padding-block: clamp(48px, 6vw, 72px) 0; font-size: .93rem; }
.ftr a { color: #ddd8d1; text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr__grid { display: grid; gap: 34px; }
@media (min-width: 760px) { .ftr__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.ftr h3 {
  color: #fff; font-family: var(--serif); font-weight: 500; font-size: 1.05rem;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px;
}
.ftr ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.ftr li { padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.ftr li:last-child { border-bottom: 0; }
.ftr__bottom {
  margin-top: clamp(36px, 5vw, 52px); padding-block: 22px 30px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: .82rem; color: #7c7772;
}

/* --- Floating WhatsApp --------------------------------------------------- */
.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%; background: #1f9d55;
  display: grid; place-items: center; box-shadow: 0 6px 22px rgba(0, 0, 0, .24);
  transition: transform .18s;
}
.wa-fab:hover { transform: scale(1.07); }
.wa-fab svg { width: 30px; height: 30px; fill: #fff; }

/* --- Utilities ----------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }

/* --- Distance list (location page) --------------------------------------- */
.dist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.dist li { display: flex; align-items: flex-start; gap: 13px; font-size: .97rem; }
.dist svg { width: 21px; height: 21px; color: var(--accent); flex: none; margin-top: 3px; }
.dist strong { color: var(--ink); }

/* --- Icon tweaks --------------------------------------------------------- */
.cal-nav svg { width: 18px; height: 18px; }
.cal-nav[data-cal-prev] svg { transform: rotate(180deg); }
.btn svg { width: 17px; height: 17px; flex: none; }
.hero__facts svg { width: 19px; height: 19px; opacity: .9; }

/* Cormorant ships old-style figures by default; force lining figures so
   "100 m" and "2026" sit on the baseline like the surrounding text. */
h1, h2, .rate__price, .cal-month__name, .step::before {
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

/* Wide panoramas keep their own proportions instead of being cropped to 4:3. */
.feature__media img.is-natural { aspect-ratio: auto; }

/* --- Logo ---------------------------------------------------------------- */
.brand img { height: 42px; width: auto; }
@media (min-width: 700px) { .brand img { height: 48px; } }
.ftr__logo { height: 52px; width: auto; margin-bottom: 14px; }
.ftr__credit a { color: var(--accent); font-weight: 600; }
@media (max-width: 900px) { .ftr__bottom { padding-bottom: 78px; } }

/* --- Hero: slow zoom ------------------------------------------------------
   The image drifts in over 24s and holds, so the first screen has some life
   without anything moving under the reader's eye while they read. */
@keyframes hero-drift {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}
/* The scaled image must be clipped, or it overflows the banner and gives the
   whole page a horizontal scrollbar. */
.hero, .pagehead, .cta-band,
.hero__media, .pagehead__media, .cta-band__media { overflow: hidden; }
.hero__media img,
.pagehead__media img,
.cta-band__media img {
  animation: hero-drift 24s cubic-bezier(.22, .61, .36, 1) forwards;
  transform-origin: center 58%;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .hero__media img,
  .pagehead__media img,
  .cta-band__media img { animation: none; }
}

/* Deeper, warmer scrim so white type stays legible over the brighter photos. */
.hero::after {
  background: linear-gradient(180deg, rgba(21, 21, 21, .52) 0%, rgba(21, 21, 21, .34) 42%, rgba(21, 21, 21, .78) 100%);
}
.pagehead::after { background: linear-gradient(180deg, rgba(21, 21, 21, .58), rgba(21, 21, 21, .6)); }
.cta-band::after { background: rgba(21, 21, 21, .66); }
.hero .eyebrow, .pagehead .eyebrow { color: #dcc0a1; }
.hero__facts { letter-spacing: .04em; }

/* Rules under section headings, the way the reference separates its blocks. */
.section-head h2::after {
  content: ''; display: block; width: 46px; height: 1px;
  background: var(--accent); margin: 22px auto 0;
}

/* --- Calendar: prices, range selection, quote ----------------------------- */
.cal-day {
  aspect-ratio: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1px; font-size: .88rem; border-radius: 8px;
  color: var(--ink); position: relative; border: 0; background: none;
  padding: 0; font-family: inherit;
}
.cal-day__n { line-height: 1; font-weight: 600; }
.cal-day__price { font-size: .6rem; line-height: 1; color: var(--ink-3); letter-spacing: .01em; }
button.cal-day { cursor: pointer; }
button.cal-day:hover { box-shadow: inset 0 0 0 1.5px var(--accent); }
button.cal-day:focus-visible { outline: 2px solid var(--ink); outline-offset: -2px; }
.cal-day--free .cal-day__price { color: #4a6b4f; }
.cal-day--booked .cal-day__price { display: none; }
.cal-day--start, .cal-day--end { background: var(--ink) !important; color: #fff; }
.cal-day--start .cal-day__price, .cal-day--end .cal-day__price { color: rgba(255, 255, 255, .7); }
.cal-day--in-range { background: var(--accent-tint) !important; color: var(--accent-text); }
.cal-day--in-range .cal-day__price { color: var(--accent-text); }

.cal-summary {
  margin-top: 22px; padding: 18px 20px; border: 1px solid var(--line);
  border-radius: var(--radius-img); background: var(--sand);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px;
}
.cal-summary__hint { margin: 0; color: var(--ink-3); font-size: .92rem; }
.cal-summary.is-ok { background: #fff; border-color: var(--ink); }
.cal-summary.is-error { background: var(--accent-tint); border-color: var(--accent); }
.cal-summary.is-error .cal-summary__hint { color: var(--accent-text); font-weight: 600; }
.cal-summary__main { margin-right: auto; }
.cal-summary__dates { margin: 0; font-weight: 700; color: var(--ink); }
.cal-summary__meta { margin: 2px 0 0; font-size: .88rem; color: var(--ink-3); }
.cal-summary__total { text-align: right; }
.cal-summary__totallabel { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.cal-summary__total strong { font-family: var(--serif); font-size: 1.9rem; font-weight: 500; color: var(--ink); }
.cal-summary__actions { display: flex; align-items: center; gap: 14px; }
.cal-summary__clear {
  background: none; border: 0; color: var(--ink-3); font-size: .85rem;
  text-decoration: underline; cursor: pointer; padding: 4px;
}
.cal-summary__clear:hover { color: var(--ink); }

/* --- Quote carried onto the contact page ---------------------------------- */
.quote-card {
  border: 1px solid var(--ink); border-radius: var(--radius-img);
  padding: 20px 22px; margin-bottom: 24px; background: var(--sand);
}
.quote-card.is-warn { border-color: var(--accent); background: var(--accent-tint); }
.quote-card__label { margin: 0 0 2px; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-text); }
.quote-card__dates { margin: 0 0 14px; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--ink); }
.quote-card__rows { margin: 0; display: grid; gap: 7px; }
.quote-card__rows > div { display: flex; justify-content: space-between; gap: 16px; font-size: .93rem; }
.quote-card__rows dt { color: var(--ink-3); margin: 0; }
.quote-card__rows dd { margin: 0; font-weight: 600; color: var(--ink); }
.quote-card__rows .is-total { border-top: 1px solid var(--line); padding-top: 9px; margin-top: 3px; }
.quote-card__rows .is-total dd { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.quote-card__note { margin: 14px 0 0; font-size: .8rem; color: var(--ink-3); line-height: 1.5; }
