/* ═══════════════════════════════════════════════════════════════
   Living Intentionally Ltd — Refined Stays
   80% modern editorial · 20% Deco jewellery
   Palette & type per LI Brand Guidelines
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ivory:    #F4EFE4;
  --cream:    #EAE2D3;
  --oxblood:  #5C1F23;
  --oxdeep:   #46151A;
  --olive:    #55603B;
  --forest:   #2F3B2E;
  --brass:    #B08D57;          /* hairlines & ornament only */
  --brass-ink:#8A6B3E;          /* brass for text on light — AA-large safe */
  --charcoal: #2B2A28;
  --navy:     #2E3A4E;
  --red-dot:  #CE2B23;

  --serif: 'Marcellus', Georgia, serif;
  --sans:  'Jost', 'Futura', sans-serif;
  --deco:  'Poiret One', var(--serif);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --pad-x: clamp(1.4rem, 6vw, 6rem);
}

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

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 5.2rem; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1.03rem, .95rem + .3vw, 1.15rem);
  line-height: 1.68;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--oxblood); color: var(--ivory); }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: .04em; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--brass-ink);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: -200vw; top: 0;
  background: var(--charcoal); color: var(--ivory);
  padding: .8rem 1.4rem; z-index: 1000; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans); font-weight: 500;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  text-decoration: none; text-align: center;
  padding: 1.05em 2.6em;
  border: 1px solid transparent;
  background: none; cursor: pointer;
  transition: background-color .45s var(--ease-out), color .45s var(--ease-out),
              border-color .45s var(--ease-out), transform .45s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid { background: var(--oxblood); color: var(--ivory); }
.btn--solid:hover { background: var(--oxdeep); }

.btn--ghost { border-color: rgba(244,239,228,.75); color: var(--ivory); }
.btn--ghost:hover { border-color: var(--brass); color: var(--ivory); background: rgba(176,141,87,.14); }

.btn--ghost-dark { border-color: rgba(244,239,228,.45); color: var(--ivory); }
.btn--ghost-dark:hover { border-color: var(--brass); background: rgba(176,141,87,.14); }

.btn--outline { border-color: var(--brass-ink); color: var(--charcoal); padding: .8em 1.8em; }
.btn--outline:hover { background: var(--oxblood); border-color: var(--oxblood); color: var(--ivory); }

