/* ============================================================
   ADVANCED STAYS — sunset-orange design system (v2)
   Lead colour: sunset orange. Purple demoted to a group tie.
   Family tie to the Advanced group = Playfair + Montserrat.
   ============================================================ */

:root {
  /* Lead: sunset orange */
  --sun:        #FF6A2C;
  --sun-deep:   #E8521A;
  --sun-press:  #C8430F;
  --sun-tint:   #FFE7D8;   /* peach wash for soft sections */
  --ember:      #FF3D6E;   /* sunset pink, used sparingly */
  --gold:       #F7A23B;   /* warm gold for prices / stars */

  /* Ink + surface — warm, NOT a cream body */
  --ink:        #1B1209;   /* warm near-black: text + dark sections */
  --ink-soft:   #58493D;   /* muted warm body text */
  --surface:    #FFFFFF;
  --surface-2:  #FFF6F0;   /* faint peach, only as a section accent */
  --line:       #EFE6DE;

  /* Group tie — minimal plum, footer only */
  --group:      #3A1140;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --r:      16px;
  --r-sm:   10px;
  --r-pill: 999px;
  --maxw:   1200px;

  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --shadow:    0 22px 50px -28px rgba(40, 20, 8, 0.45);
  --shadow-sm: 0 10px 26px -18px rgba(40, 20, 8, 0.40);

  --z-nav: 100; --z-overlay: 200; --z-modal: 300;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--sans); font-weight: 700; margin: 0; line-height: 1.08; letter-spacing: -0.02em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

.st-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.st-serif { font-family: var(--serif); font-style: italic; font-weight: 600; }
.st-accent { color: var(--sun); }
.st-eyebrow {  /* used rarely, not above every section */
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sun-deep);
}
.st-lead { font-size: clamp(1rem, 0.95rem + 0.4vw, 1.18rem); color: var(--ink-soft); max-width: 64ch; }

