/* ════════════════════════════════════════════════════════════
   SaffronStays — Partner. Editorial luxury system.
   paper / ink / saffron / forest
   ════════════════════════════════════════════════════════════ */

:root {
  /* ── legacy warm system (sections not yet converted) ── */
  --paper: #f7f1e2;
  --paper-deep: #efe5cd;
  --ink: #211e1b;
  --ink-soft: rgba(33, 30, 27, 0.62);
  --hairline: rgba(33, 30, 27, 0.16);
  --saffron: #fba919;
  --saffron-deep: #d88c05;
  --forest: #16261d;
  --forest-2: #1d3327;
  --cream-on-dark: #f3ecd9;
  --cream-soft: rgba(243, 236, 217, 0.6);
  --hairline-light: rgba(243, 236, 217, 0.18);

  /* ── new design system ─────────────────────────────── */
  /* surfaces */
  --white: #ffffff;
  --ivory: #faf9f6;        /* warm tonal step for a chapter — almost invisible */
  --bg-secondary: #f9f9f9;
  /* text */
  --heading: #000000;
  --primary: #373636;
  --text-secondary: #757575;
  --caption: #9f9f9f;
  /* borders */
  --border-active: #373636;
  --border-dark: #d0d0d0;
  --border-1: #e7e7e7;
  --border-2: #f0f0f0;
  /* accents — used sparingly */
  --gold: #fba919;         /* Gold Base */
  --gold-antique: #8b6a2e; /* deep antique gold — CTA hover fill */
  --navy: #1f3a5f;   /* links / info — confirm */
  --green: #0d8f4d;  /* success */
  --ho-green: #14503f; /* Host Connect app chrome — the product's own brand */
  --red: #d64545;    /* errors — confirm */
  /* gradients — premium moments only */
  --grad-editorial: linear-gradient(180deg, #3f2c20, #060201);
  --grad-accent: linear-gradient(120deg, #3f2c20, #9b4934);
  --grad-surface: linear-gradient(180deg, #e4eeff, #cbddfb);
  --grad-success: linear-gradient(180deg, #ffffff, #0d8f4d);
  /* radius */
  --r-8: 8px; --r-16: 16px; --r-24: 24px; --r-32: 32px;
  /* elevation */
  --shadow-1: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-2: 0 20px 50px rgba(0, 0, 0, 0.10);

  /* ── fonts ─────────────────────────────────────────── */
  --font-display: "Megafield", "Fraunces", Georgia, serif;
  --font-serif: "Fraunces", "Butler", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Megafield display font (OTF). Falls back to Fraunces if unavailable. */
@font-face {
  font-family: "Megafield";
  src: url("fonts/Megafield-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Megafield";
  src: url("fonts/Megafield-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Megafield";
  src: url("fonts/Megafield-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--primary);
  line-height: 1.6;
  font-size: clamp(0.95rem, 0.85rem + 0.3vw, 1.1rem);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #fff; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
h1, h2, h3 { font-weight: 400; }

/* ── grain ───────────────────────────────────────────── */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ── cursor ──────────────────────────────────────────── */
.cursor { display: none; }
@media (pointer: fine) {
  .cursor { display: block; position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; }
  .cursor__dot {
    position: absolute; top: -3px; left: -3px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--saffron);
  }
  .cursor__ring {
    position: absolute; top: -20px; left: -20px;
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--saffron);
    display: grid; place-items: center;
    transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
                top 0.35s var(--ease-out), left 0.35s var(--ease-out),
                background-color 0.35s, border-color 0.35s;
  }
  .cursor__label {
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--ink);
    opacity: 0; transition: opacity 0.25s;
  }
  .cursor--link .cursor__ring { width: 56px; height: 56px; top: -28px; left: -28px; background: rgba(251, 169, 25, 0.14); }
  .cursor--drag .cursor__ring,
  .cursor--flip .cursor__ring {
    width: 72px; height: 72px; top: -36px; left: -36px;
    background: var(--saffron); border-color: var(--saffron);
  }
  .cursor--drag .cursor__label, .cursor--flip .cursor__label { opacity: 1; }
  .cursor--drag .cursor__dot, .cursor--flip .cursor__dot { opacity: 0; }
  body.has-cursor, body.has-cursor a, body.has-cursor button,
  body.has-cursor input, body.has-cursor select, body.has-cursor summary,
  body.has-cursor label { cursor: none; }
}

/* ── loader ──────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 9500;
  display: grid; place-items: center;
  background: transparent;
}
.loader__curtain { position: absolute; inset: 0; background: var(--white); }
.loader__inner { position: relative; z-index: 2; text-align: center; }
.loader__mark img { width: clamp(120px, 16vw, 180px); margin: 0 auto 1rem; }
.loader__tag {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--ink-soft);
}
.loader__count {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-variant-numeric: tabular-nums;
  color: var(--saffron-deep);
}
body[data-state="ready"] .loader { display: none; }

/* ── header ──────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--gutter);
  transition: background-color 0.45s, box-shadow 0.45s, padding 0.45s;
}
.header__logo img { width: 164px; transition: filter 0.45s; }
.header__nav { display: flex; gap: 1.8rem; }
.header__nav a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--text-secondary); position: relative; padding: 0.2rem 0;
  transition: color 0.35s;
}
.header__nav a:hover { color: var(--primary); }
.header__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__right { display: flex; align-items: center; gap: 1.4rem; }
.header__phone { font-size: 0.82rem; font-weight: 600; color: var(--ink); transition: color 0.45s; }
.header--scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--hairline);
  padding: 0.7rem var(--gutter);
}

/* ── buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1.05rem 2rem; border-radius: 999px; border: 1px solid var(--ink);
  position: relative; overflow: hidden;
  background: transparent; color: var(--ink);
  transition: color 0.4s var(--ease-out), border-color 0.4s, background-color 0.4s;
  will-change: transform;
}
.btn span { position: relative; z-index: 2; }
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--saffron);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.45s var(--ease-out);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--ink); border-color: var(--saffron); }
.btn--solid { background: var(--saffron); border-color: var(--saffron); color: var(--ink); }
.btn--solid::before { background: var(--cream-on-dark); }
.btn--ghost { border-color: rgba(243, 236, 217, 0.5); color: var(--cream-on-dark); }
.btn--ghost:hover { color: var(--ink); }
.btn--pill { padding: 0.75rem 1.5rem; background: var(--saffron); border-color: var(--saffron); }
.btn--small { padding: 0.85rem 1.6rem; }
/* ── new-system buttons (radius 16, no bounce) ───────── */
.btn--dark, .btn--pill, .btn--outline {
  text-transform: none; font-weight: 600; letter-spacing: 0.01em;
  border-radius: var(--r-16); overflow: visible;
}
.btn--dark::before, .btn--pill::before, .btn--outline::before { content: none; }

/* primary CTA — charcoal, and charcoal only; deepens slightly on hover */
.btn--dark {
  min-height: 56px; padding: 0 2rem; font-size: 16px;
  border-radius: 100px;
  background: var(--primary); border-color: var(--primary); color: #fff;
  transition: background-color 0.2s var(--ease-out), border-color 0.2s,
              box-shadow 0.2s, transform 0.2s;
}
.btn--dark:hover {
  background: var(--heading); border-color: var(--heading);
  color: #fff; /* hold the text white — a legacy .btn:hover was darkening it */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.20);
  transform: translateY(-2px);
}
.btn--dark:hover span { color: #fff; }

/* nav CTA — charcoal, subtly inverts on hover (no shadow) */
.btn--pill {
  min-height: 44px; padding: 0 1.25rem; font-size: 14px;
  background: var(--primary); border-color: var(--primary); color: #fff;
  transition: background-color 0.2s var(--ease-out), border-color 0.2s, color 0.2s;
}
.btn--pill:hover { background: transparent; border-color: var(--border-active); color: var(--primary); }
/* nav CTA stays visible over the (as-yet unconverted) dark sections */

/* tertiary outline (available for rollout) */
.btn--outline {
  background: transparent; border-color: var(--border-active); color: var(--primary);
}
.btn--outline:hover { background: var(--bg-secondary); color: var(--primary); border-color: var(--border-active); }

/* ── section intros (the editorial reveal system) ────── */
/* Three levels of text: the heading waits in a soft neutral tone, takes full
   contrast once it reaches the reading position, the copy follows a beat
   later, and only then does the section's interaction come alive. One thing
   moves at a time. */
[data-intro] h2 {
  color: var(--text-secondary); opacity: 0.4;
  transform: translateY(14px);
  transition: color 0.35s var(--ease-out), opacity 0.35s var(--ease-out),
              transform 0.35s var(--ease-out);
}
[data-intro].is-read h2 { color: var(--heading); opacity: 1; transform: none; }
[data-intro] p {
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.35s var(--ease-out) 0.22s, transform 0.35s var(--ease-out) 0.22s;
}
[data-intro].is-read p { opacity: 1; transform: none; }

/* ── shared section bits ─────────────────────────────── */
.section { padding: clamp(2.25rem, 4vw, 3.5rem) var(--gutter); position: relative; }
.section--dark { background: var(--forest); color: var(--cream-on-dark); position: relative; }
.section__index {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--saffron-deep);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section__index hr { flex: 0 0 clamp(3rem, 8vw, 6rem); border: 0; border-top: 1px solid currentColor; opacity: 0.5; }
.section__index--light { color: var(--saffron); }

/* split-text plumbing */
[data-split] .w { display: inline-block; overflow: hidden; vertical-align: top; }
[data-split] .w > i {
  display: inline-block; font-style: inherit;
  transform: translateY(115%);
}
html.no-js [data-split] .w > i, html.no-anim [data-split] .w > i { transform: none; }
.anim-fade { opacity: 0; transform: translateY(24px); }
html.no-js .anim-fade, html.no-anim .anim-fade { opacity: 1; transform: none; }

/* progress dots — shared by every section that steps through states */
.dots { display: flex; gap: 9px; }
.dot {
  width: 7px; height: 7px; padding: 0;
  background: var(--border-dark); border: 0; border-radius: 50%;
  opacity: 0.35;
  transition: opacity 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.dot.is-active { background: var(--gold); opacity: 1; }
button.dot { cursor: pointer; }

/* ── hero (one promise + quiet hospitality moments) ──── */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(6rem, 10vw, 8rem) var(--gutter) clamp(2rem, 3.5vw, 3rem);
  background: var(--white); color: var(--primary);
}
.hero__grid {
  display: grid; grid-template-columns: 42fr 58fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  width: 100%; max-width: 1280px; margin: 0 auto;
}
.hero__content { max-width: 40rem; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.8vw, 66px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin-bottom: 22px;
}
.hero__sub {
  max-width: 34rem;
  font-size: clamp(15px, 1.3vw, 17px); line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.hero__cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* quiet reassurance — small type, no pills, no badges, no icons */
.hero__trust {
  margin-top: 36px; padding-top: 22px;
  border-top: 1px solid var(--border-1);
  font-size: 13px; color: var(--text-secondary);
}

.hero__visual { position: relative; }
.hero__frame {
  border-radius: var(--r-24); overflow: hidden;
  aspect-ratio: 4 / 3.4;
  box-shadow: var(--shadow-1);
}
/* the homes crossfade in place — a new villa each time, never a new photo of
   the same one. The outgoing frame rests a touch wider, so each arrival settles. */
.hero__frame { position: relative; }
.hshot {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 60%;
  opacity: 0; transform: scale(1.04);
  transition: opacity 0.45s var(--ease-out), transform 1.2s var(--ease-out);
}
.hshot.is-on { opacity: 1; transform: none; }

/* ── bridge (hero → next chapter) ────────────────────── */
.bridge {
  background: var(--white);
  text-align: center;
  /* sits well clear of the hero above, and off the section below */
  padding: clamp(40px, 5vw, 64px) var(--gutter) clamp(32px, 4vw, 48px);
}
.bridge__q {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 400; line-height: 1.35; letter-spacing: -0.01em;
  color: var(--primary);
  max-width: 780px; margin: 0 auto;
}
.bridge__q span { color: var(--text-secondary); }

/* ── trust (proof) ───────────────────────────────────── */
/* A hospitality environment sits behind this section, but never as a photograph:
   blurred and washed to 86% ivory, it reads as texture. The content stays first. */
.trust { background: var(--ivory); }
.trust__head { max-width: 900px; margin: 0 auto clamp(32px, 4vw, 48px); text-align: center; }
.trust__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.9vw, 38px);
  font-weight: 400; line-height: 1.2; letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: clamp(24px, 2.4vw, 32px);
}
.trust__story {
  font-size: 18px; line-height: 1.7;
  color: var(--text-secondary);
  max-width: 680px; margin: 0 auto;
}
.trust__cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1080px; margin: 0 auto;
}
.info-card {
  padding: 8px clamp(24px, 4vw, 48px);
  border-left: 1px solid var(--border-1);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.info-card:first-child { border-left: 0; }
.info-card__value {
  font-family: var(--font-sans);
  font-size: clamp(40px, 4.5vw, 52px); font-weight: 600; line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--heading);
  display: flex; align-items: baseline;
  margin-bottom: 16px;
}
.info-card__value sup { font-size: 0.38em; font-weight: 600; color: var(--gold); margin-left: 2px; }
.info-card__desc { font-size: 16px; line-height: 1.6; color: var(--text-secondary); }

/* The press strip sits on the page, not in a card. A hairline is all it needs
   to own its zone — the same rule that already separates the stats above it. */
.trust__press {
  max-width: 1080px; margin: clamp(32px, 4vw, 48px) auto 0;
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--border-1);
  text-align: center;
}
.trust__press-line {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--caption);
  margin-bottom: clamp(26px, 2.8vw, 34px);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.trust.is-live .trust__press-line { opacity: 1; transform: none; }
/* equal columns, so names of very different lengths still read evenly spaced */
/* columns sized to each logo's native aspect ratio, so all four resolve to one
   shared cap height and fill the row with no wrap. transparent SVG/PNG only. */
.trust__logos {
  display: grid;
  grid-template-columns: 6.7fr 14.6fr 3.7fr 11.5fr;
  align-items: center; justify-items: center;
  gap: clamp(20px, 3vw, 44px);
  max-width: 1120px; margin: 0 auto;
}
.trust__logos .press-logo {
  width: 100%; height: 46px;
  object-fit: contain; object-position: center;
  filter: grayscale(1) opacity(0.6);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), filter 0.35s var(--ease-out);
  transition-delay: calc(var(--i) * 0.08s + 0.16s);
  opacity: 0; transform: translateY(10px);
}
.trust.is-live .trust__logos .press-logo { opacity: 1; transform: none; }
.trust__logos .press-logo:hover { filter: grayscale(0) opacity(1); }

/* ── estimator (revenue calculator) ──────────────────── */
.estimator { background: var(--white); }
.estimator__head { max-width: 820px; margin: 0 auto clamp(28px, 4vw, 44px); text-align: center; }
.estimator__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.9vw, 38px);
  font-weight: 400; line-height: 1.4; letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: clamp(24px, 2.4vw, 32px);
}
.estimator__sub {
  font-size: 18px; line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px; margin: 0 auto;
}
.estimator__machine {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1080px; margin: 0 auto;
}
.estimator__inputs { display: grid; gap: clamp(32px, 4vw, 48px); }
.field-module__head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 18px;
}
.field-module__head label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-secondary);
}
.field-module__head output {
  font-family: var(--font-sans);
  font-size: 24px; font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--heading);
}
.field-module__hint { margin-top: 14px; font-size: 13px; color: var(--caption); }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 4px;
  background: linear-gradient(to right, var(--primary) var(--fill, 50%), var(--border-1) var(--fill, 50%));
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-1);
  transition: border-color 0.2s, transform 0.2s var(--ease-out);
}
input[type="range"]::-webkit-slider-thumb:hover,
input[type="range"]:active::-webkit-slider-thumb { transform: scale(1.12); border-color: var(--gold-antique); }
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 2px solid var(--primary);
  box-shadow: var(--shadow-1);
}