/* ─── Eyebrows & section furniture ────────────────────────── */
.eyebrow {
  font-weight: 500; font-size: .74rem;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--brass-ink);
  display: flex; align-items: center; gap: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 44px; height: 1px;
  background: var(--brass); flex: none;
}
.eyebrow--light { color: #D9C296; justify-content: center; }
.eyebrow--light span { text-wrap: balance; }
.eyebrow--light::after { content: ""; width: 44px; height: 1px; background: var(--brass); }
.eyebrow--dark { color: #CBB183; }

.section {
  position: relative;
  padding: clamp(5.5rem, 11vw, 9.5rem) var(--pad-x);
  max-width: 1440px; margin: 0 auto;
}
.section__head { margin-bottom: clamp(2.6rem, 5vw, 4.2rem); position: relative; z-index: 2; }
.section__title {
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3.6rem);
  line-height: 1.12; margin-top: 1.1rem;
  max-width: 16ch;
}

.section__numeral {
  position: absolute; top: clamp(1rem, 4vw, 3rem); right: var(--pad-x);
  font-family: var(--deco);
  font-size: clamp(7rem, 19vw, 16rem);
  line-height: 1; white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(176, 141, 87, .38);
  user-select: none; pointer-events: none;
  z-index: 1;
}
@supports not (-webkit-text-stroke: 1px black) {
  .section__numeral { color: rgba(176, 141, 87, .14); }
}
.section__numeral--dark { -webkit-text-stroke-color: rgba(176, 141, 87, .3); }

/* ─── Arrival sequence ────────────────────────────────────── */
.arrival {
  position: fixed; inset: 0; z-index: 900;
  display: grid; place-items: center;
}
.arrival__panel {
  position: absolute; top: 0; height: 100%; width: 50.5%;
  background: linear-gradient(165deg, #241a17 0%, var(--oxdeep) 100%);
  transition: transform 1.05s cubic-bezier(.7, 0, .2, 1);
}
.arrival__panel--left { left: 0; }
.arrival__panel--right { right: 0; background: linear-gradient(195deg, #241a17 0%, var(--oxdeep) 100%); }

.arrival__mark { position: relative; text-align: center; transition: opacity .4s ease; }
.arrival__mark text { font-family: var(--serif); }

.arrival__roof {
  stroke-dasharray: 300; stroke-dashoffset: 300;
  transition: stroke-dashoffset 1s var(--ease-out) .15s;
}
.arrival__beam {
  transform: scaleX(0); transform-origin: center;
  transition: transform .8s var(--ease-out) .75s;
}
.arrival__li {
  opacity: 0; transform: translateY(14px);
  transition: opacity .7s ease 1s, transform .7s var(--ease-out) 1s;
}
.arrival__dot {
  opacity: 0; transition: opacity .4s ease 1.55s;
}
.arrival__word {
  font-family: var(--sans); font-weight: 400;
  font-size: .72rem; letter-spacing: .5em; text-indent: .5em;
  color: var(--brass); margin-top: 1.6rem;
  opacity: 0; transition: opacity .8s ease 1.25s, letter-spacing 1.2s var(--ease-out) 1.25s;
}
.arrival.play .arrival__roof { stroke-dashoffset: 0; }
.arrival.play .arrival__beam { transform: scaleX(1); }
.arrival.play .arrival__li { opacity: 1; transform: translateY(0); }
.arrival.play .arrival__dot { opacity: 1; }
.arrival.play .arrival__word { opacity: 1; letter-spacing: .34em; }

.arrival.open .arrival__panel--left { transform: translateX(-101%); }
.arrival.open .arrival__panel--right { transform: translateX(101%); }
.arrival.open .arrival__mark { opacity: 0; }
.arrival.gone { display: none; }

/* ─── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 700;
  color: var(--ivory);
  transition: background-color .5s ease, color .5s ease, box-shadow .5s ease;
}
.nav__inner {
  display: flex; align-items: center; gap: 2.5rem;
  padding: 1.05rem var(--pad-x);
  max-width: 1440px; margin: 0 auto;
}
.nav__brand {
  display: flex; align-items: center; gap: .85rem;
  text-decoration: none; margin-right: auto;
}
.nav__mark { width: 38px; height: 38px; }
.nav__wordmark {
  font-family: var(--serif); font-size: 1.02rem;
  letter-spacing: .18em; text-transform: uppercase; white-space: nowrap;
}
.nav__links { display: flex; gap: 2.2rem; }
.nav__links a {
  font-size: .78rem; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; text-decoration: none;
  padding: .35em 0; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav .btn--outline { border-color: rgba(244,239,228,.6); color: var(--ivory); }
.nav .btn--outline:hover { background: var(--ivory); border-color: var(--ivory); color: var(--oxblood); }

.nav--solid {
  background: rgba(244, 239, 228, .96);
  color: var(--charcoal);
  box-shadow: 0 1px 0 rgba(176, 141, 87, .5);
}
.nav--solid .btn--outline { border-color: var(--brass-ink); color: var(--charcoal); }
.nav--solid .btn--outline:hover { background: var(--oxblood); border-color: var(--oxblood); color: var(--ivory); }

.nav__burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; position: relative; z-index: 800;
}
.nav__burger span {
  position: absolute; left: 8px; right: 8px; height: 1.5px;
  background: currentColor; transition: transform .4s var(--ease-out), top .4s;
}
.nav__burger span:first-child { top: 16px; }
.nav__burger span:last-child { top: 25px; }
.nav__burger[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }

/* Mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 650;
  background: var(--ivory);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--pad-x); gap: 2.4rem;
  visibility: hidden; opacity: 0; transform: translateY(-2%);
  transition: opacity .45s ease, transform .45s var(--ease-out), visibility 0s .45s;
}
.menu.open {
  visibility: visible; opacity: 1; transform: none;
  transition: opacity .45s ease, transform .45s var(--ease-out);
}
.menu nav { display: flex; flex-direction: column; gap: 1.6rem; }
.menu nav a {
  font-family: var(--serif); font-size: clamp(1.9rem, 8vw, 2.6rem);
  text-decoration: none; display: flex; align-items: baseline; gap: 1.2rem;
  border-bottom: 1px solid rgba(176,141,87,.35); padding-bottom: 1rem;
}
.menu__no { font-family: var(--deco); font-size: .95rem; color: var(--brass-ink); letter-spacing: .2em; }
.menu .btn--solid { align-self: flex-start; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 620px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory); text-align: center;
}
.hero__media {
  position: absolute; inset: -12% 0; z-index: 0; will-change: transform;
}
.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 18s var(--ease-out) forwards;
  transform-origin: 60% 40%;
}
@keyframes kenburns {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0); }
}
.hero__wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(168deg, rgba(36,26,23,.66) 0%, rgba(70,21,26,.28) 48%, rgba(36,26,23,.48) 100%);
}
.hero__keyline {
  position: absolute; inset: clamp(14px, 2.4vw, 26px); z-index: 2;
  border: 1px solid rgba(176, 141, 87, .8);
  pointer-events: none;
  opacity: 0; transition: opacity 1.4s ease .9s;
}
.hero__keyline::after {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid rgba(176, 141, 87, .38);
}
body.is-loaded .hero__keyline { opacity: 1; }

.hero__content { position: relative; z-index: 3; padding: 0 var(--pad-x); max-width: 62rem; }
.hero__eyebrow { margin-bottom: 2rem; }

.hero__title { color: var(--ivory); }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line__inner {
  display: block; transform: translateY(112%);
  transition: transform 1.15s var(--ease-out);
}
.hero__title .line:first-child { font-size: clamp(2.9rem, 2rem + 6.4vw, 6.4rem); line-height: 1.08; }
.hero__title .line--sub {
  font-size: clamp(1.15rem, .9rem + 1.6vw, 1.9rem);
  letter-spacing: .12em; margin-top: 1.1rem; color: rgba(244,239,228,.88);
}
.hero__title .line--sub .line__inner { transition-delay: .16s; }
body.is-loaded .hero__title .line__inner { transform: translateY(0); }

.hero__ctas {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  margin-top: 3rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity .9s ease .5s, transform .9s var(--ease-out) .5s;
}
.hero__eyebrow {
  opacity: 0; transition: opacity 1s ease .35s;
}
body.is-loaded .hero__ctas { opacity: 1; transform: none; }
body.is-loaded .hero__eyebrow { opacity: 1; }

.hero__scroll {
  position: absolute; bottom: clamp(30px, 4.5vw, 48px); left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  color: rgba(244,239,228,.85); text-decoration: none;
  font-size: .68rem; letter-spacing: .34em; text-transform: uppercase; text-indent: .34em;
  opacity: 0; transition: opacity 1s ease 1.6s;
}
body.is-loaded .hero__scroll { opacity: 1; }
.hero__scroll i {
  width: 1px; height: 52px; background: var(--brass);
  transform-origin: top; animation: scrollcue 2.6s var(--ease-out) infinite;
}
@keyframes scrollcue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Promise band ────────────────────────────────────────── */
.promise {
  background: var(--cream); text-align: center;
  padding: clamp(4.5rem, 9vw, 7.5rem) var(--pad-x);
}
.promise__fan { margin: 0 auto 1.8rem; display: block; }
.promise__line {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1rem + 1.8vw, 2.15rem);
  letter-spacing: .06em; color: var(--oxblood);
  max-width: 30ch; margin: 0 auto;
}

/* ─── About ───────────────────────────────────────────────── */
.about__grid {
  display: grid; grid-template-columns: 5fr 6fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start; position: relative; z-index: 2;
}
.about__media { position: relative; }

.frame--stepped {
  position: relative;
  clip-path: polygon(
    0 24px, 12px 24px, 12px 12px, 24px 12px, 24px 0,
    calc(100% - 24px) 0, calc(100% - 24px) 12px, calc(100% - 12px) 12px, calc(100% - 12px) 24px, 100% 24px,
    100% calc(100% - 24px), calc(100% - 12px) calc(100% - 24px), calc(100% - 12px) calc(100% - 12px), calc(100% - 24px) calc(100% - 12px), calc(100% - 24px) 100%,
    24px 100%, 24px calc(100% - 12px), 12px calc(100% - 12px), 12px calc(100% - 24px), 0 calc(100% - 24px)
  );
}
.about__media::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid rgba(176, 141, 87, .55);
  z-index: 0; pointer-events: none;
}
.frame--stepped img { width: 100%; height: auto; }

.about__host {
  position: absolute; right: -6%; bottom: -12%; width: 44%;
  background: var(--cream); padding: 10px 10px 14px;
  box-shadow: 0 24px 50px -24px rgba(43, 42, 40, .45);
  transform: rotate(2.2deg);
  z-index: 3;
}
.about__host figcaption {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brass-ink); text-align: center; padding-top: .7rem;
}

.about__copy { padding-top: .5rem; }
.about__lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.05rem + 1.2vw, 1.8rem);
  line-height: 1.4; color: var(--oxblood);
  margin-bottom: 1.6rem; max-width: 24ch;
}
.about__copy p + p { margin-top: 1.15rem; max-width: 54ch; }
.about__marks { list-style: none; margin-top: 2.2rem; }
.about__marks li {
  padding: .85rem 0 .85rem 2rem; position: relative;
  border-bottom: 1px solid rgba(176, 141, 87, .3);
  font-weight: 400; letter-spacing: .04em;
}
.about__marks li::before {
  content: "—"; position: absolute; left: 0; color: var(--brass-ink);
}