/* ---------- Buttons ---------- */
.st-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: 0.01em;
  cursor: pointer; transition: transform 0.4s var(--ease), background 0.25s, box-shadow 0.4s var(--ease), color 0.25s;
  white-space: nowrap;
}
.st-btn--sunset { background: var(--sun); color: #fff; box-shadow: 0 14px 30px -12px rgba(255, 106, 44, 0.7); }
.st-btn--sunset:hover { background: var(--sun-deep); transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(232, 82, 26, 0.75); }
.st-btn--dark { background: var(--ink); color: #fff; }
.st-btn--dark:hover { transform: translateY(-2px); background: #2c1d12; }
.st-btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.st-btn--ghost:hover { border-color: var(--sun); color: var(--sun-deep); }
.st-btn--on-dark { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.28); }
.st-btn--on-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Nav ---------- */
.st-nav {
  position: fixed; inset: 0 0 auto; z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
.st-nav.is-stuck { background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding: 12px 24px; }
.st-nav__brand { display: flex; flex-direction: column; line-height: 1; color: #fff; transition: color 0.35s; }
.st-nav.is-stuck .st-nav__brand { color: var(--ink); }
.st-nav__group { font-size: 10px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.72; }
.st-nav__word { font-family: var(--serif); font-style: italic; font-size: 23px; margin-top: 3px; }
.st-nav__links { display: flex; align-items: center; gap: 30px; }
.st-nav__links a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.92); transition: color 0.25s; }
.st-nav.is-stuck .st-nav__links a { color: var(--ink-soft); }
.st-nav__links a:hover { color: var(--sun); }
.st-nav__cta { padding: 11px 22px; font-size: 13px; }
.st-nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.st-nav__burger span { width: 24px; height: 2px; background: #fff; transition: background 0.35s; }
.st-nav.is-stuck .st-nav__burger span { background: var(--ink); }

/* ---------- Hero ---------- */
.st-hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding: 120px 0 56px; overflow: hidden; }
.st-hero__media { position: absolute; inset: 0; z-index: 0; }
.st-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.st-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,10,4,0.45) 0%, rgba(20,10,4,0) 30%),
    linear-gradient(8deg, rgba(20,10,4,0.86) 6%, rgba(40,18,8,0.34) 42%, rgba(255,106,44,0.12) 100%);
}
.st-hero__inner { position: relative; z-index: 1; width: 100%; }
.st-hero__copy { max-width: 760px; color: #fff; }
.st-hero__kicker { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; opacity: 0.9; margin-bottom: 20px; }
.st-hero__kicker::before { content: ""; width: 26px; height: 2px; background: var(--sun); }
.st-hero h1 { font-size: clamp(2.6rem, 1.7rem + 4vw, 5.2rem); letter-spacing: -0.03em; color: #fff; }
.st-hero h1 .st-serif { font-weight: 500; }
.st-hero h1 .st-accent { color: var(--gold); }
.st-hero__sub { margin-top: 22px; font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem); color: rgba(255,255,255,0.9); max-width: 56ch; line-height: 1.7; }

/* Booking panel */
.st-book { margin-top: 34px; background: rgba(255,255,255,0.97); border-radius: var(--r); box-shadow: var(--shadow); padding: 10px; max-width: 880px; }
.st-book__tabs { display: flex; gap: 4px; padding: 4px; }
.st-book__tab { flex: 0 0 auto; padding: 9px 18px; border-radius: var(--r-pill); border: 0; background: transparent; font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--ink-soft); cursor: pointer; transition: background 0.25s, color 0.25s; }
.st-book__tab.is-active { background: var(--sun); color: #fff; }
.st-book__panel { display: none; }
.st-book__panel.is-active { display: block; }
.st-book__row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 0.8fr auto; gap: 4px; align-items: end; padding: 6px; }
.st-field { padding: 10px 14px; border-radius: var(--r-sm); }
.st-field + .st-field { border-left: 1px solid var(--line); }
.st-field label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--sun-deep); margin-bottom: 4px; }
.st-field input, .st-field select { width: 100%; border: 0; background: transparent; font: 600 14px/1.3 var(--sans); color: var(--ink); outline: none; padding: 0; }
.st-book__go { padding: 14px 26px; margin: 0 2px; }