.estimator__summary {
  background: var(--primary); color: #fff;
  border-radius: var(--r-24);
  padding: clamp(32px, 4vw, 48px);
  text-align: center;
}
.estimator__gauge { width: min(240px, 70%); margin: 0 auto 4px; overflow: visible; }
.estimator__gauge path { fill: none; stroke-width: 3; stroke-linecap: round; }
.estimator__gauge-track { stroke: rgba(255, 255, 255, 0.14); }
.estimator__gauge-fill { stroke: var(--gold); }
.estimator__label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.estimator__figure {
  font-family: var(--font-sans);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  margin: 8px 0 4px;
}
.estimator__monthly { font-size: 16px; color: var(--gold); }

.estimator__note {
  max-width: 700px; margin: clamp(40px, 5vw, 56px) auto 0; text-align: center;
  font-size: 14px; line-height: 1.6; color: var(--caption);
}
.estimator__cta { max-width: 620px; margin: clamp(36px, 4vw, 48px) auto 0; text-align: center; }
.estimator__cta p { font-size: 18px; line-height: 1.6; color: var(--text-secondary); margin-bottom: 28px; }

/* ── homes (curated gallery · scroll-responsive, never pinned) ── */
.homes { background: var(--white); overflow: hidden; }
.homes__head { max-width: 820px; margin: 0 auto clamp(24px, 3vw, 40px); text-align: center; }
.homes__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.9vw, 38px);
  font-weight: 400; line-height: 1.4; letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: clamp(24px, 2.4vw, 32px);
}
.homes__title em { font-style: italic; color: var(--gold-antique); }
.homes__sub {
  font-size: 17px; line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px; margin: 0 auto;
}

