    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; cursor: none !important; }

    :root {
      /* AnVira design tokens — see CLAUDE.md §3 */
      --bg:          #EFEBE0;   /* Lime Wash — deepened */
      --surface:     #F5F2EA;   /* Bone — softened */
      --text:        #221F1C;   /* Ink — warmed */
      --mid:         #57534D;   /* Dust, darkened for readability */
      --faint:       #6B665D;   /* Dust, lightened — micro labels */
      --gold:        #997447;   /* Patina Brass — muted */
      --gold-light:  rgba(153,116,71,0.08);
      --wash:        #E6DCC4;   /* Turmeric Mist — muted */
      --rule:        #CFC7B8;   /* Linen Rule */
      --wa:          #1B8A54;   /* Monsoon Green — deepened */
      --error:       #B5513A;   /* Fired Clay */
      --border:      rgba(24,24,26,0.08);
      --border-mid:  rgba(24,24,26,0.14);
      --lux:         cubic-bezier(0.16, 1, 0.3, 1);

      /* Spacing scale — every section padding / gap / margin draws
         from this so vertical rhythm stays symmetric site-wide */
      --space-1: .5rem;
      --space-2: 1rem;
      --space-3: 1.5rem;
      --space-4: 2.5rem;
      --space-5: 4rem;
      --space-6: clamp(4rem, 8vh, 6.5rem);   /* standard section padding */
      --space-7: clamp(5.5rem, 11vh, 9rem);  /* feature section padding */
      --pad-x:   clamp(1.5rem, 5vw, 3.5rem); /* global horizontal gutter */
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    :focus-visible { outline: 1.5px solid var(--gold); outline-offset: 2px; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
    }

    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--border-mid); }

    /* ── Cursor ──────────────────────────────────────────────── */
    #cursor-ring {
      position: fixed; top: 0; left: 0; z-index: 9999;
      width: 36px; height: 36px;
      border: 1px solid rgba(24,24,26,0.22);
      border-radius: 50%; pointer-events: none;
      display: flex; align-items: center; justify-content: center;
      transition: width .35s var(--lux), height .35s var(--lux),
                  border-color .3s ease, background .3s ease,
                  margin .35s var(--lux);
      will-change: transform;
    }
    #cursor-ring.on {
      width: 54px; height: 54px; margin: -9px 0 0 -9px;
      border-color: var(--gold);
      background: var(--gold-light);
    }
    #cursor-label {
      font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); opacity: 0; font-weight: 300;
      transition: opacity .3s ease;
    }
    #cursor-ring.on #cursor-label { opacity: 1; }
    #cursor-dot {
      position: fixed; top: 0; left: 0; z-index: 9999;
      width: 4px; height: 4px;
      background: var(--text); border-radius: 50%;
      pointer-events: none; will-change: transform;
    }

    /* ── Intro (brand logo reveal on cream) ─────────────────── */
    #intro {
      position: fixed; inset: 0; z-index: 200;
      background:
        radial-gradient(460px circle at var(--mx, 50%) var(--my, 44%),
                        rgba(203,160,99,.16), transparent 62%),
        radial-gradient(circle at 50% 42%, #2b2621 0%, #15120e 74%);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      transition: opacity .9s var(--lux);
      cursor: pointer;
      perspective: 900px;
    }
    #intro.out { opacity: 0; pointer-events: none; }

    #intro-stage {
      display: flex; flex-direction: column; align-items: center;
      transition: transform .5s var(--lux);
      will-change: transform;
    }
    #intro-logo {
      font-size: clamp(3rem, 9vw, 5.6rem); line-height: 1;
      letter-spacing: .55em; padding-left: .55em;
      user-select: none;
      opacity: 0; transform: translateY(20px) scale(.96);
      filter: blur(6px);
      transition: opacity 1.1s ease, transform 1.2s var(--lux),
                  letter-spacing 1.5s var(--lux), padding-left 1.5s var(--lux),
                  filter 1.1s ease;
    }
    #intro-logo .av-an  { color: #F1EADC; }
    #intro-logo .av-vira { color: #CBA063; transition: text-shadow .6s ease; }
    #intro-logo.show { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); letter-spacing: .12em; padding-left: .12em; }
    #intro-logo.show .av-vira { text-shadow: 0 0 34px rgba(203,160,99,.5); }
    #intro-logo.hide { opacity: 0; transform: translateY(-16px) scale(1.03); filter: blur(2px); letter-spacing: .34em; padding-left: .34em; }

    #intro-skip {
      margin-top: 2.2rem;
      font-size: 9px; letter-spacing: .34em; text-transform: uppercase;
      color: rgba(241,234,220,.6);
      opacity: 0; transition: opacity .8s ease 1.4s;
    }
    #intro-logo.show ~ #intro-skip { opacity: .8; }
    #intro-logo.hide ~ #intro-skip { opacity: 0; transition-delay: 0s; transition-duration: .3s; }

    #intro-line {
      position: absolute; bottom: 0; left: 0;
      height: 1px; background: linear-gradient(90deg, transparent, #CBA063 50%, transparent); opacity: .65;
      width: 0; transition: width 1.9s var(--lux) .1s;
    }
    #intro-line.full { width: 100%; }

    /* ── Navigation ──────────────────────────────────────────── */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 1.4rem 2.5rem;
      display: flex; align-items: center; justify-content: space-between;
      transition: background .5s ease, backdrop-filter .5s ease;
    }
    #nav.scrolled {
      background: rgba(245,241,232,0.88);
      backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
      border-bottom: 1px solid var(--border);
    }

    /* AnVira wordmark — shared across nav, hero, footer */
    .av {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300; letter-spacing: .12em; line-height: 1;
      color: var(--text); display: inline-block;
      transition: letter-spacing .4s ease, color .45s ease, text-shadow .45s ease;
    }
    .av-an { font-style: normal; }
    .av-vira { font-style: italic; position: relative; display: inline-block; }
    /* Gold underline that grows with scroll */
    .av-line {
      position: absolute; bottom: -2px; left: 0;
      height: 1px; width: 100%;
      background: var(--gold);
      transform: scaleX(0); transform-origin: left;
    }

    #nav-logo { font-size: 1.22rem; }

    /* Estate pages: the nav floats over the hero photograph, so the
       wordmark + burger render light (with a soft shadow for bright
       skies) until the nav gains its solid backdrop on scroll — then
       they settle back to brand colors. */
    body[data-estate] #nav:not(.scrolled) #nav-logo,
    body[data-estate] #nav:not(.scrolled) #nav-logo .av-an,
    body[data-estate] #nav:not(.scrolled) #nav-logo .av-vira {
      color: #faf8f3;
      text-shadow: 0 1px 14px rgba(24,24,26,.5);
    }
    body[data-estate] #nav:not(.scrolled) #burger .bl {
      background: rgba(250,248,243,.92);
    }
    /* …but revert to dark while the light full-screen menu is open */
    body[data-estate] #nav:not(.scrolled):has(#burger.open) #nav-logo,
    body[data-estate] #nav:not(.scrolled):has(#burger.open) #nav-logo .av-an,
    body[data-estate] #nav:not(.scrolled):has(#burger.open) #nav-logo .av-vira {
      color: var(--text); text-shadow: none;
    }
    body[data-estate] #nav:not(.scrolled) #burger.open .bl {
      background: rgba(24,24,26,.5);
    }

    #burger {
      background: none; border: none;
      display: flex; flex-direction: column; gap: 5px; padding: 4px;
    }
    .bl {
      display: block; height: 1px; background: rgba(24,24,26,0.5);
      transition: transform .35s var(--lux), opacity .25s ease, background .45s ease;
    }
    .bl:nth-child(1) { width: 22px; }
    .bl:nth-child(2) { width: 14px; }
    #burger.open .bl:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
    #burger.open .bl:nth-child(2) { opacity: 0; }

    /* ── Slide-in menu panel (right → left) ──────────────────── */
    #menu {
      position: fixed; top: 0; right: 0; bottom: 0; z-index: 90;
      width: clamp(300px, 38vw, 440px);
      background: rgba(245,241,232,0.98);
      backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
      border-left: 1px solid var(--rule);
      display: flex; flex-direction: column; justify-content: center;
      padding: 5rem 3rem 3rem;
      transform: translateX(100%);
      pointer-events: none;
      transition: transform .55s var(--lux);
      box-shadow: -8px 0 48px rgba(24,24,26,.07);
    }
    #menu.open { transform: translateX(0); pointer-events: all; }
    #menu nav { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 3rem; }
    .mwrap { overflow: hidden; }
    .mlink {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 4vw, 3.2rem);
      font-weight: 300; line-height: 1.2;
      color: var(--text); text-decoration: none;
      transform: translateX(40px); opacity: 0;
      transition: transform .5s var(--lux), opacity .45s ease, color .25s ease;
    }
    .mlink:hover { color: var(--gold); font-style: italic; }
    #menu.open .mlink { transform: translateX(0); opacity: 1; }
    #menu.open .mlink:nth-child(1) { transition-delay:  60ms; }
    #menu.open .mlink:nth-child(2) { transition-delay: 120ms; }
    #menu.open .mlink:nth-child(3) { transition-delay: 180ms; }
    #menu.open .mlink:nth-child(4) { transition-delay: 240ms; }
    #menu-foot {
      position: absolute; bottom: 2.5rem; left: 3rem;
      font-size: 10px; letter-spacing: .38em; text-transform: uppercase;
      color: var(--faint); opacity: 0; transition: opacity .6s ease .4s;
    }
    #menu.open #menu-foot { opacity: 1; }
    /* Dim-scrim — sits behind the panel, main page stays visible */
    #menu-scrim {
      position: fixed; inset: 0; z-index: 89;
      background: rgba(24,24,26,.18);
      opacity: 0; pointer-events: none;
      transition: opacity .45s ease;
    }
    #menu-scrim.show { opacity: 1; pointer-events: all; }

    /* ── Page reveal ─────────────────────────────────────────── */
    #page {
      opacity: 0; transform: translateY(16px);
      transition: opacity 1s ease .15s, transform 1s var(--lux) .15s;
    }
    #page.show { opacity: 1; transform: translateY(0); }

    /* Hero entrance — staggered after page reveal */
    .hero-btm .eyebrow,
    .hero-btm .ed,
    .hero-btm .stats {
      opacity: 0; transform: translateY(16px);
      transition: opacity .9s ease, transform .9s var(--lux);
    }
    #page.show .hero-btm .eyebrow { opacity: 1; transform: none; transition-delay: .55s; }
    #page.show .hero-btm .ed      { opacity: 1; transform: none; transition-delay: .75s; }
    #page.show .hero-btm .stats   { opacity: 1; transform: none; transition-delay: .95s; }

    /* ── Hero ────────────────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      padding: clamp(110px,14vh,160px) clamp(1.5rem,5vw,3.5rem) clamp(4rem,8vh,6rem);
      position: relative; overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background-image: radial-gradient(rgba(24,24,26,0.04) 1px, transparent 1px);
      background-size: 46px 46px;
    }

    /* Hero wordmark — large, centered, parallaxes on scroll */
    #hwrap {
      flex: 1; display: flex; align-items: center; justify-content: center;
      padding-bottom: 2rem;
    }
    #hwm { text-align: center; will-change: transform, opacity; }
    /* Hero wordmark base lives here (wins specificity over #brand-logo);
       state classes (.drawn/.swaying) are applied via #brand-logo below.
       padding-left compensates the trailing letter-spacing so the
       wordmark stays optically centred. */
    #hwm .av {
      font-size: clamp(3.6rem, 11vw, 8.4rem);
      white-space: nowrap;
      letter-spacing: .22em; padding-left: .22em;
    }
    #hwm .tagline {
      font-family: 'DM Sans', sans-serif; font-size: 10px;
      letter-spacing: .48em; text-transform: uppercase;
      color: var(--mid); opacity: .75; margin-top: 1.1rem; font-weight: 300;
    }

    /* Hero bottom: editorial + stats */
    .hero-btm { max-width: 880px; margin: 0 auto; width: 100%; text-align: center; }
    .eyebrow {
      font-size: 10px; letter-spacing: .52em; text-transform: uppercase;
      color: var(--mid); opacity: .7; margin-bottom: 2rem; font-weight: 300;
    }
    h1.ed {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.3rem, 2.8vw, 2.3rem);
      font-weight: 300; line-height: 1.62; letter-spacing: .012em;
      color: var(--mid); margin-bottom: 4rem;
    }
    h1.ed .hi { color: var(--text); font-style: italic; }
    h1.ed .lo { color: var(--mid); font-style: normal; }

    .stats {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
      border-top: 1px solid var(--border); padding-top: 2.6rem;
    }
    .sn {
      font-family: 'DM Mono', monospace;
      font-size: clamp(2.4rem, 5vw, 4.4rem);
      font-weight: 400; letter-spacing: -.01em; line-height: 1;
      margin-bottom: .4rem; color: var(--text);
    }
    .sl {
      font-size: 9.5px; letter-spacing: .36em; text-transform: uppercase;
      color: var(--mid); font-weight: 300;
    }

    /* ── Gallery ─────────────────────────────────────────────── */
    #gal-sec { padding: 5rem 0 4rem; }
    .sec-bar {
      display: flex; justify-content: space-between; align-items: flex-end;
      padding: 0 clamp(1.5rem,5vw,3.5rem); margin-bottom: 2rem;
    }
    .sec-bar-left { display: flex; flex-direction: column; gap: 5px; }
    .sec-bar-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.2rem,2.2vw,1.6rem); font-weight: 300;
      color: var(--text); letter-spacing: .025em;
    }
    .sec-bar-sub { font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: var(--mid); font-weight: 300; }
    .sec-bar-hint { font-size: 9.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--mid); font-weight: 300; }

    #accordion {
      display: flex; width: 100%;
      height: clamp(420px, 72vh, 800px);
      gap: 3px; padding: 0 clamp(1.5rem,5vw,3.5rem);
    }
    .acol {
      position: relative; overflow: hidden; border-radius: 3px;
      flex-grow: 1;
      transition: flex-grow 700ms var(--lux);
    }
    /* stacked images — crossfade on cycle, zoom on hover */
    .acol-imgs { position: absolute; inset: 0; transition: transform 800ms var(--lux); }
    .acol:hover .acol-imgs { transform: scale(1.1); }
    .acol-img  { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .9s ease; }
    .acol-img.active { opacity: 1; }
    /* rich gradient — denser at base for legibility */
    .acol-g {
      position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(
        to top,
        rgba(24,24,26,0.96) 0%,
        rgba(24,24,26,0.55) 40%,
        rgba(24,24,26,0.10) 68%,
        transparent 100%
      );
      transition: opacity .6s ease;
    }
    /* property number — top left, always subtle */
    .acol-num {
      position: absolute; top: 1.1rem; left: 1.3rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: .95rem; font-weight: 300; font-style: italic;
      color: rgba(255,255,255,0.30);
      transition: color .5s ease;
      pointer-events: none;
    }
    .acol:hover .acol-num { color: rgba(255,255,255,0.65); }
    /* image counter — top right, fades in on hover */
    .acol-counter {
      position: absolute; top: 1.1rem; right: 1.3rem;
      font-size: 9px; letter-spacing: .24em; color: rgba(255,255,255,0.45);
      opacity: 0; transition: opacity .45s ease;
      pointer-events: none;
    }
    .acol:hover .acol-counter { opacity: 1; }
    /* main info — slides up from bottom on hover */
    .acol-info {
      position: absolute; bottom: 1.8rem; left: 1.5rem; right: 1.5rem;
      opacity: 0; transform: translateY(22px); pointer-events: none;
      transition: opacity .52s ease .06s, transform .52s var(--lux) .06s;
    }
    .acol:hover .acol-info { opacity: 1; transform: translateY(0); }
    .acol-type { font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: rgba(255,255,255,0.88); margin-bottom: 6px; text-shadow: 0 1px 8px rgba(24,24,26,0.7); }
    .acol-name { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; font-style: italic; color: #FFFDF8; line-height: 1.2; text-shadow: 0 2px 14px rgba(24,24,26,0.8); }
    .acol-loc  { font-size: 11px; letter-spacing: .22em; color: rgba(255,255,255,0.85); margin-top: 5px; text-shadow: 0 1px 8px rgba(24,24,26,0.7); }
    /* gold bar — grows on hover */
    .acol-bar  { width: 0; height: 1px; background: var(--gold); margin-top: 13px; transition: width .75s var(--lux) .18s; }
    .acol:hover .acol-bar { width: 38px; }
    /* explore hint */
    .acol-hint {
      font-size: 9px; letter-spacing: .36em; text-transform: uppercase;
      color: rgba(255,255,255,0.42); margin-top: 10px;
    }
    /* progress dots — bottom right */
    .acol-dots {
      position: absolute; bottom: 1.2rem; right: 1.3rem;
      display: flex; gap: 5px; pointer-events: none;
      opacity: 0; transition: opacity .45s ease;
    }
    .acol:hover .acol-dots { opacity: 1; }
    .acol-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.28); transition: background .4s ease, transform .35s var(--lux); }
    .acol-dot.on { background: var(--gold); transform: scale(1.5); }
    /* vertical label on collapsed columns */
    .acol-vert {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      font-size: 11px; letter-spacing: .36em; text-transform: uppercase;
      color: rgba(255,255,255,0.92);
      text-shadow: 0 1px 10px rgba(24,24,26,0.85);
      writing-mode: vertical-rl; text-orientation: mixed;
      opacity: 0.85; transition: opacity .4s ease;
      pointer-events: none; white-space: nowrap;
    }

    /* ── Property section ────────────────────────────────────── */
    #listings { padding: clamp(4rem,8vh,6.5rem) clamp(1.5rem,5vw,3.5rem); }
    .sec-head {
      display: flex; align-items: flex-end; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem;
    }
    .sec-ey { font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: var(--faint); margin-bottom: .7rem; font-weight: 300; }
    h2.st {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3.5vw, 3rem);
      font-weight: 300; letter-spacing: .01em;
    }
    .ghost {
      font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase;
      color: var(--mid); background: none; border: none;
      border-bottom: 1px solid var(--border-mid); padding-bottom: 3px;
      transition: color .3s ease, border-color .3s ease;
    }
    .ghost:hover { color: var(--text); border-color: var(--mid); }

    .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 2.5rem; }

    /* Real card */
    .prop-card .ci-wrap { overflow: hidden; border-radius: 2px; aspect-ratio: 4/3; margin-bottom: .9rem; }
    .prop-card .ci {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 700ms var(--lux);
    }
    .prop-card:hover .ci { transform: scale(1.04); }
    .ctag { font-size: 9.5px; letter-spacing: .38em; text-transform: uppercase; color: var(--faint); margin-bottom: 7px; }
    .crow { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
    .cname { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 300; font-style: italic; color: var(--text); }
    .cloc  { font-size: 10.5px; letter-spacing: .2em; color: var(--mid); margin-top: 3px; }
    .cdesc { font-size: 11px; line-height: 1.7; color: var(--mid); margin: 9px 0 13px; font-weight: 300; }
    .cprice { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; color: var(--text); white-space: nowrap; padding-left: .5rem; }
    .cfoot { display: flex; align-items: center; padding-top: 10px; border-top: 1px solid var(--border); }
    .cm { margin-right: 16px; }
    .cm-n { font-family: 'DM Mono', monospace; font-size: .82rem; font-weight: 400; color: var(--text); }
    .cm-l { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--mid); margin-top: 2px; }
    .enq {
      margin-left: auto; font-size: 9px; letter-spacing: .26em; text-transform: uppercase;
      color: var(--mid); background: none;
      border: 1px solid var(--border-mid); padding: 7px 12px;
      transition: color .3s ease, border-color .3s ease;
    }
    .enq:hover { color: var(--text); border-color: var(--mid); }

    /* ── Skeleton card ───────────────────────────────────────────
       To populate: replace null in PROPERTIES array with:
       { img, name, loc, price, beds, area, tag }
       Add/remove nulls to change the number of visible slots.
    ─────────────────────────────────────────────────────────── */
    .skel .si {
      aspect-ratio: 4/3; margin-bottom: .9rem; border-radius: 2px;
      border: 1px dashed rgba(24,24,26,0.13);
      background: #EEEBe5;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    }
    .skel .si-icon {
      width: 28px; height: 28px; border-radius: 50%;
      border: 1px solid rgba(24,24,26,0.16);
      display: flex; align-items: center; justify-content: center;
    }
    .skel .si-plus { font-size: 13px; color: rgba(24,24,26,0.22); font-weight: 100; line-height: 1; }
    .skel .si-hint { font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: rgba(24,24,26,0.2); font-weight: 300; }
    .skel .sl-line { height: 1px; background: rgba(24,24,26,0.09); border-radius: 1px; }
    .skel .sl-a { width: 34%; margin-bottom: 10px; }
    .skel .sl-b { width: 63%; margin-bottom: 6px; }
    .skel .sl-c { width: 28%; margin-bottom: 14px; }
    .skel .sf { display: flex; align-items: center; padding-top: 10px; border-top: 1px solid var(--border); }
    .skel .sf-blk { width: 24px; height: 1px; background: rgba(24,24,26,0.09); margin-right: 14px; }
    .skel .sf-btn { margin-left: auto; font-size: 9px; letter-spacing: .26em; text-transform: uppercase; color: var(--faint); background: none; border: 1px solid var(--border); padding: 7px 12px; }

    /* ── Inquiry ─────────────────────────────────────────────── */
    #inquiry {
      margin: 0 clamp(1.5rem,5vw,3.5rem) clamp(4rem,8vh,6.5rem);
      padding: clamp(2.5rem,6vh,4.5rem) clamp(1.5rem,5vw,4rem);
      border: 1px solid var(--border-mid); border-radius: 2px;
      background: var(--surface);
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
    }
    #inquiry h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.3rem, 2.7vw, 2.3rem);
      font-weight: 300; font-style: italic; line-height: 1.45;
      max-width: 440px; margin-top: .55rem; color: var(--text);
    }
    .cta {
      font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
      background: var(--text); color: var(--bg); border: none;
      padding: 14px 32px; font-weight: 300;
      transition: background .3s ease;
      white-space: nowrap;
    }
    .cta:hover { background: var(--gold); }

    /* ── Footer ──────────────────────────────────────────────── */
    footer {
      padding: clamp(2rem,4vh,3.5rem) clamp(1.5rem,5vw,3.5rem);
      border-top: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
    }
    .fl { display: flex; gap: 2rem; flex-wrap: wrap; }
    .fa {
      font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase;
      color: var(--mid); text-decoration: none; transition: color .3s ease;
    }
    .fa:hover { color: var(--text); }
    .fc { font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--mid); }

    /* ── Scroll fade-in ──────────────────────────────────────── */
    .fi { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s var(--lux); }
    .fi.vis { opacity: 1; transform: translateY(0); }

    /* ── Property detail overlay ──────────────────────────────── */
    #detail {
      position: fixed; inset: 0; z-index: 150;
      background: var(--bg); overflow-y: auto; overflow-x: hidden;
      opacity: 0; pointer-events: none;
      transform: translateY(28px);
      transition: opacity .5s var(--lux), transform .5s var(--lux);
    }
    #detail.open { opacity: 1; pointer-events: all; transform: translateY(0); }

    #pd-bar {
      position: sticky; top: 0; z-index: 10;
      background: rgba(245,241,232,0.92);
      backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
      padding: 1rem clamp(1.5rem,5vw,3.5rem);
      display: flex; align-items: center; justify-content: space-between;
    }
    #pd-back {
      font-size: 9.5px; letter-spacing: .32em; text-transform: uppercase;
      color: var(--mid); background: none; border: none;
      display: flex; align-items: center; gap: 10px;
      transition: color .3s ease;
    }
    #pd-back:hover { color: var(--text); }

    #pd-hero { position: relative; height: clamp(340px,56vh,700px); overflow: hidden; }
    #pd-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
    #pd-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(24,24,26,.75) 0%, rgba(24,24,26,.06) 55%, transparent 100%);
    }
    #pd-hero-caption {
      position: absolute; bottom: 2.5rem;
      left: clamp(1.5rem,5vw,3.5rem); right: clamp(1.5rem,5vw,3.5rem);
    }
    #pd-hero-tag  { font-size: 9px; letter-spacing: .42em; text-transform: uppercase; color: rgba(255,255,255,.78); margin-bottom: .5rem; }
    #pd-hero-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem,5.5vw,5rem); font-weight: 300; font-style: italic;
      color: #FAF8F3; line-height: 1.1;
    }
    #pd-hero-loc { font-size: 10.5px; letter-spacing: .26em; color: rgba(255,255,255,.78); margin-top: .5rem; }

    #pd-body { padding: clamp(2.5rem,5vh,4rem) clamp(1.5rem,5vw,3.5rem); max-width: 1440px; margin: 0 auto; }

    #pd-meta {
      display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: start;
      margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border);
    }
    #pd-desc-text { max-width: 560px; margin-bottom: 2rem; }
    #pd-desc-text p, #pd-desc-text li {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.05rem,1.8vw,1.45rem); font-weight: 300; line-height: 1.82;
      color: var(--mid);
    }
    #pd-desc-text p { margin-bottom: 1.1em; }
    #pd-desc-text p:last-child { margin-bottom: 0; }
    #pd-desc-text ul { margin: .2em 0 1.1em 1.4em; }
    #pd-desc-text li { margin-bottom: .45em; }
    #pd-specs { display: flex; gap: 2.5rem; }
    .pd-spec-n { font-family: 'DM Mono', monospace; font-size: 2rem; font-weight: 400; color: var(--text); }
    .pd-spec-l { font-size: 9px; letter-spacing: .32em; text-transform: uppercase; color: var(--mid); margin-top: 3px; }
    #pd-cta-col { display: flex; flex-direction: column; align-items: flex-end; gap: 1.4rem; }

    #pd-amenities { margin-bottom: 3rem; }
    .pd-amen-title { font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.2rem; }
    .pd-amen-grid  { display: flex; flex-wrap: wrap; gap: .5rem; }
    .pd-amen-tag   {
      font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase;
      border: 1px solid var(--border-mid); padding: 6px 16px;
      color: var(--mid); border-radius: 1px;
    }

    /* location section */
    #pd-location { margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
    #pd-address { font-size: 12.5px; line-height: 1.7; letter-spacing: .06em; color: var(--mid); margin-bottom: 1.2rem; }
    #pd-map-link {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase;
      color: var(--text); text-decoration: none;
      border-bottom: 1px solid var(--border-mid); padding-bottom: 3px;
      transition: color .3s ease, border-color .3s ease;
    }
    #pd-map-link:hover { color: var(--gold); border-color: var(--gold); }
    #pd-map-link svg { flex-shrink: 0; }
    /* hero location as a map link */
    #pd-hero-loc a {
      color: inherit; text-decoration: none;
      display: inline-flex; align-items: center; gap: 6px;
      transition: color .3s ease;
    }
    #pd-hero-loc a:hover { color: var(--gold); }

    #pd-gallery-title { font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: var(--text); margin-bottom: 1.2rem; }
    #pd-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }
    #pd-gallery img {
      /* uniform cropped tiles: explicit width/height attrs only seed CLS;
         the grid + aspect-ratio + cover governs the rendered box */
      width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover;
      display: block; border-radius: 1px;
      cursor: pointer !important;
      transition: opacity .35s ease, transform .45s var(--lux);
    }
    /* editorial lead image — .lead is reassigned by estate.js when filtering */
    #pd-gallery img.lead { grid-column: span 2; grid-row: span 2; }
    #pd-gallery img.gal-hide { display: none; }

    /* gallery category chips */
    #pd-gallery-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.1rem; }
    .gal-tab {
      font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase;
      color: var(--mid); background: transparent;
      border: 1px solid var(--border-mid); border-radius: 1px;
      padding: 9px 14px; cursor: pointer;
      transition: color .25s ease, border-color .25s ease, background .25s ease;
    }
    .gal-tab:hover { color: var(--text); border-color: var(--gold); }
    .gal-tab.on { color: var(--bg); background: var(--text); border-color: var(--text); }
    #pd-gallery img:hover { opacity: .82; transform: scale(1.025); }

    /* ── Lightbox ────────────────────────────────────────────── */
    #lb {
      position: fixed; inset: 0; z-index: 400;
      background: rgba(24,24,26,0.97);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity .4s var(--lux);
    }
    #lb.open { opacity: 1; pointer-events: all; }
    #lb-img {
      max-width: 88vw; max-height: 86vh;
      object-fit: contain; border-radius: 2px;
      transition: opacity .25s ease;
      user-select: none; -webkit-user-select: none;
    }
    #lb-close {
      position: absolute; top: 1.4rem; right: 1.8rem;
      font-size: 1.8rem; line-height: 1; font-weight: 100;
      color: rgba(245,241,232,0.55); background: none; border: none;
      cursor: pointer !important;
      transition: color .2s ease;
    }
    #lb-close:hover { color: #FAF8F3; }
    #lb-prev, #lb-next {
      position: absolute; top: 50%; transform: translateY(-50%);
      font-size: 2rem; line-height: 1; font-weight: 100;
      color: rgba(245,241,232,0.45); background: none; border: none;
      padding: 1.2rem 1.4rem;
      cursor: pointer !important;
      transition: color .2s ease;
    }
    #lb-prev { left: 0; }
    #lb-next { right: 0; }
    #lb-prev:hover, #lb-next:hover { color: var(--gold); }
    #lb-counter {
      position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
      font-size: 9px; letter-spacing: .38em; text-transform: uppercase;
      color: rgba(245,241,232,0.38); white-space: nowrap;
    }
    #lb-dots {
      position: absolute; bottom: 3.2rem; left: 50%; transform: translateX(-50%);
      display: flex; gap: 6px;
    }
    .lb-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: rgba(245,241,232,0.22);
      transition: background .3s ease, transform .3s var(--lux);
    }
    .lb-dot.on { background: var(--gold); transform: scale(1.4); }

    /* ── Scroll-down indicator ────────────────────────────── */
    #scroll-ind {
      position: absolute; bottom: 2rem; right: 2.4rem;
      display: flex; flex-direction: column; align-items: center; gap: 9px;
      pointer-events: none;
      animation: si-fade 1s ease 3.6s both;
    }
    @keyframes si-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
    .si-label { writing-mode: vertical-rl; letter-spacing: .42em; }
    @media (max-width: 768px) { #scroll-ind { right: 1.2rem; bottom: 4.5rem; } }
    .si-label { font-size: 9px; letter-spacing: .52em; text-transform: uppercase; color: var(--faint); }
    .si-line {
      width: 1px; height: 42px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: si-drop 2.4s ease-in-out 3.6s infinite;
    }
    @keyframes si-drop {
      0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
      45%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
      100% { transform: scaleY(1) translateY(18px); opacity: 0; }
    }
    #scroll-ind.gone { opacity: 0; transition: opacity .5s ease; }

    /* ── Welcome / intro ───────────────────────────────────── */
    #welcome { display: grid; grid-template-columns: 1fr 1fr; min-height: clamp(460px, 65vh, 740px); }
    #welcome-img-col { overflow: hidden; }
    #welcome-img-col img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s var(--lux); }
    #welcome:hover #welcome-img-col img { transform: scale(1.05); }
    #welcome-text-col {
      padding: clamp(3.5rem,8vw,6.5rem) clamp(2.5rem,6vw,5.5rem);
      background: var(--surface);
      display: flex; flex-direction: column; justify-content: center;
    }
    .wlc-eye { font-size: 9px; letter-spacing: .52em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; font-weight: 300; }
    .wlc-h {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.7rem,3.2vw,2.9rem); font-weight: 300; line-height: 1.28;
      color: var(--text); margin-bottom: 2.2rem; letter-spacing: .01em;
    }
    #wlc-divider { width: 0; height: 1px; background: var(--gold); margin-bottom: 2.2rem; transition: width 1.3s var(--lux) .15s; }
    #welcome.vis #wlc-divider { width: 44px; }
    .wlc-p { font-size: 12px; line-height: 1.95; color: var(--mid); font-weight: 300; max-width: 430px; letter-spacing: .025em; margin-bottom: 1.3em; }
    .wlc-p:last-of-type { margin-bottom: 0; }
    @media (max-width: 768px) {
      #welcome { grid-template-columns: 1fr; }
      #welcome-img-col { height: 55vw; min-height: 240px; }
    }

    /* ── Experiences ───────────────────────────────────────── */
    #experiences { padding: clamp(5rem,9vh,7rem) clamp(1.5rem,5vw,3.5rem); }
    #exp-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      border: 1px solid var(--border); margin-top: 2.8rem;
    }
    .exp-card {
      padding: 2.6rem 2rem 2.2rem;
      border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
      background: var(--bg); transition: background .4s ease;
    }
    .exp-card:hover { background: var(--surface); }
    .exp-card:nth-child(3n) { border-right: none; }
    .exp-card:nth-last-child(-n+3) { border-bottom: none; }
    .exp-ico { width: 26px; height: 26px; margin-bottom: 1.3rem; color: var(--gold); }
    .exp-name { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 400; font-style: italic; color: var(--text); margin-bottom: .7rem; }
    .exp-desc { font-size: 15px; line-height: 1.7; color: var(--mid); font-weight: 400; letter-spacing: .01em; }
    @media (max-width: 768px) { #exp-grid { grid-template-columns: repeat(2,1fr); } .exp-card:nth-child(3n) { border-right: 1px solid var(--border); } .exp-card:nth-child(2n) { border-right: none; } }
    @media (max-width: 480px) { #exp-grid { grid-template-columns: 1fr; } .exp-card { border-right: none !important; } }

    /* ── Story / owner's quote ─────────────────────────────── */
    #story {
      padding: clamp(5.5rem,11vh,9rem) clamp(1.5rem,5vw,3.5rem);
      background: var(--wash); text-align: center; position: relative; overflow: hidden;
    }
    #story::before {
      content: '\201C'; position: absolute; top: -5rem; left: 50%; transform: translateX(-50%);
      font-family: 'Cormorant Garamond', serif; font-size: 22rem; line-height: 1;
      color: rgba(168,124,69,0.07); pointer-events: none; user-select: none;
    }
    .story-eye { font-size: 10px; letter-spacing: .52em; text-transform: uppercase; color: var(--gold); margin-bottom: 3rem; font-weight: 400; }
    #story-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.35rem,2.6vw,2.15rem); font-weight: 300; font-style: italic;
      line-height: 1.78; max-width: 730px; margin: 0 auto 2.4rem;
      color: var(--text); letter-spacing: .01em;
    }
    #story-attr { font-family: 'Spectral', serif; font-style: italic; font-weight: 300; font-size: 12px; letter-spacing: .14em; color: var(--mid); }

    /* ── Testimonials ──────────────────────────────────────── */
    #testimonials { padding: clamp(4.5rem,8vh,6.5rem) 0; overflow: hidden; }
    #testimonials .sec-bar { padding: 0 clamp(1.5rem,5vw,3.5rem); margin-bottom: 3rem; }
    #testi-track-wrap { overflow: hidden; }
    #testi-track {
      display: flex; gap: 1.4rem;
      padding: .4rem clamp(1.5rem,5vw,3.5rem) 1rem;
      will-change: transform; transition: transform .7s var(--lux);
    }
    .testi-card {
      flex: 0 0 clamp(270px,34vw,400px);
      background: var(--surface); border: 1px solid var(--border);
      padding: 2.2rem 2.2rem 1.8rem; border-radius: 2px;
    }
    .testi-stars { display: flex; gap: 3px; margin-bottom: 1.2rem; }
    .testi-star { color: var(--gold); font-size: 11px; line-height: 1; }
    .testi-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem,1.5vw,1.18rem); font-weight: 300; font-style: italic;
      line-height: 1.8; color: var(--text); margin-bottom: 1.6rem;
    }
    .testi-name { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--mid); font-weight: 300; }
    .testi-prop { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--faint); margin-top: 3px; }
    .testi-nav {
      display: flex; align-items: center; gap: 1rem;
      padding: 1.5rem clamp(1.5rem,5vw,3.5rem) 0;
    }
    .testi-btn {
      width: 38px; height: 38px; border-radius: 50%;
      border: 1px solid var(--border-mid); background: none; color: var(--mid);
      display: flex; align-items: center; justify-content: center; font-size: 1rem; line-height: 1;
      transition: border-color .3s ease, color .3s ease, background .3s ease;
    }
    .testi-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-light); }
    #testi-prog-wrap { flex: 1; height: 1px; background: var(--border); overflow: hidden; }
    #testi-prog-bar  { height: 100%; background: var(--gold); transition: width .7s var(--lux); width: 25%; }

    /* ── Floating WhatsApp ─────────────────────────────────── */
    #float-wa {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
      opacity: 0; pointer-events: none;
      transform: translateY(16px) scale(.88);
      transition: opacity .5s var(--lux), transform .5s var(--lux);
    }
    #float-wa.show { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
    #float-wa a {
      width: 52px; height: 52px; border-radius: 50%; background: var(--wa); color: #FAF8F3;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 22px rgba(31,158,95,.3);
      transition: transform .3s var(--lux), box-shadow .3s ease; text-decoration: none;
    }
    #float-wa a:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(31,158,95,.5); }
    #float-wa svg { width: 26px; height: 26px; fill: #FAF8F3; }

    /* ── Sticky mobile book bar ────────────────────────────── */
    #sticky-book {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 700;
      background: var(--text); padding: 1rem 1.5rem;
      display: none; align-items: center; justify-content: center;
      border-top: 1px solid rgba(168,124,69,.18);
      transform: translateY(100%); transition: transform .5s var(--lux);
    }
    #sticky-book.show { transform: translateY(0); }
    #sticky-book a {
      font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
      color: var(--bg); text-decoration: none; font-weight: 300;
      display: flex; align-items: center; gap: 10px;
    }
    #sticky-book svg { width: 14px; height: 14px; fill: var(--wa); flex-shrink: 0; }
    @media (max-width: 768px) {
      #sticky-book { display: flex; }
      #float-wa { bottom: 5.5rem; }
      /* keep the footer readable above the sticky booking bar */
      footer { padding-bottom: 6.5rem; }
    }

    /* ── Indian spatial geometry — jaali motif + brass rule ── */
    .jaali {
      width: 22px; height: 22px; margin-bottom: 1rem;
      background-image: radial-gradient(var(--gold) 1.2px, transparent 1.2px);
      background-size: 7px 7px; background-position: 1px 1px;
      opacity: .85;
    }
    .brass-rule {
      width: 60%; max-width: 640px; height: 1px;
      background: var(--gold); opacity: .45; border: none;
      margin: 0 0 0 clamp(1.5rem,5vw,3.5rem);
      transform: scaleY(.5);
    }

    /* ── WhatsApp pulse — soft concentric, 4s interval ─────── */
    #float-wa a { position: relative; }
    #float-wa a::before {
      content: ''; position: absolute; inset: 0; border-radius: 50%;
      border: 1px solid var(--wa);
      animation: wa-pulse 4s ease-out infinite;
      pointer-events: none;
    }
    @keyframes wa-pulse {
      0%   { transform: scale(1);   opacity: .3; }
      55%  { transform: scale(1.65); opacity: 0; }
      100% { transform: scale(1.65); opacity: 0; }
    }

    /* ── Booking widget (detail page) ───────────────────────── */
    #bw {
      width: min(340px, 100%); background: var(--surface);
      border: 1px solid var(--border-mid); border-radius: 2px;
      padding: 1.6rem 1.5rem 1.4rem;
    }
    #bw {
      background: var(--surface);
      border: 1px solid var(--rule);
      border-radius: 3px;
      padding: 1.8rem 1.6rem 1.5rem;
    }
    #bw .bw-title {
      font-family: 'Cormorant Garamond', serif; font-style: italic;
      font-size: 1.18rem; font-weight: 300; color: var(--text);
      margin-bottom: 1.4rem; padding-bottom: 1rem;
      border-bottom: 1px solid var(--rule);
    }
    .bw-field { margin-bottom: .9rem; }
    .bw-label {
      display: block; font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase;
      color: var(--mid); margin-bottom: 5px; font-weight: 500;
    }
    .bw-input {
      width: 100%; height: 42px;
      font-family: 'DM Sans', sans-serif; font-size: 13.5px;
      color: var(--text); background: var(--bg);
      border: 1px solid var(--rule); border-radius: 2px;
      padding: 9px 10px; outline: none;
      transition: border-color .25s ease, box-shadow .25s ease;
    }
    textarea.bw-input { height: auto; }
    .bw-input::placeholder { color: var(--faint); }
    .bw-input[type="date"] { -webkit-appearance: none; appearance: none; }
    .bw-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(153,116,71,.08); }
    .bw-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; align-items: start; }
    .bw-row .bw-field { margin-bottom: .9rem; min-width: 0; }
    .bw-err { font-size: 11.5px; color: var(--error); margin: .2rem 0 .6rem; min-height: 14px; }
    #bw .cta { width: 100%; text-align: center; margin-top: .4rem; }
    .bw-call {
      display: block; text-align: center; margin-top: .75rem;
      font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
      color: var(--mid); text-decoration: none;
      transition: color .25s ease;
    }
    .bw-call:hover { color: var(--text); }
    .bw-email {
      display: block; text-align: center; margin-top: .35rem;
      font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
      color: var(--mid); text-decoration: none;
      transition: color .25s ease;
    }
    .bw-email:hover { color: var(--gold); }
    /* Guests dropdown chargeable note */
    .bw-charge-note {
      font-size: 10.5px; color: var(--faint); line-height: 1.5;
      margin-top: .45rem; padding: .5rem .6rem;
      background: rgba(153,116,71,.055);
      border-left: 2px solid var(--gold);
      border-radius: 0 2px 2px 0;
    }
    .bw-charge-asterisk { color: var(--gold); font-weight: 600; margin-right: 2px; }

    /* ── Availability calendar — month-level ────────────────── */
    #pd-avail { margin-bottom: 3rem; }
    .avail-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
    .avail-month {
      font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
      padding: 9px 14px; border-radius: 1px; border: 1px solid var(--rule);
      color: var(--text); background: none;
      font-family: 'DM Mono', monospace;
      transition: border-color .25s ease, background .25s ease;
    }
    .avail-month.available { border-color: rgba(31,158,95,.4); }
    .avail-month.available:hover { background: rgba(31,158,95,.07); border-color: var(--wa); }
    .avail-month.partial   { border-color: rgba(168,124,69,.55); color: var(--gold); }
    .avail-month.partial:hover { background: var(--gold-light); border-color: var(--gold); }
    .avail-month.booked    { color: var(--faint); border-color: var(--border); text-decoration: line-through; }
    .avail-legend { display: flex; gap: 1.4rem; margin-top: .9rem; }
    .avail-key { display: flex; align-items: center; gap: 6px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--mid); }
    .avail-dot { width: 7px; height: 7px; border-radius: 50%; }
    .avail-dot.g { background: var(--wa); } .avail-dot.a { background: var(--gold); } .avail-dot.x { background: var(--faint); }

    /* ── Message Preview Card ───────────────────────────────── */
    /* keep floating CTAs out of the way of the detail page and preview card */
    body.detail-open #float-wa,
    body.detail-open #sticky-book {
      opacity: 0 !important; pointer-events: none !important;
    }

    #mpc-wrap, #wl-wrap {
      position: fixed; inset: 0; z-index: 900;
      display: flex; align-items: center; justify-content: center;
      background: rgba(24,24,26,0.35);
      opacity: 0; pointer-events: none; transition: opacity .35s ease;
      padding: 1.2rem;
    }
    #mpc-wrap.open, #wl-wrap.open { opacity: 1; pointer-events: all; }
    #mpc, #wl {
      position: relative;
      width: min(440px, 100%); max-height: 86vh; overflow-y: auto;
      background: var(--surface); border: 1px solid var(--border-mid); border-radius: 2px;
      padding: 1.8rem 1.7rem 1.5rem;
      transform: scale(.92) translateY(14px); transform-origin: bottom center;
      opacity: 0;
      transition: transform .5s cubic-bezier(.22,1.4,.36,1), opacity .35s ease;
    }
    #mpc-wrap.open #mpc, #wl-wrap.open #wl { transform: scale(1) translateY(0); opacity: 1; }
    .mpc-eye { font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; font-weight: 500; }
    .mpc-title { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.45rem; font-weight: 300; color: var(--text); margin-bottom: 1.1rem; }
    .mpc-rows { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: .8rem 0; margin-bottom: 1rem; }
    .mpc-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 12px; color: var(--mid); }
    .mpc-row b { font-family: 'DM Mono', monospace; font-weight: 400; color: var(--text); }
    .mpc-note-label { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--mid); margin-bottom: 5px; display: block; font-weight: 500; }
    #mpc textarea.bw-input { resize: vertical; min-height: 56px; }
    .mpc-preview {
      font-size: 12.5px; line-height: 1.7; color: var(--mid);
      background: var(--bg); border: 1px dashed var(--rule); border-radius: 1px;
      padding: .8rem .9rem; margin: .9rem 0 1.1rem; white-space: pre-wrap;
      font-family: 'DM Mono', monospace;
    }
    .mpc-actions { display: flex; gap: .7rem; align-items: center; }
    .mpc-send {
      flex: 1; background: var(--wa); color: #FAF8F3; border: none;
      font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
      padding: 13px 14px; font-weight: 500; border-radius: 1px;
      transition: filter .25s ease;
    }
    .mpc-send:hover { filter: brightness(1.07); }
    .mpc-cancel {
      background: none; border: none; font-size: 10px; letter-spacing: .24em;
      text-transform: uppercase; color: var(--mid); padding: 12px 8px;
      transition: color .25s ease;
    }
    .mpc-cancel:hover { color: var(--text); }
    /* Post-send confirmation overlay */
    .mpc-confirm {
      position: absolute; inset: 0; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: .6rem;
      background: var(--surface); border-radius: 3px;
      animation: mpc-confirm-in .35s var(--lux) both;
    }
    @keyframes mpc-confirm-in {
      from { opacity: 0; transform: scale(.94); }
      to   { opacity: 1; transform: scale(1); }
    }
    .mpc-confirm-icon {
      display: flex; align-items: center; justify-content: center;
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(153,116,71,.12); color: var(--gold);
      font-size: 22px; font-weight: 300;
    }
    .mpc-confirm p { margin: 0; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
    .mpc-confirm-sub { font-size: 11px !important; color: var(--mid); letter-spacing: .04em !important; text-transform: none !important; }
    #mpc.mpc-sent > *:not(.mpc-confirm) { visibility: hidden; }

    /* ── Readability — body copy meets the 16px standard (claude.md §3.3) ── */
    .wlc-p   { font-size: 16px; line-height: 1.85; max-width: 46ch; }
    .cdesc   { font-size: 13.5px; line-height: 1.75; }
    .exp-desc{ font-size: 16px; }
    #pd-address { font-size: 14px; }
    .testi-occ {
      font-family: 'Spectral', serif; font-style: italic; font-weight: 300;
      font-size: 12.5px; color: var(--mid); margin-top: 6px;
    }
    .fc-gst { font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); margin-top: 4px; }

    /* ── Brand wordmark (hero centerpiece) — animation states ── */
    #brand-logo {
      line-height: 1;
      display: block;
      margin: 0 auto;
      cursor: pointer;
      user-select: none;
      opacity: 0;
      transform: translateY(16px) scale(0.97);
      transform-origin: center bottom;
      transition: opacity 1.2s ease, transform 1.3s var(--lux),
                  letter-spacing 1.3s var(--lux), padding-left 1.3s var(--lux),
                  filter 0.7s ease;
    }
    #brand-logo .av-an,
    #brand-logo .av-vira { color: var(--text); }
    #brand-logo.drawn {
      opacity: 1; transform: translateY(0) scale(1);
      letter-spacing: .1em; padding-left: .1em;
    }
    #brand-logo.drawn:hover {
      filter: drop-shadow(0 16px 34px rgba(120,108,80,0.3));
      letter-spacing: .13em; padding-left: .13em;
    }
    #brand-logo.swaying { animation: logoBreathe 9s ease-in-out 2s infinite; }
    #brand-logo.swaying:hover { animation-play-state: paused; }
    @keyframes logoBreathe {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-7px); }
    }

    /* ── Scroll progress bar ───────────────────────────────── */
    #scroll-progress {
      position: fixed; top: 0; left: 0; height: 2px; width: 0;
      background: linear-gradient(to right, var(--gold), #b69468);
      z-index: 300; opacity: .75; pointer-events: none;
      transition: width .15s linear;
    }

    /* ── Property card tilt (desktop) ──────────────────────── */
    .prop-card { transform-style: preserve-3d; will-change: transform; }

    /* ── prefers-reduced-motion ────────────────────────────── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      html { scroll-behavior: auto; }
      .fi { opacity: 1 !important; transform: none !important; }
      #page { opacity: 1 !important; transform: none !important; }
      .hero-btm .eyebrow, .hero-btm .ed, .hero-btm .stats { opacity: 1 !important; transform: none !important; }
      #brand-logo { opacity: 1 !important; transform: none !important; }
      #wlc-divider { width: 44px !important; }
    }

    /* ── Touch devices — remove custom cursor ─────────────── */
    @media (hover: none) {
      *, *::before, *::after { cursor: auto !important; }
      #cursor-ring, #cursor-dot { display: none !important; }
    }

    /* ── Tablet ≤900px ────────────────────────────────────── */
    @media (max-width: 900px) {
      #pd-meta { grid-template-columns: 1fr; gap: 2rem; }
      #pd-cta-col { align-items: flex-start; }
      #pd-gallery { grid-template-columns: repeat(2, 1fr); }
    }

    /* ── Mobile ≤768px ────────────────────────────────────── */
    @media (max-width: 768px) {
      #nav { padding: 1.1rem 1.5rem; }

      /* ── Menu: slide LEFT→RIGHT on mobile ── */
      #menu {
        left: 0; right: auto;
        width: min(85vw, 340px);
        border-left: none;
        border-right: 1px solid var(--rule);
        transform: translateX(-100%);
        padding: 5rem 2rem 2.5rem;
        box-shadow: 8px 0 48px rgba(24,24,26,.1);
      }
      #menu.open { transform: translateX(0); }
      .mlink { font-size: clamp(1.7rem, 7vw, 2.4rem); }
      #menu-foot { left: 2rem; right: auto; bottom: 2rem; }

      /* Accordion: vertical stack */
      #accordion {
        flex-direction: column;
        height: auto;
        gap: 10px;
        padding: 0 clamp(1rem, 4vw, 1.5rem);
      }
      .acol { height: 280px; border-radius: 8px; }
      .acol:hover .acol-imgs { transform: none; }
      .acol-info {
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: all;
      }
      .acol-bar     { width: 28px !important; transition: none; }
      .acol-dots    { opacity: 1 !important; }
      .acol-counter { opacity: 1 !important; }
      .acol-vert    { display: none; }
      .acol-g {
        background: linear-gradient(
          to top,
          rgba(24,24,26,0.92) 0%,
          rgba(24,24,26,0.40) 38%,
          rgba(24,24,26,0.08) 65%,
          transparent 100%
        );
      }

      /* Section bar: stack */
      .sec-bar { flex-direction: column; gap: .6rem; align-items: flex-start; }
      .sec-bar-hint { display: none; }

      /* Detail page */
      #pd-hero { height: clamp(240px, 50vh, 420px); }
      #pd-hero-name { font-size: clamp(1.8rem, 7vw, 3rem); }
      #pd-meta { grid-template-columns: 1fr; gap: 1.5rem; }
      #pd-cta-col { align-items: flex-start; }
      #pd-gallery { grid-template-columns: repeat(2, 1fr); }

      /* Inquiry: stack */
      #inquiry { flex-direction: column; }
      footer { flex-direction: column; gap: 1rem; }

      /* Lead popup → bottom sheet on mobile */
      #lead-popup-wrap { align-items: flex-end; }
      #lead-popup {
        width: 100%; max-height: 82vh; overflow-y: auto;
        border-radius: 18px 18px 0 0;
        padding: 1rem 1.5rem 2.5rem;
        transform: translateY(100%); opacity: 1;
      }
      #lead-popup-wrap.show #lead-popup { transform: translateY(0); }
      #lead-popup::before {
        content: ''; display: block;
        width: 36px; height: 4px; border-radius: 2px;
        background: var(--rule); margin: 0 auto 1.4rem;
      }
      #lead-popup-close { top: 1.2rem; right: 1.2rem; }
      #lead-popup .lp-title { font-size: 1.45rem; }

      /* Availability calendar: single column on mobile */
      .avail-cal-months { flex-direction: column; }
      .avail-cal-month { min-width: unset; max-width: 100%; }
      .avail-cal-day { font-size: .68rem; }

      /* Booking widget: single column row on mobile */
      .bw-row { grid-template-columns: 1fr; gap: 0; }

      /* Google rating badge: compact */
      .google-rating-badge { padding: .7rem 1rem; gap: .7rem; }
      .grb-num { font-size: 1.2rem; }

      /* Guest chargeable note: smaller text */
      .bw-charge-note { font-size: 10px; }

      /* Click-to-call: larger touch target */
      .bw-call {
        font-size: 12px; min-height: 44px;
        display: flex; align-items: center; justify-content: center;
        padding: .5rem 1rem; margin-top: .5rem;
        border: 1px solid var(--border-mid); border-radius: 2px;
      }

      /* Share button: visible on mobile */
      .ep-share-btn { display: flex; }

      /* Gallery tabs: scroll fade hint */
      #pd-gallery-tabs {
        position: relative; overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; flex-wrap: nowrap;
        -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
        mask-image: linear-gradient(to right, black 80%, transparent 100%);
      }
      #pd-gallery-tabs::-webkit-scrollbar { display: none; }
      .gal-tab { white-space: nowrap; flex-shrink: 0; }

      /* Local guide map links: full tap area */
      .lg-map-link {
        display: flex; width: 100%; padding: .6rem 0;
        font-size: .75rem;
      }
    }

    /* ── Small phone ≤480px ───────────────────────────────── */
    @media (max-width: 480px) {
      .acol { height: 240px; }
      .stats { gap: .75rem; }
      .sn { font-size: 2.2rem; }
      #hwm .av { font-size: clamp(3rem, 14vw, 5rem); letter-spacing: .14em; padding-left: .14em; }
      .cards { grid-template-columns: 1fr; }
      #pd-gallery { grid-template-columns: 1fr; }
      #pd-gallery img.lead { grid-column: span 1; grid-row: span 1; }
      #pd-specs { gap: 1.5rem; }
      .pd-spec-n { font-size: 1.7rem; }
      .pd-amen-tag { padding: 8px 14px; font-size: 10px; }
      .cta { width: 100%; text-align: center; padding: 16px 20px; }

      /* Booking widget full-width CTA */
      #bw { padding: 1.4rem 1.1rem 1.3rem; }
      #bw .bw-title { font-size: 1rem; margin-bottom: 1rem; padding-bottom: .8rem; }

      /* Calendar nav buttons: full width */
      .avail-cal-nav { justify-content: space-between; }
      .avail-cal-nav-btn { flex: 1; text-align: center; }
    }

    /* ════════════════════════════════════════════════════════════
       Estate pages — /estates/[slug].html
       Two-column conversion layout: story left, sticky booking right.
       All spacing drawn from the --space scale for symmetric rhythm.
       ════════════════════════════════════════════════════════════ */
    .ep-hero { position: relative; height: 100svh; min-height: 480px; overflow: hidden; }
    .ep-hero img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      animation: kenburns 8s var(--lux) both;
    }
    @keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.03); } }
    .ep-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(24,24,26,.78) 0%, rgba(24,24,26,.08) 52%, transparent 100%);
    }
    .ep-hero-caption { position: absolute; bottom: var(--space-5); left: var(--pad-x); right: var(--pad-x); }
    .ep-hero { position: relative; } /* ensures share btn positions within hero */
    .ep-crumb { font-size: 9.5px; letter-spacing: .4em; text-transform: uppercase; margin-bottom: .7rem; }
    .ep-crumb, .ep-crumb a { color: rgba(255,255,255,.55); text-decoration: none; }
    .ep-crumb a:hover { color: #FAF8F3; }

    .ep-wrap { max-width: 1180px; margin: 0 auto; padding: var(--space-6) var(--pad-x); }
    .ep-main { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
    .ep-aside {
      position: sticky; top: 92px; display: flex; flex-direction: column; gap: var(--space-3);
      /* taller than the viewport on smaller screens: scroll within, don't pin */
      max-height: calc(100dvh - 92px - 1.5rem);
      overflow-y: auto;
      overscroll-behavior: contain;
      scrollbar-width: thin;
      scrollbar-color: var(--border-mid) transparent;
    }

    .ep-section { padding-top: var(--space-4); margin-top: var(--space-4); position: relative; }
    .ep-section::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 60%; height: 1px; background: var(--gold); opacity: .35; transform: scaleY(.5);
    }
    .ep-section:first-child { padding-top: 0; margin-top: 0; border-top: none; }
    .ep-sec-title { font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.2rem; font-weight: 500; }

    /* Story prose — readable measure, no orphan space */
    .ep-story-text { max-width: 600px; }
    .ep-story-text p, .ep-story-text li {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 300; line-height: 1.8;
      color: var(--mid);
    }
    .ep-story-text p { margin-bottom: 1em; }
    .ep-story-text p:last-child { margin-bottom: 0; }
    .ep-story-text ul { margin: .2em 0 1em 1.3em; }
    .ep-story-text li { margin-bottom: .4em; }
    .ep-stats { display: flex; gap: var(--space-4); margin-top: var(--space-4); }

    /* Price anchor block */
    .ep-price {
      background: var(--surface); border: 1px solid var(--border-mid); border-radius: 2px;
      padding: 1.4rem 1.5rem 1.3rem;
    }
    .ep-price-from { font-size: 9.5px; letter-spacing: .36em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }
    .ep-price-amt  { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300; font-style: italic; color: var(--text); line-height: 1.2; }
    .ep-price-note { font-size: 11.5px; color: var(--mid); margin-top: 6px; line-height: 1.6; }
    .ep-price-min  { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--gold); margin-top: 8px; letter-spacing: .06em; }
    .ep-incl { margin-top: 1rem; border-top: 1px solid var(--rule); padding-top: .9rem; }
    .ep-incl-title { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; font-weight: 500; }
    .ep-incl li { font-size: 12px; line-height: 1.9; color: var(--mid); list-style: none; padding-left: 16px; position: relative; }
    .ep-incl li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
    .ep-incl li.x::before { content: '+'; }

    /* Local guide */
    .lg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3) var(--space-4); }
    .lg-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; font-style: italic; color: var(--text); }
    .lg-desc { font-size: 13px; line-height: 1.75; color: var(--mid); margin: 5px 0 7px; }
    .lg-meta { font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
    .lg-meta span { color: var(--faint); }

    /* Reviews on estate page */
    .ep-reviews { display: grid; gap: var(--space-3); }
    .ep-reviews .testi-card { flex: none; }

    /* Trust strip under booking widget */
    .ep-trust { font-size: 11px; line-height: 1.8; color: var(--mid); text-align: center; letter-spacing: .04em; }
    .ep-trust b { color: var(--text); font-weight: 500; }

    /* Write-a-review card (Guest Voices section, after testimonials) */
    .ep-review-cta {
      background: var(--surface); border: 1px solid var(--border-mid); border-radius: 2px;
      padding: 1.3rem 1.5rem; text-align: center;
      margin-top: var(--space-3); max-width: 600px;
    }
    .ep-review-cta .cta-ghost { max-width: 280px; margin: 0 auto; }
    .ep-review-line {
      font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
      font-size: 1.05rem; color: var(--mid); margin: .4rem 0 1rem; line-height: 1.6;
    }
    .ep-review-cta .cta-ghost {
      display: block; width: 100%; text-align: center; text-decoration: none;
      background: transparent; color: var(--text);
      border: 1px solid var(--border-mid);
      transition: border-color .3s ease, color .3s ease;
    }
    .ep-review-cta .cta-ghost:hover { background: transparent; border-color: var(--gold); color: var(--gold); }

    /* Similar estates + footer CTA reuse .cards / #inquiry styles */
    .ep-similar { max-width: 1180px; margin: 0 auto; padding: 0 var(--pad-x) var(--space-6); }

    @media (max-width: 980px) {
      .ep-main { grid-template-columns: 1fr; }
      .ep-aside { position: static; max-width: 480px; max-height: none; overflow-y: visible; }
    }
    @media (max-width: 768px) {
      .ep-hero { height: 72svh; min-height: 420px; }
      .ep-hero-caption { padding: 0 1.2rem 2rem; }
      .lg-grid { grid-template-columns: 1fr; }
      .ep-stats { gap: var(--space-3); }
      .ep-wrap { padding: var(--space-4) var(--pad-x); }
      .ep-aside { max-width: 100%; }
      #bw .bw-row { grid-template-columns: 1fr; }
      .avail-cal-months { flex-direction: column; }
      .avail-cal-month { min-width: unset; max-width: 100%; }
      .ep-reviews { display: flex; flex-direction: column; gap: 1rem; }
      .testi-card { padding: 1.4rem 1.2rem; }
    }

    /* ════════════════════════════════════════════════════════════
       Phase 2 — Conversion system: trust strip, listing filter,
       coming-soon cards, waitlist modal extras
       ════════════════════════════════════════════════════════════ */

    /* ── Trust strip — why book directly ── */
    .trust-strip {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: var(--space-3);
      max-width: 1180px; margin: 0 auto;
      padding: var(--space-5) var(--pad-x);
      border-top: 1px solid var(--border);
      text-align: center;
    }
    .trust-item { display: flex; flex-direction: column; gap: 7px; align-items: center; }
    .trust-n {
      font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
      font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--gold); line-height: 1;
    }
    .trust-l { font-size: 11.5px; letter-spacing: .08em; color: var(--mid); line-height: 1.7; max-width: 24ch; }
    @media (max-width: 700px) {
      .trust-strip { grid-template-columns: 1fr; gap: var(--space-4); padding: var(--space-5) var(--pad-x); }
    }

    /* ── Listing filter bar ── */
    .est-filter {
      display: flex; align-items: center; justify-content: space-between;
      gap: var(--space-3); flex-wrap: wrap;
      margin-bottom: var(--space-4);
      padding-bottom: var(--space-2);
      border-bottom: 1px solid var(--border);
    }
    .est-pills { display: flex; gap: .5rem; flex-wrap: wrap; }
    .est-pill {
      background: none; border: 1px solid var(--border-mid); border-radius: 1px;
      font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
      color: var(--mid); padding: 9px 16px; transition: all .3s var(--lux);
    }
    .est-pill:hover { border-color: var(--gold); color: var(--text); }
    .est-pill.on { background: var(--text); border-color: var(--text); color: var(--surface); }
    .est-guests-label {
      font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--mid);
      display: inline-flex; align-items: center; gap: .7rem;
    }
    .est-guests {
      background: var(--surface); border: 1px solid var(--border-mid); border-radius: 1px;
      font-family: 'DM Mono', monospace; font-size: 12px; color: var(--text);
      padding: 8px 10px;
    }
    .est-empty { font-size: 15px; color: var(--mid); padding: var(--space-4) 0; }
    .est-empty a { color: var(--gold); }

    /* ── "Under Curation" coming-soon cards ── */
    .prop-card-soon { cursor: default; }
    .prop-card-soon .ci-soon {
      position: relative; background: var(--wash);
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .prop-card-soon .ci-soon .ci-soon-img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; filter: blur(22px) brightness(.65) saturate(.6);
      transform: scale(1.12); /* hides blur edge artefacts */
    }
    .prop-card-soon .ci-soon .jaali { position: absolute; inset: 0; opacity: .45; }
    .prop-card-soon .cprice { color: var(--gold); }
    .prop-card-soon .cfoot { justify-content: flex-end; }
    .prop-card-soon .enq { background: none; border: 1px solid var(--border-mid); padding: 10px 18px; }
    .prop-card-soon .enq:hover { border-color: var(--gold); }

    /* ── Waitlist modal extras (shares #mpc modal shell) ── */
    .wl-blurb { font-size: 13.5px; line-height: 1.75; color: var(--mid); margin-bottom: 1.1rem; }
    .wl-consent-row {
      display: flex; gap: .6rem; align-items: flex-start;
      font-size: 12px; line-height: 1.65; color: var(--mid);
      margin: .9rem 0 .4rem; cursor: pointer;
    }
    .wl-consent-row input { margin-top: 3px; accent-color: var(--gold); }
    .wl-done-msg { font-size: 14.5px; line-height: 1.8; color: var(--text); margin: .6rem 0 1.1rem; }

    /* ════════════════════════════════════════════════════════════
       Phase 3 — Guest journey: pre-arrival, review form, legal pages
       ════════════════════════════════════════════════════════════ */

    /* ── Shared inner-page shell ── */
    .inner-page {
      max-width: 720px; margin: 0 auto;
      padding: clamp(120px, 16vh, 170px) var(--pad-x) var(--space-7);
    }
    .inner-title {
      font-family: 'Cormorant Garamond', serif; font-weight: 300;
      font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.12;
      margin: .4rem 0 1rem; color: var(--text);
    }
    .inner-title, .inner-page h1 em { font-style: italic; }
    .inner-sub { font-size: 16.5px; line-height: 1.85; color: var(--mid); max-width: 56ch; margin-bottom: var(--space-2); }

    /* ── Pre-arrival (/arrive) ── */
    .arr-dist-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2); }
    .arr-dist {
      display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-2);
      border-bottom: 1px solid var(--border); padding-bottom: .7rem;
    }
    .arr-dist-from { font-size: 15.5px; color: var(--text); }
    .arr-dist-time { font-family: 'DM Mono', monospace; font-size: 12.5px; color: var(--mid); white-space: nowrap; }
    .arr-note-p { font-size: 15px; line-height: 1.8; color: var(--mid); margin-top: var(--space-3); }
    .arr-caretaker { font-size: 16px; line-height: 1.85; color: var(--mid); }
    .arr-caretaker b { color: var(--text); font-weight: 500; }
    .arr-contact { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-3); flex-wrap: wrap; }
    .arr-list { list-style: none; padding: 0; }
    .arr-list li {
      font-size: 15.5px; line-height: 1.8; color: var(--mid);
      padding: .65rem 0 .65rem 1.6rem; position: relative;
      border-bottom: 1px solid var(--border);
    }
    .arr-list li::before {
      content: ''; position: absolute; left: 2px; top: 1.35rem;
      width: 5px; height: 5px; background: var(--gold); border-radius: 50%;
    }

    /* ── Review form (/reviews/submit) ── */
    .rv-form { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-4); }
    select.bw-input { appearance: none; background-image: linear-gradient(45deg, transparent 49%, var(--mid) 50%, transparent 53%); background-repeat: no-repeat; background-position: right 12px top 55%; background-size: 9px 9px; }
    .rv-rating { border: none; padding: 0; margin: .2rem 0; display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
    .rv-rating legend { margin-bottom: 8px; }
    .rv-rating input { position: absolute; opacity: 0; pointer-events: none; }
    .rv-rating label {
      font-size: 1.7rem; line-height: 1; color: var(--rule);
      padding: 2px 4px; cursor: pointer; transition: color .25s ease, transform .25s var(--lux);
    }
    .rv-rating label:hover { transform: translateY(-2px); }
    /* fill stars up to the hovered/checked one (markup order: input,label,input,label…) */
    .rv-rating:hover label { color: var(--gold); }
    .rv-rating label:hover ~ label { color: var(--rule); }
    .rv-rating input:checked ~ label { color: var(--rule); }
    .rv-rating:not(:hover) input:checked + label,
    .rv-rating:not(:hover) label:has(~ input:checked) { color: var(--gold); }
    .rv-rating input:focus-visible + label { outline: 1.5px solid var(--gold); outline-offset: 2px; }
    .rv-count { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--faint); margin-top: 6px; }
    .rv-count.over { color: var(--error); }
    .rv-done { margin-top: var(--space-5); }
    .rv-done .cta { margin-top: var(--space-3); display: inline-block; }

    /* ── Legal pages ── */
    .legal-p { font-size: 16px; line-height: 1.9; color: var(--mid); max-width: 60ch; }
    .legal-updated { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--faint); margin-top: var(--space-5); letter-spacing: .04em; }

    /* ════════════════════════════════════════════════════════════
       Phase 4 — Interaction & motion polish (claude.md §3:
       unhurried but precise; nav links / body text / buttons
       stay un-animated beyond color & underline)
       ════════════════════════════════════════════════════════════ */

    /* ── Jaali dot-grid marker above every section title ── */
    .ep-sec-title::before {
      content: ''; display: block; width: 22px; height: 22px;
      margin-bottom: .9rem;
      background-image: radial-gradient(var(--gold) 1.2px, transparent 1.2px);
      background-size: 7px 7px; background-position: 1px 1px;
      opacity: .85;
    }

    /* ── Brass underline grows under the estate name on card hover ── */
    .cname { position: relative; display: inline-block; padding-bottom: 2px; }
    .cname::after {
      content: ''; position: absolute; left: 0; bottom: 0;
      width: 100%; height: 1px; background: var(--gold);
      transform: scaleX(0); transform-origin: left center;
      transition: transform .6s var(--lux);
    }
    .prop-card:hover .cname::after { transform: scaleX(1); }

    /* ── Estate hero name — word stagger (40ms per word) ── */
    .hw {
      display: inline-block; opacity: 0; transform: translateY(.45em);
      animation: hw-in .8s var(--lux) forwards;
      animation-delay: calc(.15s + var(--wi, 0) * 40ms);
    }
    @keyframes hw-in { to { opacity: 1; transform: translateY(0); } }

    /* ── Booking panel slide-in on first scroll past the hero ── */
    .ep-aside.pre { opacity: 0; transform: translateY(18px); }
    .ep-aside { transition: opacity .8s ease, transform .8s var(--lux); }
    .ep-aside.in { opacity: 1; transform: translateY(0); }

    /* ── Calendar month → booking widget pre-fill confirmation ── */
    .bw-input.flash { animation: bw-flash 1.1s ease both; }
    @keyframes bw-flash {
      0% { background: var(--gold-light); border-color: var(--gold); }
      100% { background: transparent; }
    }

    /* ── Lead-capture popup ──────────────────────────────────── */
    #lead-popup-wrap {
      position: fixed; inset: 0; z-index: 300;
      background: rgba(24,24,26,.45);
      backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity .45s ease;
    }
    #lead-popup-wrap.show { opacity: 1; pointer-events: all; }
    #lead-popup {
      background: var(--surface);
      border: 1px solid var(--rule);
      border-radius: 4px;
      width: min(92vw, 480px);
      padding: 2.8rem 2.4rem 2.4rem;
      position: relative;
      box-shadow: 0 20px 60px rgba(24,24,26,.18);
      transform: translateY(18px); opacity: 0;
      transition: transform .5s var(--lux) .1s, opacity .4s ease .1s;
    }
    #lead-popup-wrap.show #lead-popup { transform: translateY(0); opacity: 1; }
    #lead-popup-close {
      position: absolute; top: 1rem; right: 1.1rem;
      background: none; border: none;
      font-size: 1.2rem; color: var(--mid);
      line-height: 1; padding: 4px 8px;
      cursor: pointer; transition: color .2s ease;
    }
    #lead-popup-close:hover { color: var(--text); }
    #lead-popup .lp-eye {
      font-size: 9px; letter-spacing: .44em; text-transform: uppercase;
      color: var(--gold); margin-bottom: .8rem; font-weight: 400;
    }
    #lead-popup .lp-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.5rem, 4vw, 2rem);
      font-weight: 300; line-height: 1.25; margin-bottom: .6rem;
    }
    #lead-popup .lp-sub {
      font-size: .8rem; color: var(--mid); margin-bottom: 1.8rem; line-height: 1.55;
    }
    #lead-popup-form { display: flex; flex-direction: column; gap: 1rem; }
    #lead-popup-form .lp-field { display: flex; flex-direction: column; gap: .3rem; }
    #lead-popup-form label { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mid); }
    #lead-popup-form input {
      border: 1px solid var(--border-mid); border-radius: 2px;
      background: var(--bg); color: var(--text);
      padding: .65rem .85rem; font-size: .88rem; font-family: inherit;
      transition: border-color .2s ease;
    }
    #lead-popup-form input:focus { outline: none; border-color: var(--gold); }
    #lead-popup-form .lp-submit {
      margin-top: .4rem;
      background: var(--text); color: var(--bg);
      border: none; border-radius: 2px;
      padding: .85rem 1.5rem; font-size: .78rem;
      letter-spacing: .22em; text-transform: uppercase; font-family: inherit;
      cursor: pointer; transition: background .25s ease;
    }
    #lead-popup-form .lp-submit:hover { background: var(--gold); }
    #lead-popup .lp-privacy {
      font-size: .68rem; color: var(--faint); margin-top: 1rem; text-align: center;
    }

    /* ── Google rating badge ─────────────────────────────────── */
    .google-rating-badge {
      display: flex; align-items: center; gap: .9rem;
      background: var(--surface); border: 1px solid var(--rule);
      border-radius: 4px; padding: .9rem 1.2rem;
      margin-bottom: 1.6rem; width: fit-content;
    }
    .grb-logo {
      display: flex; align-items: center; gap: .5rem;
      font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
      color: var(--mid); font-weight: 500;
    }
    .grb-logo svg { flex-shrink: 0; }
    .grb-divider { width: 1px; height: 2rem; background: var(--rule); }
    .grb-score { display: flex; flex-direction: column; align-items: flex-start; gap: .2rem; }
    .grb-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 300; line-height: 1; color: var(--text);
    }
    .grb-stars { display: flex; gap: 2px; }
    .grb-star { color: #F5B100; font-size: .75rem; }
    .grb-star.half { position: relative; color: var(--rule); }
    .grb-star.half::before { content: '★'; position: absolute; left: 0; width: 55%; overflow: hidden; color: #F5B100; }
    .grb-count { font-size: .65rem; color: var(--faint); letter-spacing: .06em; }

    /* ── Availability real calendar ──────────────────────────── */
    .avail-cal-wrap { display: flex; flex-direction: column; gap: 1.6rem; }
    .avail-cal-nav {
      display: flex; align-items: center; gap: 1rem; margin-bottom: .4rem;
    }
    .avail-cal-nav-btn {
      background: none; border: 1px solid var(--border-mid);
      border-radius: 2px; padding: .3rem .7rem;
      font-size: .8rem; color: var(--mid); cursor: pointer;
      transition: border-color .2s ease, color .2s ease;
    }
    .avail-cal-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
    .avail-cal-months { display: flex; gap: 1.4rem; flex-wrap: wrap; }
    .avail-cal-month { flex: 1; min-width: 200px; max-width: 280px; }
    .avail-cal-month-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; font-weight: 400; letter-spacing: .06em;
      color: var(--text); margin-bottom: .7rem; text-align: center;
    }
    .avail-cal-grid {
      display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
    }
    .avail-cal-dow {
      font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
      color: var(--faint); text-align: center; padding-bottom: .3rem;
    }
    .avail-cal-day {
      aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
      font-size: .72rem; border-radius: 2px;
      transition: background .15s ease, color .15s ease;
    }
    .avail-cal-day.available { background: rgba(31,158,95,.1); color: var(--text); cursor: pointer; }
    .avail-cal-day.available:hover { background: rgba(31,158,95,.24); }
    .avail-cal-day.partial { background: rgba(168,124,69,.1); color: var(--text); cursor: pointer; }
    .avail-cal-day.partial:hover { background: rgba(168,124,69,.24); }
    .avail-cal-day.booked { background: rgba(181,81,58,.08); color: var(--rule); text-decoration: line-through; cursor: default; }
    .avail-cal-day.empty { background: transparent; }
    .avail-cal-day.past { color: var(--rule); cursor: default; }
    .avail-cal-day.today { outline: 1px solid var(--gold); }
    /* Range selection states */
    .avail-cal-day.cal-start,
    .avail-cal-day.cal-end {
      background: var(--gold) !important;
      color: var(--surface) !important;
      border-radius: 50%;
      font-weight: 500;
    }
    .avail-cal-day.cal-in-range {
      background: rgba(153,116,71,.18) !important;
      color: var(--text) !important;
      border-radius: 0;
    }
    .avail-cal-day.cal-hover-range {
      background: rgba(153,116,71,.1) !important;
      border-radius: 0;
    }
    /* Status bar */
    .avail-cal-status {
      font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1rem;
      padding: .5rem .75rem;
      background: rgba(153,116,71,.07);
      border-left: 2px solid var(--gold);
      border-radius: 0 2px 2px 0;
      min-height: 2rem; line-height: 1.6;
    }

    /* ── Share button ────────────────────────────────────────── */
    .ep-share-btn {
      display: none; /* hidden on desktop — shown on mobile via media query */
      align-items: center; gap: 6px;
      background: rgba(24,24,26,.32); backdrop-filter: blur(10px);
      border: 1px solid rgba(250,248,243,.2); border-radius: 20px;
      color: #faf8f3; font-size: 10px; letter-spacing: .18em;
      text-transform: uppercase; padding: 8px 14px;
      cursor: pointer; transition: background .2s ease;
      position: fixed; top: 5rem; right: 1.2rem; z-index: 50;
    }
    .ep-share-btn:hover { background: rgba(24,24,26,.5); }
    .ep-share-copied {
      position: fixed; top: 5rem; right: 1.2rem; z-index: 50;
      background: var(--text); color: var(--surface);
      font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
      padding: 8px 14px; border-radius: 20px;
      opacity: 0; pointer-events: none;
      transition: opacity .25s ease;
    }
    .ep-share-copied.show { opacity: 1; }

    /* ── Local guide map link ────────────────────────────────── */
    .lg-map-link {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
      color: var(--gold); text-decoration: none; margin-top: .5rem;
      transition: opacity .2s ease;
    }
    .lg-map-link:hover { opacity: .72; }

    /* ── Reduced motion: every Phase 4 effect resolves to its end state ── */
    @media (prefers-reduced-motion: reduce) {
      .ep-hero img { animation: none !important; transform: none !important; }
      .hw { opacity: 1 !important; transform: none !important; animation: none !important; }
      .ep-aside, .ep-aside.pre { opacity: 1 !important; transform: none !important; transition: none !important; }
      .cname::after { transition: none !important; }
      .bw-input.flash { animation: none !important; }
    }

    /* ── Touch ergonomics — phones & tablets only (hover: none) ── */
    @media (hover: none) {
      /* iOS Safari zooms the page when a focused field is under 16px */
      .bw-input { font-size: 16px; }
      /* 44px-minimum touch targets: invisible padding, identical look */
      #pd-map-link, .bw-call, .fa, .ep-crumb a {
        padding-top: 12px; padding-bottom: 12px;
        margin-top: -12px; margin-bottom: -12px;
      }
      #lb-close { padding: 14px 18px; top: .6rem; right: .6rem; }
      #lb-prev, #lb-next { padding: 2.2rem 1.4rem; }
      /* clear the iPhone home-indicator gesture area */
      #sticky-book { padding-bottom: calc(1rem + env(safe-area-inset-bottom)); }
      #float-wa { margin-bottom: env(safe-area-inset-bottom); }
    }