/* ---------- Section scaffolding ---------- */
.st-section { padding: clamp(72px, 8vw, 120px) 0; }
.st-section--dark { background: var(--ink); color: #fff; }
.st-section--tint { background: var(--surface-2); }
.st-head { max-width: 720px; margin-bottom: 48px; }
.st-head h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3.1rem); letter-spacing: -0.025em; }
.st-section--dark .st-head h2 { color: #fff; }
.st-head p { margin-top: 18px; }
.st-head--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.st-head--split > div { max-width: 640px; }

/* ---------- Trust strip ---------- */
.st-trust { background: var(--ink); color: #fff; }
.st-trust__row { display: flex; flex-wrap: wrap; gap: 14px 40px; padding: 22px 0; align-items: center; }
.st-trust__item { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
.st-trust__item::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--sun); flex: none; }

/* ---------- Property cards ---------- */
.st-stays { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.st-card { position: relative; border-radius: var(--r); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.st-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.st-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.st-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.st-card:hover .st-card__media img { transform: scale(1.06); }
.st-card__suburb { position: absolute; top: 14px; left: 14px; background: rgba(27,18,9,0.78); color: #fff; backdrop-filter: blur(4px); padding: 6px 13px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; }
.st-card__save { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.92); color: var(--ink); cursor: pointer; display: grid; place-items: center; transition: background 0.25s, color 0.25s; }
.st-card__save:hover { background: var(--sun); color: #fff; }
.st-card__body { padding: 20px 20px 22px; }
.st-card__rating { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.st-card__rating .stars { color: var(--gold); letter-spacing: 1px; }
.st-card__rating .count { color: var(--ink-soft); font-weight: 500; }
.st-card__title { font-size: 19px; letter-spacing: -0.01em; }
.st-card__meta { margin-top: 8px; font-size: 13px; color: var(--ink-soft); display: flex; gap: 14px; }
.st-card__foot { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: baseline; justify-content: space-between; }
.st-card__price { font-size: 20px; font-weight: 800; color: var(--ink); }
.st-card__price small { font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.st-card__price b { color: var(--sun-deep); }
.st-card__link { font-size: 13px; font-weight: 700; color: var(--sun-deep); }

/* ---------- Why-direct feature list ---------- */
.st-why { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 56px; }
.st-why__item { padding: 26px 0; border-top: 1px solid var(--line); }
.st-why__item h3 { font-size: 19px; display: flex; align-items: center; gap: 12px; }
.st-why__item h3::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--sun); flex: none; }
.st-why__item p { margin-top: 10px; color: var(--ink-soft); font-size: 15px; padding-left: 21px; }

/* ---------- Area strip (editorial, varied) ---------- */
.st-areas { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 230px; gap: 16px; }
.st-area { position: relative; overflow: hidden; border-radius: var(--r); }
.st-area:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.st-area:nth-child(2) { grid-column: span 2; }
.st-area:nth-child(3) { grid-column: span 2; }
.st-area:nth-child(4) { grid-column: span 2; }
.st-area:nth-child(5) { grid-column: span 2; }
.st-area:nth-child(6) { grid-column: span 2; }
.st-area img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.st-area:hover img { transform: scale(1.05); }
.st-area::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,10,4,0.82) 0%, rgba(20,10,4,0.1) 55%, transparent 100%); }
.st-area__body { position: absolute; inset: auto 0 0 0; z-index: 1; padding: 22px; color: #fff; }
.st-area__name { font-family: var(--serif); font-style: italic; font-size: 22px; color: #fff; }
.st-area__blurb { margin-top: 6px; font-size: 13px; color: rgba(255,255,255,0.82); max-width: 42ch; }
.st-area:nth-child(1) .st-area__name { font-size: 30px; }

/* ---------- Owner earnings ---------- */
.st-owner__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
.st-owner__rows { display: grid; gap: 14px; }
.st-erow { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r); padding: 22px 24px; }
.st-erow__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.st-erow__type { font-size: 15px; font-weight: 700; color: #fff; }
.st-erow__uplift { font-size: 12px; font-weight: 800; color: var(--ink); background: var(--gold); padding: 5px 11px; border-radius: var(--r-pill); white-space: nowrap; }
.st-erow__bars { margin-top: 16px; display: grid; gap: 9px; }
.st-bar { display: grid; grid-template-columns: 96px 1fr auto; align-items: center; gap: 12px; font-size: 13px; }
.st-bar__label { color: rgba(255,255,255,0.6); }
.st-bar__track { height: 9px; border-radius: var(--r-pill); background: rgba(255,255,255,0.1); overflow: hidden; }
.st-bar__fill { height: 100%; border-radius: var(--r-pill); }
.st-bar--lt .st-bar__fill { background: rgba(255,255,255,0.4); }
.st-bar--ss .st-bar__fill { background: linear-gradient(90deg, var(--sun), var(--gold)); }
.st-bar__val { color: #fff; font-weight: 700; }
.st-owner__note { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.st-owner__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- Testimonials ---------- */
.st-quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.st-quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 30px 26px; }
.st-quote__mark { font-family: var(--serif); font-size: 46px; line-height: 0.6; color: var(--sun); }
.st-quote__text { margin-top: 14px; font-size: 16px; line-height: 1.65; color: var(--ink); }
.st-quote__who { margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }

/* ---------- Final CTA ---------- */
.st-final { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.st-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 85% 110%, rgba(255,106,44,0.5), transparent 60%); }
.st-final__inner { position: relative; z-index: 1; max-width: 760px; }
.st-final h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.4rem); letter-spacing: -0.025em; }
.st-final__sub { margin-top: 18px; color: rgba(255,255,255,0.85); max-width: 56ch; }
.st-final__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.st-final__contact { margin-top: 30px; font-size: 14px; color: rgba(255,255,255,0.7); display: flex; gap: 22px; flex-wrap: wrap; }
.st-final__contact a { color: var(--gold); font-weight: 600; }

/* ---------- Footer ---------- */
.st-footer { background: #140C06; color: rgba(255,255,255,0.66); padding: 64px 0 32px; }
.st-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.st-footer__brand .word { font-family: var(--serif); font-style: italic; font-size: 26px; color: #fff; }
.st-footer__brand p { margin-top: 12px; font-size: 14px; max-width: 34ch; }
.st-footer h4 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.st-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.st-footer a { font-size: 14px; transition: color 0.2s; }
.st-footer a:hover { color: var(--sun); }
.st-footer__group { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 12px; color: rgba(255,255,255,0.5); }
.st-footer__group b { color: #fff; }
.st-footer__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--group); box-shadow: 0 0 0 3px rgba(58,17,64,0.4); }
.st-footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }

/* ---------- Motion (enhances an already-visible default) ---------- */
.reveal { opacity: 1; }
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal.d1 { transition-delay: 0.08s; }
html.js .reveal.d2 { transition-delay: 0.16s; }
html.js .reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Mobile menu ---------- */
.st-mobile { position: fixed; inset: 0; z-index: var(--z-overlay); background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 40px; transform: translateY(-100%); transition: transform 0.5s var(--ease); }
.st-mobile.is-open { transform: none; }
.st-mobile a { font-family: var(--serif); font-style: italic; font-size: 30px; color: #fff; padding: 10px 0; }
.st-mobile__close { position: absolute; top: 24px; right: 24px; background: none; border: 0; color: #fff; font-size: 30px; cursor: pointer; }

/* ============================================================
   v3 — page-signature components
   home: season strip · browse: filter chips + dense grid
   detail: mosaic + amenities + house truths + rate rows
   owners: comparison table + 3 steps · areas: editorial bands
   about: promise panel
   ============================================================ */

/* ---------- Season strip (home signature) ---------- */
.st-seasons__track { display: grid; grid-template-columns: 5fr 3fr 4fr; gap: 5px; align-items: end; }
.st-seasons__seg { border-radius: 6px; }
.st-seasons__seg--dry { height: 16px; background: linear-gradient(90deg, var(--sun), var(--gold)); }
.st-seasons__seg--build { height: 10px; background: #F0B98E; }
.st-seasons__seg--wet { height: 6px; background: var(--line); }
.st-seasons__months { display: grid; grid-template-columns: 5fr 3fr 4fr; gap: 5px; margin-top: 8px; margin-bottom: 38px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.st-seasons__cols { display: grid; grid-template-columns: 5fr 3fr 4fr; gap: 36px; }
.st-season h3 { font-size: 19px; letter-spacing: -0.01em; }
.st-season p { margin-top: 10px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }
.st-season__tag { display: inline-block; margin-top: 14px; font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: var(--r-pill); }
.st-season--dry .st-season__tag { background: rgba(247, 162, 59, 0.16); color: var(--sun-press); }
.st-season--build .st-season__tag { background: rgba(232, 82, 26, 0.09); color: var(--sun-deep); }
.st-season--wet .st-season__tag { background: rgba(88, 73, 61, 0.09); color: var(--ink-soft); }

/* ---------- Filter chips + results (browse signature) ---------- */
.st-book__row--filters { grid-template-columns: 1.2fr 1fr 1fr auto; }
.st-chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.st-chips__label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-right: 6px; }
.st-chip { padding: 9px 17px; border-radius: var(--r-pill); border: 1.5px solid rgba(255,255,255,0.22); background: transparent; font-family: var(--sans); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.88); cursor: pointer; transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.3s var(--ease); }
.st-chip:hover { border-color: var(--sun); color: #fff; transform: translateY(-1px); }
.st-chip.is-on { background: var(--sun); border-color: var(--sun); color: #fff; }
.st-results { font-size: 14px; font-weight: 600; color: var(--ink-soft); margin-bottom: 24px; }
.st-results b { color: var(--ink); }
.st-empty { display: none; padding: 48px 30px; border: 1.5px dashed var(--line); border-radius: var(--r); text-align: center; color: var(--ink-soft); font-size: 15px; }
.st-empty.is-shown { display: block; }
.st-card.is-hidden { display: none; }

/* dense marketplace grid */
.st-stays--dense { gap: 18px; }
.st-stays--dense .st-card__body { padding: 16px 17px 18px; }
.st-stays--dense .st-card__title { font-size: 17px; }
.st-stays--dense .st-card__foot { margin-top: 13px; padding-top: 13px; }
.st-card__hook { margin-top: 9px; font-size: 13px; color: var(--ink-soft); display: flex; gap: 8px; align-items: baseline; line-height: 1.45; }
.st-card__hook::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; transform: translateY(-2px); }

/* ---------- Photo mosaic (property-detail signature) ---------- */
.st-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 215px 215px; gap: 10px; }
.st-mosaic > * { position: relative; border-radius: var(--r-sm); overflow: hidden; }
.st-mosaic > *:first-child { grid-column: 1 / 3; grid-row: 1 / 3; border-radius: var(--r); }
.st-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.st-mosaic > *:hover img { transform: scale(1.045); }

/* amenities grid */
.st-amen { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; }
.st-amen__item { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); font-size: 14.5px; font-weight: 600; color: var(--ink); }
.st-amen__item::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sun); flex: none; }