/* a portfolio that keeps moving — one continuous strip, never a slideshow.
   rAF drives the transform, so there is no CSS transition to fight the drag. */
.homes__viewport { overflow: hidden; cursor: grab; }
.homes__viewport.is-drag { cursor: grabbing; }
.homes__track {
  display: flex; gap: clamp(24px, 3vw, 48px);
  width: max-content;
  will-change: transform;
}

/* arrows, right-aligned above the strip */
.homes__controls {
  display: flex; justify-content: flex-end; gap: 10px;
  max-width: 1240px; margin: 0 auto clamp(20px, 2vw, 28px);
}
.hnav {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: var(--white); border: 1px solid var(--border-1);
  color: var(--primary);
  transition: border-color 0.25s var(--ease-out), color 0.25s, opacity 0.25s;
}
.hnav svg { width: 18px; height: 18px; }
.hnav:hover { border-color: var(--border-dark); color: var(--heading); }
.hnav:disabled { opacity: 0.3; pointer-events: none; }
/* neighbours stay in view and stay legible — they are the invitation to explore.
   The centred home is the only one at full weight. */
.home-card {
  flex: 0 0 auto;
  width: clamp(260px, 27vw, 380px);
  opacity: 0.55;
  transition: opacity 0.4s var(--ease-out);
  user-select: none;
}
.home-card.is-focus { opacity: 1; }
.home-card__img {
  border-radius: var(--r-24); overflow: hidden;
  aspect-ratio: 4 / 5; background: var(--bg-secondary);
  box-shadow: var(--shadow-1);
  transform: scale(0.96);
  transition: box-shadow 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.home-card.is-focus .home-card__img { transform: none; box-shadow: var(--shadow-2, var(--shadow-1)); }
.home-card__img img { pointer-events: none; -webkit-user-drag: none; }
.home-card__img img { width: 100%; height: 100%; object-fit: cover; }
.home-card__body { padding-top: 18px; }
.home-card__name {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 22px); font-weight: 400; line-height: 1.2;
  color: var(--heading); margin-bottom: 5px;
}
.home-card__place {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--caption);
}