/* ─── The Stays — horizontal editorial strip ──────────────── */
.stays { position: relative; background: var(--ivory); }
.stays__pin {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: flex; flex-direction: column;
  padding: clamp(4.2rem, 7vw, 5.5rem) 0 clamp(1.6rem, 3vw, 2.4rem);
}
.stays__head {
  padding: 0 var(--pad-x); margin-bottom: clamp(1.2rem, 2.5vw, 2rem);
  display: flex; flex-wrap: wrap; align-items: end; gap: 1rem 3rem;
}
.stays__head .section__title { margin-top: .9rem; }
.stays__head > p.eyebrow { width: 100%; }
.stays__hint {
  margin-left: auto; font-size: .68rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--brass-ink); padding-bottom: .8rem;
}
.stays__viewport { flex: 1; min-height: 0; overflow: hidden; }
.stays__track {
  display: flex; gap: clamp(1.5rem, 3vw, 3rem);
  height: 100%; padding: 0 var(--pad-x);
  list-style: none; will-change: transform; width: max-content;
}
.stays__card {
  width: clamp(420px, 44vw, 720px);
  height: 100%; display: flex; flex-direction: column;
}
.stays__card--tall { width: clamp(260px, 24vw, 400px); }
.stays__open {
  border: 1px solid rgba(176, 141, 87, .55); background: none;
  padding: 10px; cursor: pointer; flex: 1; min-height: 0; width: 100%;
  transition: border-color .4s ease;
}
.stays__open:hover { border-color: var(--brass); }
.stays__open img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.stays__open:hover img { transform: scale(1.035); }
.stays__card figcaption {
  font-family: var(--serif); font-size: 1.08rem; letter-spacing: .08em;
  padding-top: 1rem;
}
.stays__card figcaption em {
  font-style: normal; font-family: var(--deco);
  color: var(--brass-ink); font-size: .9rem; margin-right: .7rem;
}
.stays__card figcaption span {
  display: block; margin-top: .2rem;
  font-family: var(--sans); font-weight: 300; font-size: .85rem;
  color: rgba(43, 42, 40, .72); letter-spacing: .03em;
}