/* house truths */
.st-truths { position: relative; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); box-shadow: var(--shadow-sm); padding: clamp(26px, 3.5vw, 42px); overflow: hidden; }
.st-truths::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: linear-gradient(180deg, var(--gold), var(--sun)); }
.st-truths ul { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 14px; }
.st-truths li { display: flex; gap: 13px; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.st-truths li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex: none; }

/* seasonal rate rows (booking card) */
.st-rates { margin-top: 16px; }
.st-rates__row { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 2px; border-bottom: 1px dashed var(--line); font-size: 13px; color: var(--ink-soft); }
.st-rates__row b { font-size: 14px; font-weight: 800; color: var(--ink); }
.st-rates__row.is-peak b { color: var(--sun-deep); }

/* ---------- Comparison table (list-your-property signature) ---------- */
.st-compare { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.st-compare table { width: 100%; min-width: 660px; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--surface); }
.st-compare th, .st-compare td { padding: 17px 22px; text-align: left; vertical-align: top; font-size: 14.5px; line-height: 1.55; border-bottom: 1px solid var(--line); }
.st-compare thead th { font-size: 12px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-soft); background: var(--surface-2); }
.st-compare thead th:nth-child(2) { color: var(--sun-deep); }
.st-compare tbody th { font-weight: 700; color: var(--ink); width: 24%; }
.st-compare td.yes { color: var(--ink); background: #FFF9F4; }
.st-compare td.diy { color: var(--ink-soft); }
.st-compare tbody tr:last-child th, .st-compare tbody tr:last-child td { border-bottom: 0; }
.st-compare__hint { display: none; font-size: 12px; color: var(--ink-soft); margin: 10px 2px 0; }
@media (max-width: 760px) { .st-compare__hint { display: block; } }

/* 3-step how it works */
.st-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.st-step { padding: 30px 28px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.st-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.st-step__num { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--sun); color: #fff; font-weight: 800; font-size: 18px; }
.st-step h3 { margin-top: 18px; font-size: 18px; }
.st-step p { margin-top: 10px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }

/* ---------- Editorial area bands (areas signature) ---------- */
.st-band { display: grid; grid-template-columns: 1fr 1fr; background: var(--surface); }
.st-band--tint { background: var(--surface-2); }
.st-band__media { position: relative; min-height: 420px; overflow: hidden; }
.st-band__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.st-band:hover .st-band__media img { transform: scale(1.03); }
.st-band__body { align-self: center; justify-self: start; max-width: 620px; padding: clamp(44px, 5.5vw, 88px) clamp(24px, 4.5vw, 72px); }
.st-band--flip .st-band__media { order: 2; }
.st-band--flip .st-band__body { justify-self: end; }
.st-band__name { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: clamp(1.55rem, 1.2rem + 1.4vw, 2.25rem); letter-spacing: -0.01em; color: var(--ink); line-height: 1.15; }
.st-band__char { margin-top: 14px; color: var(--ink-soft); line-height: 1.7; font-size: 15.5px; }
.st-band ul { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 10px; }
.st-band li { display: flex; gap: 12px; font-size: 14.5px; color: var(--ink); line-height: 1.55; }
.st-band li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sun); margin-top: 7px; flex: none; }
.st-band__homes { margin-top: 20px; font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.st-band__homes b { color: var(--sun-deep); }

/* ---------- Promise panel (about signature) ---------- */
.st-promise { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); padding: clamp(30px, 4.5vw, 56px); max-width: 880px; overflow: hidden; }
.st-promise::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: linear-gradient(180deg, var(--sun), var(--gold)); }
.st-promise ol { list-style: none; counter-reset: promise; margin: 28px 0 0; padding: 0; display: grid; gap: 22px; }
.st-promise li { counter-increment: promise; display: flex; gap: 18px; }
.st-promise li::before { content: counter(promise); flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--sun); color: #fff; font-weight: 800; font-size: 15px; display: grid; place-items: center; }
.st-promise h3 { font-size: 16.5px; }
.st-promise li p { margin-top: 5px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.st-promise__sign { margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.st-promise__name { font-family: var(--serif); font-style: italic; font-size: 25px; color: var(--ink); }
.st-promise__role { font-size: 13px; color: var(--ink-soft); }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid rgba(255, 106, 44, 0.55); outline-offset: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .st-stays { grid-template-columns: repeat(2, 1fr); }
  .st-areas { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .st-area:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .st-area:nth-child(n) { grid-column: span 1; }
  .st-owner__grid { grid-template-columns: 1fr; gap: 36px; }
  .st-quotes, .st-why { grid-template-columns: 1fr; }
  .st-book__row { grid-template-columns: 1fr 1fr; }
  .st-book__go { grid-column: span 2; }
  .st-field + .st-field { border-left: 0; border-top: 1px solid var(--line); }
  .st-footer__top { grid-template-columns: 1fr 1fr; }
  .st-seasons__cols { grid-template-columns: 1fr; gap: 26px; }
  .st-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; grid-auto-rows: 170px; }
  .st-mosaic > *:first-child { grid-column: 1 / 3; grid-row: span 2; }
  .st-band { grid-template-columns: 1fr; }
  .st-band--flip .st-band__media { order: 0; }
  .st-band__media { min-height: 280px; }
  .st-band__body, .st-band--flip .st-band__body { justify-self: stretch; max-width: none; }
  .st-steps { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .st-nav__links { display: none; }
  .st-nav__burger { display: flex; }
  .st-nav__cta { display: none; }
  .st-stays { grid-template-columns: 1fr; }
  .st-areas { grid-template-columns: 1fr; }
  .st-book__row { grid-template-columns: 1fr; }
  .st-book__go { grid-column: 1; }
  .st-field + .st-field { border-top: 1px solid var(--line); }
  .st-footer__top { grid-template-columns: 1fr; }
  .st-mosaic { grid-auto-rows: 140px; }
  .st-seasons__months span { font-size: 10px; letter-spacing: 0.04em; }
  .st-compare th, .st-compare td { padding: 14px 16px; }
  .st-band__body { padding: 36px 24px 44px; }
  .st-promise li { gap: 14px; }
}