/* ── belong (the conclusion — a moment, not a slide) ──── */
.belong { background: var(--white); }
.belong__inner {
  max-width: 720px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.belong__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.3vw, 42px);
  font-weight: 400; line-height: 1.4; letter-spacing: -0.015em;
  color: var(--heading); margin-bottom: clamp(26px, 2.6vw, 34px);
}
.belong__sub {
  font-size: 17px; line-height: 1.6; color: var(--text-secondary);
  max-width: 46ch; margin: 0 auto 32px;
}

/* ── craft (pillars) ─────────────────────────────────── */
.craft { max-width: 1500px; margin: 0 auto; }
.craft__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  font-weight: 360; line-height: 1.05;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.craft__title em { color: var(--saffron-deep); }
.craft__stack { display: grid; gap: 1.5rem; }
.pillar {
  position: sticky;
  border-radius: 1.25rem;
  padding: clamp(1.9rem, 3.6vw, 3rem) clamp(1.9rem, 3.6vw, 3.4rem);
  background: var(--ivory);
  color: var(--ink);
  border: 1px solid var(--border-1);
  border-inline-start: 4px solid var(--accent);
  display: flex; flex-direction: column;
  box-shadow: 0 -8px 34px rgba(33, 30, 27, 0.09);
}
.pillar--paper   { --accent: var(--saffron-deep); top: 14vh; }
.pillar--forest  { --accent: var(--forest-2);     top: 17vh; }
.pillar--saffron { --accent: var(--saffron);      top: 20vh; }
.pillar__head { display: flex; align-items: baseline; gap: 1.1rem; margin-bottom: 0.9rem; }
.pillar__no {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem); line-height: 1;
  color: var(--accent); font-weight: 500;
}
.pillar__head h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 460; line-height: 1.15;
}
.pillar__lede {
  font-size: clamp(0.98rem, 1.2vw, 1.1rem); line-height: 1.6;
  color: var(--ink-soft); max-width: 42rem; margin-bottom: 1.6rem;
}
.pillar__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: auto; padding-top: 0.4rem; }
.pillar__chips li {
  font-size: 0.84rem; font-weight: 600; color: var(--ink);
  padding: 0.5rem 1rem;
  background: rgba(33, 30, 27, 0.045);
  border: 1px solid var(--hairline);
  border-radius: 999px;
}

/* ── host connect (what the owner sees) ──────────────── */
/* the device itself — shared shell, the Host Connect screen fills it */
.phone {
  width: 100%; flex: 0 0 auto;
  aspect-ratio: 9 / 17.5;
  background: var(--bg-secondary);
  border: 1px solid var(--border-1);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}
.phone__screen {
  position: relative; height: 100%;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-1);
  border-radius: 26px;
  overflow: hidden;
}
.hoapp { background: var(--white); }
.hoapp__head { max-width: 820px; margin: 0 auto clamp(24px, 3vw, 40px); text-align: center; }
.hoapp__label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-antique); margin-bottom: 14px;
}
.hoapp__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.9vw, 38px);
  font-weight: 400; line-height: 1.4; letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: clamp(24px, 2.4vw, 32px);
}
.hoapp__sub {
  font-size: 17px; line-height: 1.6; color: var(--text-secondary);
  max-width: 620px; margin: 0 auto;
}
.hoapp__body {
  display: grid; grid-template-columns: 40fr 60fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
  max-width: 1040px; margin: 0 auto;
}

/* LEFT — the owner's question, answered before the phone shows it */
.hoapp__story { display: flex; flex-direction: column; align-items: flex-start; }
/* tall enough for the longest story ("Guest communication managed" runs to
   160px) — the copy was landing on top of the dots below it */
.hoapp__states { position: relative; width: 100%; min-height: 162px; }
.hstate { position: absolute; inset: 0; visibility: hidden; }
.hstate.is-active { visibility: visible; }
.hstate__title, .hstate__line {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}
.hstate.is-active .hstate__title { opacity: 1; transform: none; }
.hstate.is-active .hstate__line { opacity: 1; transform: none; transition-delay: 0.1s; }
.hstate__title {
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 28px); line-height: 1.4; letter-spacing: -0.01em;
  color: var(--heading); margin-bottom: 14px;
}
.hstate__line { font-size: clamp(14px, 1.2vw, 16px); line-height: 1.6; color: var(--text-secondary); max-width: 34ch; }
.hoapp .dots { margin-top: 32px; }