.stays__amenities {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: 1rem clamp(1.6rem, 3.4vw, 3.4rem);
  padding: clamp(1.4rem, 2.6vw, 2.2rem) var(--pad-x) 0;
  border-top: 1px solid rgba(176, 141, 87, .35);
  margin: clamp(1.4rem, 2.6vw, 2rem) var(--pad-x) 0; padding-left: 0; padding-right: 0;
}
.stays__amenities li {
  display: flex; align-items: center; gap: .7rem;
  font-size: .72rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
  color: var(--charcoal);
}
.stays__amenities svg {
  width: 25px; height: 25px; stroke: var(--brass-ink);
  stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round;
}

/* ─── Services (dark movement) ────────────────────────────── */
.services {
  background: var(--forest); color: var(--ivory);
  max-width: none;
}
.services > * { max-width: 1440px; margin-left: auto; margin-right: auto; }
.services .section__title { color: var(--ivory); }
.services__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 3vw, 3rem);
  position: relative; z-index: 2;
}
.svc {
  border: 1px solid rgba(176, 141, 87, .4);
  background: rgba(244, 239, 228, .035);
  padding: clamp(2rem, 4vw, 3.2rem);
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
}
.svc::before {
  content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 3px;
}
.svc--guests::before { background: var(--olive); }
.svc--landlords::before { background: var(--navy); }