/* RIGHT — the app itself */
.hoapp__stage {
  display: flex; align-items: center; justify-content: center;
  background: var(--ivory);
  border: 1px solid var(--border-1);
  border-radius: 28px;
  padding: clamp(28px, 3.2vw, 40px) clamp(16px, 2vw, 28px);
}
.hoapp__device { width: min(300px, 100%); }
/* the real app: a light screen with dark green chrome at the foot */
.phone--ho { background: var(--bg-secondary); }
.phone--ho .phone__screen { display: flex; flex-direction: column; background: var(--white); }
.hosc__bar {
  flex: 0 0 auto; display: flex; align-items: center;
  padding: 14px 14px 10px;
  background: linear-gradient(180deg, #eef1f0, var(--white));
}
.hosc__hi { font-size: 13px; font-weight: 700; color: var(--heading); }

/* the app opens on its own brand, then gets out of the way once */
.hosplash {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  background: var(--ho-green);
  transition: opacity 0.55s var(--ease-out);
}
.hosplash img {
  width: 58%;
  filter: brightness(0) invert(1); /* the asset is the orange wordmark */
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.5s var(--ease-out), transform 0.7s var(--ease-out);
}
.hoapp.is-live .hosplash img { opacity: 1; transform: none; }
.hosplash.is-gone { opacity: 0; pointer-events: none; }
.hosc__feed { position: relative; flex: 1; }
.hoscreen {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; gap: 7px;
  padding: 10px 11px 12px;
  overflow: hidden;
  visibility: hidden;
}
.hoscreen.is-active { visibility: visible; }
/* every block in a screen waits its turn, so the screen builds rather than lands */
.hoscreen > * {
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.hoscreen.is-live > * {
  opacity: 1; transform: none;
  transition-delay: calc(var(--r) * 0.09s + 0.1s);
}

/* the earnings card that opens Home and Earnings */
.hoshare {
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(180deg, #eef1f0, var(--white));
  border: 1px solid var(--border-1); border-radius: 12px;
  padding: 11px 12px 4px;
}
.hoshare__label { font-size: 8.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--caption); }
.hoshare__value {
  font-size: 20px; font-weight: 700; color: var(--heading);
  font-variant-numeric: tabular-nums; line-height: 1.1; margin: 1px 0;
}
.hoshare__range { font-size: 8px; color: var(--caption); margin-bottom: 8px; }
.hoshare__row {
  display: flex; align-items: center; gap: 7px; width: 100%;
  padding: 7px 0; font-size: 9.5px; color: var(--primary);
  border-top: 1px solid var(--border-1);
}
.hoshare__row s { margin-left: auto; text-decoration: none; font-weight: 700; font-size: 10px; color: var(--heading); }
.hoshare__row s.is-neg { color: #c2557a; }
.hoarrow {
  flex: 0 0 auto; position: relative;
  width: 16px; height: 16px; border-radius: 50%; background: var(--ho-green);
}
.hoarrow::after {
  content: ""; position: absolute; inset: 0; background: #fff;
  -webkit-mask: center / 8px no-repeat; mask: center / 8px no-repeat;
}
.hoarrow--up::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M9 7h8v8' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M9 7h8v8' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.hoarrow--down { background: #c2557a; }
.hoarrow--down::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 7 17 17M17 9v8H9' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 7 17 17M17 9v8H9' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* payout mini */
.hopay {
  display: flex; align-items: center; gap: 9px;
  background: var(--white); border: 1px solid var(--border-1); border-radius: 10px;
  padding: 9px 10px;
}
.hopay__icon {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: var(--ho-green); position: relative;
}
.hopay__icon::after {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='6.5' rx='7' ry='3'/%3E%3Cpath d='M5 6.5v5c0 1.7 3.1 3 7 3s7-1.3 7-3v-5M5 11.5v5c0 1.7 3.1 3 7 3s7-1.3 7-3v-5' fill='none' stroke='%23000' stroke-width='1.6'/%3E%3C/svg%3E") center / 14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='6.5' rx='7' ry='3'/%3E%3Cpath d='M5 6.5v5c0 1.7 3.1 3 7 3s7-1.3 7-3v-5M5 11.5v5c0 1.7 3.1 3 7 3s7-1.3 7-3v-5' fill='none' stroke='%23000' stroke-width='1.6'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.hopay__body { display: flex; flex-direction: column; gap: 1px; }
.hopay__body b { font-size: 14px; font-weight: 700; color: var(--heading); }
.hopay__body em { font-style: normal; font-size: 8.5px; color: var(--caption); }

/* insights grid */
.homet { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.homet__cell {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--white); border: 1px solid var(--border-1); border-radius: 8px;
  padding: 7px 8px;
}
.homet__cell b { font-size: 12px; font-weight: 700; color: var(--heading); }
.homet__cell b.is-pos { color: var(--ho-green); }
.homet__cell b small { font-size: 0.72em; font-weight: 600; color: var(--caption); }
.homet__cell em { font-style: normal; font-size: 8px; color: var(--caption); }

/* in-app filter tabs and month bar */
.hobar {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 11px; font-weight: 700; color: var(--heading);
}
.hobar__arrow { color: var(--caption); font-size: 14px; }
.hofilters { display: flex; gap: 10px; font-size: 8.5px; color: var(--caption); }
.hofilters span.is-on { color: var(--ho-green); font-weight: 700; border-bottom: 1.5px solid var(--ho-green); padding-bottom: 2px; }

/* booking card */
.hobook {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--white); border: 1px solid var(--border-1); border-radius: 10px;
  padding: 9px 10px;
}
.hobook__top { display: flex; align-items: center; gap: 6px; }
.hobook__tag {
  font-size: 8px; font-weight: 700; color: var(--ho-green);
  background: rgba(20, 80, 63, 0.1); border-radius: 5px; padding: 2px 6px;
}
.hobook__tag--cancel { color: #c2557a; background: rgba(194, 85, 122, 0.12); }
.hobook__sub { font-size: 8px; color: var(--caption); background: var(--bg-secondary); border-radius: 5px; padding: 2px 6px; }
.hobook__thumb { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.hobook__name { font-size: 11px; font-weight: 700; color: var(--heading); }
.hobook__meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 8px; color: var(--caption); }
.hobook__villa { font-size: 9px; color: var(--primary); }
.hobook__chan { font-size: 8px; color: var(--caption); border-top: 1px solid var(--border-1); padding-top: 5px; }

/* revenue target */
.hotgt {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-secondary); border-radius: 10px; padding: 9px 10px;
}
.hotgt__ring {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: conic-gradient(var(--ho-green) calc(var(--pct) * 1%), var(--border-1) 0);
}
.hotgt__ring i {
  display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%; background: var(--white);
  font-style: normal; font-size: 8px; font-weight: 700; color: var(--ho-green);
}
.hotgt__body { font-size: 9px; line-height: 1.45; color: var(--text-secondary); }
.hotgt__body b { color: var(--heading); }

/* calendar property row */
.hoprop {
  display: flex; align-items: center; gap: 9px;
  background: var(--white); border: 1px solid var(--border-1); border-radius: 10px;
  padding: 8px 10px;
}
.hoprop__thumb { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.hoprop__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hoprop__body b { font-size: 10.5px; font-weight: 700; color: var(--heading); }
.hoprop__body em { font-style: normal; font-size: 8px; color: var(--caption); }
.hoprop__tags { display: flex; gap: 6px; margin-top: 1px; }
.hoprop__tags s { text-decoration: none; font-size: 7.5px; font-weight: 700; border-radius: 4px; padding: 1px 5px; }
.hoprop__listed { color: var(--ho-green); background: rgba(20, 80, 63, 0.1); }
.hoprop__live { color: var(--ho-green); }

/* the bottom bar is the control now: tap a tab, the screen and this both change */
.honav {
  flex: 0 0 auto; display: flex; justify-content: space-between; gap: 2px;
  margin: 0 8px 8px; padding: 7px 8px;
  background: var(--ho-green); border-radius: 20px;
}
.honav__tab {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-sans); font-size: 7px; font-weight: 600; letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s var(--ease-out);
}
.honav__tab svg { width: 12px; height: 12px; }
.honav__tab.is-on { color: #fff; }
.honav__tab.is-on svg { color: var(--gold); }

/* ── our story (the brand, before the reviews) ────────── */
.ourstory { background: var(--ivory); }
.ourstory__head { max-width: 860px; margin: 0 auto clamp(24px, 3vw, 40px); text-align: center; }
.ourstory__label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-antique); margin-bottom: 14px;
}
.ourstory__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.9vw, 38px);
  font-weight: 400; line-height: 1.4; letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: clamp(24px, 2.4vw, 32px);
}
.ourstory__sub {
  font-size: 17px; line-height: 1.6; color: var(--text-secondary);
  max-width: 660px; margin: 0 auto;
}

/* one frame; the chapters cross inside it rather than the frame moving */
.ourstory__stage {
  position: relative; overflow: hidden;
  max-width: 1040px; margin: 0 auto;
  border-radius: var(--r-24);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-1);
  cursor: grab;
  touch-action: pan-y;
}
.ourstory__stage.is-drag { cursor: grabbing; }
.ourstory__track { position: relative; aspect-ratio: 16 / 8.4; }
.chap {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.6s var(--ease-out);
}
.chap.is-active { opacity: 1; visibility: visible; }
.chap__img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 5.4s var(--ease-out);
}
.chap.is-active .chap__img { transform: none; } /* a slow settle, never a zoom */
/* the caption sits under the frame: these covers are already designed, and our
   words landed straight on their artwork */