.svc h3 {
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem);
  line-height: 1.25; display: flex; flex-direction: column; gap: .9rem;
  margin-bottom: 1.2rem;
}
.svc__tag {
  font-family: var(--sans); font-weight: 500; font-size: .68rem;
  letter-spacing: .3em; text-transform: uppercase;
}
.svc--guests .svc__tag { color: #B8C48D; }
.svc--landlords .svc__tag { color: #A9BEDC; }

.svc p { color: rgba(244, 239, 228, .82); max-width: 46ch; }
.svc ul { list-style: none; margin: 1.6rem 0 2.2rem; width: 100%; }
.svc li {
  padding: .7rem 0 .7rem 1.9rem; position: relative;
  border-bottom: 1px solid rgba(176, 141, 87, .22);
  color: rgba(244, 239, 228, .92); font-weight: 300; letter-spacing: .03em;
}
.svc li::before { content: "—"; position: absolute; left: 0; color: var(--brass); }
.svc .btn { margin-top: auto; }

/* ─── Quote ───────────────────────────────────────────────── */
.quote {
  padding: clamp(5rem, 10vw, 8rem) var(--pad-x);
  text-align: center; background: var(--ivory);
}
.rule {
  border: 0; height: 1px; max-width: 480px; margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--brass) 20%, var(--brass) 80%, transparent);
}
.quote blockquote { padding: clamp(2.4rem, 5vw, 3.6rem) 0; }
.quote p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1rem + 1.6vw, 2rem);
  line-height: 1.45; color: var(--charcoal);
  max-width: 34ch; margin: 0 auto 1.6rem;
}
.quote cite {
  font-style: normal; font-size: .74rem; font-weight: 400;
  letter-spacing: .26em; text-transform: uppercase; color: var(--brass-ink);
}

/* ─── Contact ─────────────────────────────────────────────── */
.contact__grid {
  display: grid; grid-template-columns: 7fr 4fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  position: relative; z-index: 2; align-items: start;
}
.enquiry {
  background: var(--cream); padding: clamp(1.8rem, 4vw, 3.2rem);
  position: relative;
}
/* Deco corner ticks — this screen's single ornament */
.enquiry::before, .enquiry::after {
  content: ""; position: absolute; width: 26px; height: 26px;
  border: 1px solid var(--brass); pointer-events: none;
}
.enquiry::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.enquiry::after { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.enquiry__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.field { margin-bottom: 1.5rem; }
.field label {
  display: block; font-size: .72rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: .5rem;
}
.field__opt { color: rgba(43,42,40,.5); font-weight: 400; letter-spacing: .18em; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent;
  border: 0; border-bottom: 1px solid rgba(43, 42, 40, .38);
  font-family: var(--sans); font-weight: 300; font-size: 1.02rem;
  color: var(--charcoal); padding: .55rem 0;
  border-radius: 0; transition: border-color .3s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom: 1.5px solid var(--oxblood);
}
.field input::placeholder { color: rgba(43,42,40,.42); }
.field select { appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235C1F23' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .2rem center;
}
.enquiry__error { color: var(--oxblood); font-weight: 400; margin-bottom: 1.2rem; }
.enquiry__send { width: 100%; }
.enquiry__done { text-align: center; padding: 2.5rem 0 1.5rem; }
.enquiry__done h3 { font-size: 1.5rem; margin: 1rem 0 .5rem; color: var(--oxblood); }
.enquiry.sent .enquiry__send,
.enquiry.sent .enquiry__row,
.enquiry.sent .field,
.enquiry.sent .enquiry__error { display: none; }

.contact__direct h3 {
  font-size: 1.25rem; letter-spacing: .08em; margin-bottom: 1.6rem;
}
.contact__link {
  display: block; text-decoration: none;
  font-weight: 400; letter-spacing: .04em;
  padding: 1rem 0; border-bottom: 1px solid rgba(176, 141, 87, .4);
  transition: color .3s ease, padding-left .45s var(--ease-out);
}
.contact__link:hover { color: var(--oxblood); padding-left: .6rem; }
.contact__note { margin-top: 1.8rem; font-size: .92rem; color: rgba(43,42,40,.72); line-height: 1.8; }

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--charcoal); color: var(--ivory);
  text-align: center; padding: clamp(4.5rem, 9vw, 7rem) var(--pad-x) 3rem;
}
.footer__logo { margin: 0 auto 1.2rem; width: clamp(160px, 20vw, 220px); height: auto; }
.footer__strap {
  font-family: var(--serif); letter-spacing: .1em;
  color: rgba(244, 239, 228, .85); margin-bottom: 2.6rem;
}
.footer__dot { color: var(--red-dot); }
.footer__nav { display: flex; justify-content: center; gap: 2.4rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.footer__nav a {
  font-size: .74rem; letter-spacing: .26em; text-transform: uppercase;
  text-decoration: none; color: rgba(244, 239, 228, .75);
  transition: color .3s ease;
}
.footer__nav a:hover { color: var(--brass); }
.footer__legal { font-size: .8rem; color: rgba(244, 239, 228, .5); line-height: 2; }
.footer__legal span { font-size: .72rem; letter-spacing: .12em; }

/* ─── Lightbox ────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 850;
  background: rgba(28, 21, 19, .95);
  display: grid; place-items: center; padding: 4vh 4vw;
  opacity: 0; transition: opacity .35s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.show { opacity: 1; }
.lightbox__img {
  max-width: 100%; max-height: 90vh;
  border: 1px solid rgba(176, 141, 87, .6); padding: 8px;
}
.lightbox__close {
  position: absolute; top: 18px; right: 26px;
  background: none; border: 0; color: var(--ivory);
  font-size: 2.6rem; line-height: 1; cursor: pointer;
  transition: color .3s ease;
}
.lightbox__close:hover { color: var(--brass); }

/* ─── Reveal & parallax primitives ────────────────────────── */
[data-rv] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1s ease, transform 1.1s var(--ease-out);
}
[data-rv].is-in { opacity: 1; transform: none; }

[data-plx] { will-change: transform; }

/* ─── Grain & cursor ──────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 600;
  pointer-events: none; opacity: .045;
  mix-blend-mode: multiply;
}

.cursor { display: none; }
@media (pointer: fine) {
  html.has-cursor, html.has-cursor * { cursor: none !important; }
  html.has-cursor .cursor { display: block; }
  .cursor__dot {
    position: fixed; top: 0; left: 0; z-index: 999;
    width: 6px; height: 6px; margin: -3px 0 0 -3px;
    background: var(--brass); border-radius: 50%;
    pointer-events: none;
  }
  .cursor__ring {
    position: fixed; top: 0; left: 0; z-index: 998;
    width: 38px; height: 38px; margin: -19px 0 0 -19px;
    border: 1px solid rgba(176, 141, 87, .8); border-radius: 50%;
    pointer-events: none;
    display: grid; place-items: center;
    transition: width .35s var(--ease-out), height .35s var(--ease-out),
                margin .35s var(--ease-out), background-color .35s ease;
  }
  .cursor__ring.grow {
    width: 64px; height: 64px; margin: -32px 0 0 -32px;
    background: rgba(176, 141, 87, .12);
  }
  .cursor__ring.label {
    width: 76px; height: 76px; margin: -38px 0 0 -38px;
    background: rgba(70, 21, 26, .82); border-color: transparent;
  }
  .cursor__label {
    font-size: .58rem; font-weight: 500; letter-spacing: .3em; text-indent: .3em;
    text-transform: uppercase; color: var(--ivory);
    opacity: 0; transition: opacity .25s ease;
  }
  .cursor__ring.label .cursor__label { opacity: 1; }
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1060px) {
  .nav__links { display: none; }
}
@media (max-width: 900px) {
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__wordmark { font-size: .88rem; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { margin-bottom: 3.5rem; max-width: 520px; }
  .about__host { right: -2%; }

  /* Stays: swipeable strip instead of pinned scroll */
  .stays__pin { position: static; height: auto; }
  .stays__viewport { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .stays__track { height: auto; transform: none !important; }
  .stays__card { width: 84vw; scroll-snap-align: center; }
  .stays__card--tall { width: 66vw; }
  .stays__open { height: 58vw; flex: none; }
  .stays__hint { display: block; }
  .eyebrow--light { font-size: .66rem; letter-spacing: .2em; }
  .stays__amenities { margin-left: var(--pad-x); margin-right: var(--pad-x); }

  .services__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .enquiry__row { grid-template-columns: 1fr; gap: 0; }
  .section__numeral { font-size: clamp(6rem, 24vw, 9rem); opacity: .8; }
}
@media (min-width: 901px) {
  .stays__hint { display: block; }
}

/* ─── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .arrival { display: none !important; }
  [data-rv] { opacity: 1; transform: none; }
  .hero__title .line__inner { transform: none; }
  .hero__ctas, .hero__eyebrow, .hero__scroll, .hero__keyline { opacity: 1; transform: none; }
  .grain { display: none; }
  .stays__pin { position: static; height: auto; }
  .stays__viewport { overflow-x: auto; }
  .stays__track { height: auto; transform: none !important; }
  .stays__card { width: 84vw; }
  .stays__open { height: 58vw; flex: none; }
}