.ourstory__caps {
  position: relative; min-height: 74px;
  max-width: 1040px; margin: clamp(20px, 2.2vw, 28px) auto 0;
}
.ocap { position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease-out); }
.ocap.is-active { opacity: 1; visibility: visible; }
.ocap__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 27px); font-weight: 400; line-height: 1.4;
  color: var(--heading); margin-bottom: 6px;
}
.ocap__cap { font-size: 14px; color: var(--caption); }

.ourstory__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  max-width: 1040px; margin: clamp(18px, 2vw, 24px) auto 0;
}
/* the film is the deeper dive, not the front door */
.ourstory__watch {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--primary);
  transition: color 0.3s var(--ease-out);
}
.ourstory__watch:hover { color: var(--gold-antique); }

/* the film only loads when you ask for it — a thumbnail until then */
.chap__play {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: none; border: 0; cursor: pointer;
  color: #fff; font-family: var(--font-sans);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0; transition: opacity 0.35s var(--ease-out), background 0.3s var(--ease-out);
}
.chap.is-active .chap__play { opacity: 1; transition-delay: 0.34s; }
.chap__playicon {
  position: relative;
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.chap__playicon::after {
  content: ""; position: absolute; top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-left: 15px solid #fff;
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
}
.chap__play:hover { background: rgba(0, 0, 0, 0.3); }
.chap__play:hover .chap__playicon { background: rgba(255, 255, 255, 0.28); transform: scale(1.05); }
.chap__playtext { text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5); }
/* once it plays, the film owns the frame — and there is always a way back out */
.chap__frame { position: absolute; inset: 0; z-index: 2; border: 0; width: 100%; height: 100%; }
.ourstory.is-playing .chap__play { opacity: 0; pointer-events: none; }
.chap__close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.55); border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.chap.is-playing .chap__close { opacity: 1; pointer-events: auto; }
.chap__close:hover { background: rgba(0, 0, 0, 0.78); }
.chap__close::before, .chap__close::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px; background: #fff;
}
.chap__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.chap__close::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* browse the films without waiting for the carousel */
.ourstory__browse { display: flex; align-items: center; gap: 16px; }
.onav {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: var(--white); border: 1px solid var(--border-1);
  color: var(--primary);
  transition: border-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.onav svg { width: 15px; height: 15px; }
.onav:hover { border-color: var(--border-dark); color: var(--heading); }

/* ── faq (grouped, new system) ───────────────────────── */
.faq { background: var(--white); display: flex; flex-direction: column; align-items: center; }
.faq__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.9vw, 38px);
  font-weight: 400; letter-spacing: -0.01em; line-height: 1.4;
  color: var(--heading);
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.faq__title em { font-style: normal; color: var(--heading); }
.faq__group { width: 100%; max-width: 820px; margin-bottom: 36px; }
.faq__cat {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.faq__group .qa:first-of-type { border-top: 1px solid var(--border-1); }
.qa { border-bottom: 1px solid var(--border-1); }
.qa summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 1.8rem);
  padding: 22px 0.2rem;
}
.qa summary::-webkit-details-marker { display: none; }
.qa__no {
  font-family: var(--font-sans); font-style: normal; font-weight: 600;
  color: var(--gold);
  font-size: 14px; flex: 0 0 1.8rem;
}
.qa summary h3 {
  font-family: var(--font-sans);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600; color: var(--heading); flex: 1;
  transition: color 0.3s;
}
.qa summary:hover h3 { color: var(--primary); }
.qa__icon { position: relative; flex: 0 0 1rem; height: 1rem; align-self: center; }
.qa__icon::before, .qa__icon::after {
  content: ""; position: absolute; background: var(--text-secondary); top: 50%; left: 0;
  width: 100%; height: 1.5px;
  transition: transform 0.45s var(--ease-out);
}
.qa__icon::after { transform: rotate(90deg); }
.qa[open] .qa__icon::after { transform: rotate(0deg); }
.qa__body { overflow: hidden; }
.qa__body p {
  padding: 0 0.2rem 22px calc(1.8rem + clamp(1rem, 3vw, 1.8rem));
  color: var(--text-secondary); font-size: 16px; line-height: 1.6; max-width: 52rem;
}
.qa__body em { font-style: italic; }
.qa__body a { color: var(--gold-antique); border-bottom: 1px solid currentColor; }

/* ── begin (start the conversation) ──────────────────── */
.begin { background: var(--bg-secondary); }
.begin__inner {
  display: grid; grid-template-columns: 45fr 55fr;
  gap: clamp(40px, 6.5vw, 96px);
  max-width: 1100px; margin: 0 auto;
  align-items: start;
}
.begin__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.9vw, 38px);
  font-weight: 400; line-height: 1.4; letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: clamp(24px, 2.4vw, 32px);
}
.begin__sub { font-size: 18px; line-height: 1.6; color: var(--text-secondary); max-width: 34rem; margin: 0 auto; }
/* the offer, in four lines — nothing else competes with the form */
.begin__pitch {
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 27px); line-height: 1.4; letter-spacing: -0.01em;
  color: var(--heading); margin-bottom: clamp(20px, 2.2vw, 28px);
}
.begin__why { list-style: none; display: grid; gap: 18px; }
.begin__why li { position: relative; padding-left: 28px; font-size: 15px; color: var(--primary); }
.begin__why li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; }

/* form */
.begin__right { position: relative; }
.pform, .psuccess {
  background: var(--white);
  border: 1px solid var(--border-1);
  border-radius: var(--r-24);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-1);
}
.pform__group { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.pform__legend { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-secondary); }
.pform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-sans); font-size: 16px; color: var(--heading);
  background: var(--white);
  border: 1px solid var(--border-1); border-radius: var(--r-16);
  padding: 22px 16px 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { padding-top: 16px; resize: vertical; min-height: 96px; line-height: 1.5; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--border-dark); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184, 137, 59, 0.14);
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.field--select::after {
  content: ""; position: absolute; right: 16px; top: 22px;
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--text-secondary); border-bottom: 1.5px solid var(--text-secondary);
  transform: rotate(45deg); pointer-events: none;
}
.field textarea::placeholder { color: var(--caption); }
.field label {
  position: absolute; left: 16px; top: 17px;
  font-size: 16px; color: var(--text-secondary);
  pointer-events: none; transition: all 0.2s var(--ease-out);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:not(:has(option[value=""]:checked)) + label {
  top: 8px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--gold-antique);
}
.pform__feedback {
  min-height: 18px; margin-top: -6px;
  font-size: 13px; line-height: 1.4; color: var(--gold-antique);
  opacity: 0; transition: opacity 0.3s;
}
.pform__feedback.is-shown { opacity: 1; }
.pform__submit { width: 100%; margin-top: 28px; }
.pform__submit:disabled { opacity: 0.45; cursor: not-allowed; }
.pform__micro { margin-top: 14px; text-align: center; font-size: 13px; color: var(--caption); }

/* success state */
.psuccess { text-align: center; opacity: 0; transition: opacity 0.35s var(--ease-out); }
.psuccess.is-in { opacity: 1; }
.psuccess__check {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(13, 143, 77, 0.12); color: var(--green);
  display: grid; place-items: center; margin: 0 auto 20px;
}
.psuccess__check svg { width: 28px; height: 28px; }
.psuccess h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px); font-weight: 400; color: var(--heading);
  margin-bottom: 16px;
}
.psuccess > p { font-size: 16px; line-height: 1.6; color: var(--text-secondary); max-width: 34rem; margin: 0 auto 28px; }
.psuccess__steps { list-style: none; display: inline-grid; gap: 14px; text-align: left; margin-bottom: 32px; }
.psuccess__steps li { position: relative; padding-left: 28px; font-size: 15px; color: var(--text-secondary); }
.psuccess__steps li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--border-dark);
}
.psuccess__steps li.is-done { color: var(--primary); font-weight: 500; }
.psuccess__steps li.is-done::before {
  content: "✓"; border: 0; background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 700; line-height: 16px; text-align: center;
}
.psuccess__actions { display: flex; flex-wrap: wrap; gap: 16px 24px; justify-content: center; align-items: center; }

/* the heading sits above both columns now */
.begin__head { max-width: 1100px; margin: 0 auto clamp(56px, 6.5vw, 88px); text-align: center; }

/* ── footer (new system) ─────────────────────────────── */
.footer {
  background: var(--primary); color: #fff;
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter) 2.5rem;
  overflow: hidden;
}
.footer__logo {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.footer__logo img {
  width: clamp(180px, 24vw, 260px);
  filter: brightness(0) invert(1);
}
.footer__grid {
  display: grid; grid-template-columns: 1fr 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.footer__col { display: grid; gap: 0.6rem; align-content: start; }
.footer__col small {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5); margin-bottom: 0.5rem;
}
.footer__col a { width: fit-content; position: relative; font-size: 15px; color: rgba(255, 255, 255, 0.85); transition: color 0.3s; }
.footer__col a:hover { color: var(--gold); }
.footer__col--tag { text-align: right; align-content: end; gap: 1rem; }
.footer__col--tag em { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); }
.footer__col--tag p:last-child { font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); }

/* ── responsive ──────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { min-height: 0; padding-top: clamp(6rem, 15vh, 8rem); }
  .hero__grid { grid-template-columns: 1fr; gap: clamp(2.2rem, 6vw, 3rem); }
  .hero__visual { max-width: 34rem; }
}
@media (max-width: 1080px) {
  .header__nav { display: none; }
  .story { grid-template-columns: 1fr; }

  .hoapp__body { grid-template-columns: 1fr; gap: 32px; }
  .hoapp__states { min-height: 0; position: static; }
  .hoapp__stage { padding: 24px 14px; }
  .ourstory__track { aspect-ratio: 4 / 4.4; }
  .ourstory__foot { flex-direction: column; align-items: flex-start; gap: 18px; }
  .ourstory__caps { min-height: 92px; }
  .ourstory__stage { cursor: auto; }
  .hstate { position: absolute; }
  .hstate.is-active { position: relative; }
  .estimator__machine { grid-template-columns: 1fr; }
  .begin__inner { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n + 2) { border-bottom: 1px solid var(--hairline); }
}
@media (max-width: 720px) {
  /* mobile browses by swipe — momentum scrolling, and only a gentle snap */
  .homes__viewport {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity; scrollbar-width: none;
  }
  .homes__viewport::-webkit-scrollbar { display: none; }
  .homes__viewport { cursor: auto; }
  .homes__track { transform: none !important; }
  .home-card { scroll-snap-align: center; width: 76vw; opacity: 1; }
  .home-card__img { transform: none; }
  .homes__controls { display: none; }
  .hero__cta .btn { flex: 1 1 100%; }
  .trust__cards { grid-template-columns: 1fr; }
  .trust__logos { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .info-card { border-left: 0; padding: 24px 0; border-top: 1px solid var(--border-1); }
  .info-card:first-child { padding-top: 0; border-top: 0; }
  .cprev__cols { grid-template-columns: 1fr; }
  .press { flex-direction: column; gap: 1rem; }
  .pform__row { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .stat:last-child { border-bottom: 0; }
  .homes__track {
    width: auto; overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
  }
  .home-card { scroll-snap-align: start; width: 78vw; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col--tag { text-align: left; }
  .pillar { position: static; min-height: 0; }
}

/* ── reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .grain, .hero__scroll i::after { animation: none; }
  .ticker__track { animation-duration: 80s; }
  html { scroll-behavior: auto; }
  /* delays choreograph; reduced motion wants the content, not the sequence */
  * { transition-duration: 0.01ms !important; transition-delay: 0s !important; }
}

/* ══════════════════════════════════════════════════════════════════
   GRAFTED — hero accent · pillars heading · calculator restyle ·
   homes CTA card · contact + lead form (light).  (Rahul's parts)
   ══════════════════════════════════════════════════════════════════ */

/* ── hero accent ── */
#hero .hero__title em { font-style: italic; color: var(--saffron-deep); }

/* ── #2 pillars heading — match her centered section titles ── */
.craft { text-align: center; }
.craft__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.9vw, 38px);
  font-weight: 400; line-height: 1.25; letter-spacing: -0.01em;
  color: var(--heading);
  text-align: center;
  max-width: 24ch; margin: 0 auto 0.75rem;
}
.craft__title em { color: var(--saffron-deep); font-style: italic; }
.craft__lede {
  max-width: 46ch; margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.5;
  color: var(--text-secondary); text-align: center;
}
/* pillar cards keep their left-aligned inner content */
.craft__stack { text-align: left; }

/* ── #3 calculator — warm-dark / saffron / serif look; keep her monthly line ── */
.estimator__summary { background: var(--ink); }
.estimator__gauge-track { stroke: rgba(243, 236, 217, 0.16); }
.estimator__gauge-fill { stroke: var(--saffron); }
.estimator__label { color: var(--cream-soft); }
.estimator__figure { font-family: var(--font-display); font-weight: 400; color: var(--cream-on-dark); }
.estimator__monthly {
  font-family: var(--font-display); font-style: italic;
  color: var(--saffron); font-size: 17px;
}
.estimator input[type="range"] {
  background: linear-gradient(to right, var(--saffron-deep) var(--fill, 50%), var(--hairline) var(--fill, 50%));
}
.estimator input[type="range"]::-webkit-slider-thumb { border-color: var(--saffron-deep); }
.estimator input[type="range"]:hover::-webkit-slider-thumb,
.estimator input[type="range"]:active::-webkit-slider-thumb { border-color: var(--saffron); }
.estimator input[type="range"]::-moz-range-thumb { border-color: var(--saffron-deep); }

/* ── #4 "Your villa belongs here" card — matches the villa cards' shape ── */
.home-card--cta { opacity: 1 !important; }
.home-card__invite {
  display: flex; flex-direction: column; justify-content: space-between;
  aspect-ratio: 4 / 5; border-radius: var(--r-24);
  padding: clamp(20px, 2vw, 28px);
  background: var(--forest); color: var(--cream-on-dark);
  text-decoration: none; box-shadow: var(--shadow-1);
  transform: scale(0.96);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), background-color 0.3s;
}
.home-card--cta.is-focus .home-card__invite,
.home-card__invite:hover { transform: none; box-shadow: var(--shadow-2, var(--shadow-1)); }
.home-card__invite:hover { background: var(--forest-2); }
.home-card__invite-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--saffron);
}
.home-card__invite-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px); line-height: 1.1;
  margin-top: auto; color: var(--cream-on-dark);
}
.home-card__invite-go {
  margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--saffron);
  display: inline-flex; align-items: center; gap: 8px;
}
.home-card__invite-go i { transition: transform 0.3s var(--ease-out); }
.home-card__invite:hover .home-card__invite-go i { transform: translateX(4px); }

/* ── #5 contact section — light (off-white section + white form panel) ── */
#begin {
  background: var(--ivory); color: var(--primary);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
#begin h2 {
  font-family: var(--font-display); font-weight: 400; line-height: 1.12;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--heading); max-width: none;
  margin: 0 0 0.75rem;
}
#begin h2 em { font-style: italic; color: var(--saffron-deep); }
#begin .lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.5;
  color: var(--text-secondary); max-width: 46ch;
}

#begin .contact {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: start;
}
#begin .contact__direct { margin-top: clamp(2rem, 4vw, 3rem); }
#begin .contact__direct-h {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-secondary); margin-bottom: 0.5rem;
}
#begin .contact__line {
  display: flex; align-items: center; min-height: 48px;
  font-size: 1.0625rem; font-weight: 700; color: var(--gold-antique);
  text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px;
}
#begin .contact__line:hover { color: var(--heading); }

/* form panel — white on the off-white section */
#begin .form {
  background: var(--white); color: var(--primary);
  border: 1px solid var(--border-1);
  border-radius: var(--r-24); padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-1);
}
#begin .form p { color: var(--primary); max-width: none; }
#begin .hp { position: absolute; left: -9999px; }
#begin .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#begin .field { margin-bottom: 1rem; position: static; }
#begin .field > label {
  position: static; display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary);
  margin-bottom: 0.4rem; transform: none; transition: none;
  pointer-events: auto; background: none; padding: 0;
}
#begin .field > label .opt { text-transform: none; letter-spacing: 0; font-weight: 400; }
#begin .field > label .req { color: var(--red); margin-left: 0.15em; }
#begin .field input, #begin .field select, #begin .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--heading);
  background: var(--ivory); border: 1px solid var(--border-1);
  border-radius: var(--r-16); padding: 0.5rem 0.75rem; min-height: 42px; box-shadow: none;
}
#begin .field input::placeholder { color: var(--caption); opacity: 1; }
#begin .field input:hover, #begin .field select:hover, #begin .field textarea:hover { border-color: var(--border-dark); }
#begin .field :is(input, select, textarea):focus,
#begin .field :is(input, select, textarea):focus-visible {
  border-color: var(--gold); outline: 2px solid var(--gold); outline-offset: 1px; background: var(--white);
}
#begin .field[data-error] :is(input, select, textarea) { border-color: var(--red); }
#begin .field__err { margin-top: 0.3rem; font-size: 0.8rem; color: var(--red); }

#begin .field--select::after { content: none; }
#begin .field select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23757575' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.8rem center; background-size: 0.7rem auto;
}

#begin .form__submit { width: 100%; margin-top: 0.75rem; border-radius: var(--r-16); min-height: 48px; }
#begin .form__note { margin-top: 1rem; font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; max-width: none; }
#begin .form__note a { color: var(--gold-antique); }
#begin .form__error, #begin .form__success {
  margin-top: 1rem; padding: 1rem; border-radius: var(--r-8); font-size: 0.85rem; line-height: 1.55;
}
#begin .form__error { border: 1px solid var(--red); background: rgba(214, 69, 69, 0.06); color: var(--primary); }
#begin .form__error a { color: var(--red); font-weight: 700; }
#begin .form__success { border: 1px solid var(--border-1); background: var(--ivory); color: var(--primary); }
#begin .form__success strong { display: block; margin-bottom: 0.5rem; }

@media (max-width: 1024px) {
  #begin .contact { grid-template-columns: 1fr; }
  #begin .contact__copy { order: -1; }
}

/* ── #1+#2 belong — a boxed CTA, two-tone heading matching hero/pillars ── */
.belong__inner {
  max-width: 1040px; margin: 0 auto;
  background: var(--paper-deep);
  border: 1px solid var(--hairline);
  border-radius: var(--r-24);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-1);
}
.belong__title {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.12; letter-spacing: -0.02em;
  color: var(--heading);
  margin-bottom: clamp(16px, 2vw, 24px);
}
.belong__title em { font-style: italic; color: var(--saffron-deep); }  /* same 2 colours as hero + pillars */
.belong__sub { color: var(--text-secondary); }

/* On her page, .btn--dark's `display` overrides the plain `hidden` attribute, so the
   submit button stayed visible ("Sending…") after a successful send. Force it. */
#begin [hidden] { display: none !important; }

/* ── restore the native system cursor (disable the custom circular cursor) ── */
#cursor { display: none !important; }
body.has-cursor { cursor: default !important; }
body.has-cursor a[href], body.has-cursor button, body.has-cursor summary,
body.has-cursor label, body.has-cursor select, body.has-cursor [data-cursor],
body.has-cursor [role="button"], body.has-cursor input[type="submit"],
body.has-cursor input[type="button"], body.has-cursor input[type="range"] { cursor: pointer !important; }
body.has-cursor input[type="text"], body.has-cursor input[type="email"],
body.has-cursor input[type="tel"], body.has-cursor input[type="url"],
body.has-cursor input[type="number"], body.has-cursor input[type="search"],
body.has-cursor textarea { cursor: text !important; }
