:root {
    --paper:  #F4EEE4;
    --ink:    #241F1A;
    --navy:   #2D1411;   /* brand espresso */
    --black:  #000000;   /* pure black — loader curtain + footer, per client */
    --gold:   #B08D4C;
    --gold-lt:#D6B266;
    --spec-bg:#EDE8E2;   /* this page's canvas, per brief */
    --ease-reveal: cubic-bezier(.22, 1, .36, 1);
    --serif: 'Google Sans', 'Figtree', 'Noto Sans Georgian', 'Inter', Helvetica, Arial, sans-serif;
    --sans:  'Google Sans', 'Figtree', 'Noto Sans Georgian', 'Inter', Helvetica, Arial, sans-serif;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { overflow-x: hidden; scroll-behavior: smooth; }
  body { font-family: var(--sans); background: var(--spec-bg); color: var(--navy); -webkit-font-smoothing: antialiased; }

  /* ---------------- Header (same nav as homepage; light by default here) ---------------- */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 40;
    display: flex; align-items: center;
    padding: clamp(16px, 2.6vh, 26px) clamp(20px, 4vw, 56px);
    color: var(--navy); --hline: rgba(45,20,17,.28);
    transition: padding .5s var(--ease-reveal), background-color .5s ease,
      -webkit-backdrop-filter .5s ease, backdrop-filter .5s ease, box-shadow .5s ease;
  }
  .hdr-left  { display: flex; align-items: center; gap: clamp(16px, 2vw, 34px); }
  /* absolutely centred so the logo stays dead-centre regardless of side widths */
  .logo      { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: inline-flex; align-items: center; text-decoration: none; }
  .hdr-right { display: flex; align-items: center; gap: clamp(12px, 1.3vw, 20px); margin-left: auto; }
  .logo-img { height: 52px; width: auto; display: block; transition: height .5s var(--ease-reveal); }
  .hdr-left a { position: relative; color: currentColor; text-decoration: none; font-size: 16px; font-weight: 400; opacity: .9; transition: opacity .3s ease; }
  .hdr-left a.is-current { opacity: 1; }
  .hdr-left a::after { content: ''; display: block; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-reveal); margin-top: 2px; }
  .hdr-left a:hover::after, .hdr-left a:focus-visible::after, .hdr-left a.is-current::after { transform: scaleX(1); }
  .hdr-left a:hover, .hdr-left a:focus-visible { opacity: 1; }
  .lang { font-size: 13.5px; white-space: nowrap; color: currentColor; }
  .lang a { color: currentColor; text-decoration: none; opacity: .5; }
  .lang a.on { opacity: 1; }
  .lang i { opacity: .4; margin: 0 5px; font-style: normal; }
  .btn-find, .request { display: inline-flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 400;
    border-radius: 999px; padding: 8px 20px; cursor: pointer; text-decoration: none; white-space: nowrap;
    transition: background .35s var(--ease-reveal), color .35s var(--ease-reveal), border-color .35s ease; }
  .btn-find svg, .request svg { width: 13px; height: 13px; transition: transform .35s var(--ease-reveal); }
  .btn-find { color: var(--paper); background: var(--navy); border: 1px solid var(--navy); }
  .btn-find:hover, .btn-find:focus-visible { background: var(--gold); color: var(--navy); border-color: var(--gold); }
  .btn-find:hover svg, .btn-find:focus-visible svg { transform: translate(2px,-2px); }
  .request { color: currentColor; background: transparent; border: 1px solid var(--hline); }
  .request:hover, .request:focus-visible { background: var(--navy); color: var(--paper); border-color: var(--navy); }
  .request:hover svg, .request:focus-visible svg { transform: translate(2px,-2px); }
  /* over a full-bleed dark section the bar overlaps it: transparent, light ink */
  header.on-dark { color: var(--paper); --hline: rgba(244,238,228,.42); }
  header.on-dark .logo-img { filter: brightness(0) invert(1); }
  header.on-dark.is-stuck { background: rgba(28,14,11,.28); box-shadow: 0 1px 0 rgba(244,238,228,.14); }
  header.on-dark .btn-find { background: var(--paper); color: var(--navy); border-color: var(--paper); }
  header.on-dark .btn-find:hover, header.on-dark .btn-find:focus-visible { background: var(--gold); color: var(--navy); border-color: var(--gold); }
  header.on-dark .request:hover, header.on-dark .request:focus-visible { background: var(--paper); color: var(--navy); border-color: var(--paper); }
  header.is-stuck { padding: 9px clamp(20px, 4vw, 56px);
    background: rgba(237,232,226,.78); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(45,20,17,.08); }
  header.is-stuck .logo-img { height: 38px; }
  /* once the left nav collapses there isn't room to centre the logo without
     colliding with the actions — sit it left (in flow) instead */
  @media (max-width: 940px) { .hdr-left { display: none; } .logo { position: static; transform: none; } }

  /* ============================================================
     §  BUILDINGS SPECIFICATIONS  (the interactive site plan)
     ============================================================ */
  .specs { position: relative; background: var(--spec-bg); color: var(--navy);
    padding: clamp(112px, 16vh, 176px) clamp(22px, 5vw, 84px) clamp(72px, 12vh, 128px); overflow: hidden; }
  .specs-inner { max-width: 1440px; margin: 0 auto; }

  .specs-title { font-family: var(--serif); font-weight: 500; letter-spacing: -.008em;
    font-size: clamp(40px, 5.6vw, 88px); line-height: .98; max-width: 15ch; }
  .specs-intro { margin-top: 22px; max-width: 54ch; font-size: clamp(15px, 1.15vw, 17.5px);
    line-height: 1.6; color: rgba(45,20,17,.72); }

  /* three-column stage: list · map · detail */
  .specs-stage { margin-top: clamp(44px, 7vh, 84px);
    display: grid; grid-template-columns: minmax(220px, .82fr) minmax(0, 1.45fr) minmax(280px, 1fr);
    column-gap: clamp(24px, 3.4vw, 60px); align-items: stretch; }

  /* --- left: the zone list --- */
  .zone-list { list-style: none; align-self: center; }
  .zone { position: relative; width: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: baseline;
    gap: 4px 16px; text-align: left; background: none; border: none; cursor: pointer;
    padding: clamp(18px, 2.3vh, 26px) 4px clamp(18px, 2.3vh, 26px) 0;
    border-top: 1px solid rgba(45,20,17,.16); color: var(--navy); }
  .zone-list li:last-child .zone { border-bottom: 1px solid rgba(45,20,17,.16); }
  /* active state shows via the title colour + arrow (underline removed per client) */
  .zone .n { grid-column: 1; grid-row: 1 / span 2; font-size: 12px; font-weight: 600; letter-spacing: .08em;
    color: var(--gold); align-self: center; transition: color .3s ease; }
  .zone .z-t { grid-column: 2; grid-row: 1; justify-self: start; font-size: clamp(18px, 1.55vw, 23px); font-weight: 500; line-height: 1.1;
    color: rgba(45,20,17,.62); transition: color .3s ease; }
  .zone .z-m { grid-column: 2; grid-row: 2; justify-self: start; text-align: left; font-size: 12.5px; font-weight: 400; letter-spacing: .02em; color: rgba(45,20,17,.46); margin-top: 3px; }
  .zone .z-x { grid-column: 3; grid-row: 1 / span 2; align-self: center; width: 16px; height: 16px; color: var(--gold);
    opacity: 0; transform: translateX(-6px); transition: opacity .35s ease, transform .35s var(--ease-reveal); }
  .zone:hover .z-t, .zone:focus-visible .z-t, .zone.is-active .z-t { color: var(--navy); }
  .zone.is-active .z-x { opacity: 1; transform: none; }
  .zone:focus-visible { outline: none; }

  /* --- center: the map (base render + transparent overlay) --- */
  .map { position: relative; align-self: center; overflow: visible; }
  /* scaled up a touch so the massing reads larger, like a backdrop — sides stay fully
     visible (object-fit:contain + overflow:visible = no cropping) */
  .map-frame { position: relative; width: 100%; aspect-ratio: 1 / 1;
    transform: scale(var(--map-scale, 1.16)); transform-origin: center center; }
  .map-base { position: absolute; inset: 0; width: 100%; height: 100%; display: block;
    object-fit: contain; -webkit-user-select: none; user-select: none; -webkit-user-drag: none; }
  /* scrim sits between base + overlay; fades in to calm the drawing when a zone is picked */
  .map-overlay { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
  /* spotlight: the scrim washes the whole render toward the paper; the active zone is
     cut out of the mask, so it keeps the render's ORIGINAL colour + opacity */
  .map-scrim { opacity: 0; transition: opacity .55s var(--ease-reveal); }
  .specs-stage.has-active .map-scrim { opacity: .66; }
  .mask-zones path { fill: #000; fill-opacity: 0; transition: fill-opacity .55s var(--ease-reveal); }
  .mask-zones g.is-active path { fill-opacity: 1; }
  .hits g { pointer-events: auto; cursor: pointer; }
  .hits path { fill: transparent; pointer-events: all; stroke: var(--gold); stroke-width: 0;
    stroke-linejoin: round; transition: stroke-width .45s var(--ease-reveal); }
  .hits g.is-active path { stroke-width: 2.4; }        /* golden outline on the active volume */
  .hits g.is-active { filter: drop-shadow(0 4px 18px rgba(176,141,76,.4)); }
  /* --- right: the detail panel (reveals smoothly) --- */
  .detail { position: relative; align-self: center; min-height: 360px; }
  .detail-stack { display: grid; }
  .detail-stack > * { grid-area: 1 / 1; }
  /* stacked panels crossfade SEQUENTIALLY — outgoing leaves before incoming enters,
     so two blocks of text never overlap and garble each other */
  .zone-detail, .detail-empty {
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: opacity .3s var(--ease-reveal), transform .3s var(--ease-reveal), visibility 0s .3s; }
  .zone-detail.is-active, .detail-empty.is-active {
    opacity: 1; visibility: visible; transform: none;
    transition: opacity .5s var(--ease-reveal) .26s, transform .55s var(--ease-reveal) .26s, visibility 0s 0s; }
  .detail-empty { align-self: center; }
  .detail-empty p { font-family: var(--serif); font-style: italic; font-weight: 500;
    font-size: clamp(22px, 2vw, 30px); line-height: 1.28; color: rgba(45,20,17,.52); max-width: 20ch; }
  .detail-empty .hint { display: block; margin-top: 18px; font-family: var(--sans); font-style: normal;
    font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(45,20,17,.4); }

  .zd-title { font-family: var(--serif); font-weight: 500; letter-spacing: -.006em;
    font-size: clamp(30px, 3.2vw, 46px); line-height: 1.03; }
  .zd-meta { margin-top: 10px; font-size: 12.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(45,20,17,.5); }
  .zd-desc { margin-top: 20px; font-size: clamp(14.5px, 1.05vw, 16.5px); line-height: 1.62; color: rgba(45,20,17,.82); max-width: 42ch; }
  .zd-specs { margin-top: clamp(22px, 3vh, 32px); }
  .zd-row { display: flex; justify-content: space-between; gap: 22px; padding: 12px 0; border-top: 1px solid rgba(45,20,17,.14); }
  .zd-row:last-child { border-bottom: 1px solid rgba(45,20,17,.14); }
  .zd-row dt { font-size: 11.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(45,20,17,.5); }
  .zd-row dd { font-size: clamp(13.5px, 1vw, 15px); color: var(--navy); text-align: right; }
  .zd-cta { display: inline-flex; align-items: center; gap: 14px; margin-top: clamp(24px, 3.4vh, 34px);
    font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--navy);
    background: none; border: none; padding: 0; cursor: pointer; }
  .zd-cta .ring { width: 42px; height: 42px; border: 1px solid rgba(45,20,17,.4); border-radius: 999px;
    display: grid; place-items: center; color: var(--navy);
    transition: background .35s var(--ease-reveal), border-color .35s ease, color .35s ease; }
  .zd-cta .ring svg { width: 14px; height: 14px; transition: transform .35s var(--ease-reveal); }
  .zd-cta:hover .ring, .zd-cta:focus-visible .ring { background: var(--navy); border-color: var(--navy); color: var(--paper); }
  .zd-cta:hover .ring svg, .zd-cta:focus-visible .ring svg { transform: translate(2px,-2px); }

  /* ============================================================
     §  INSIDE THE BUILDING  (amenities carousel)
     ============================================================ */
  .inside { position: relative; background: var(--spec-bg); color: var(--navy);
    padding: clamp(76px, 12vh, 148px) 0 clamp(64px, 10vh, 120px); overflow: hidden;
    border-top: 1px solid rgba(45,20,17,.1); }
  .inside-head { max-width: 1440px; margin: 0 auto; padding: 0 clamp(22px, 5vw, 84px);
    display: flex; align-items: flex-end; justify-content: space-between; gap: 30px 40px; flex-wrap: wrap; }
  .inside-lead { max-width: 640px; }
  .inside-title { font-family: var(--serif); font-weight: 500; letter-spacing: -.008em;
    font-size: clamp(38px, 5vw, 76px); line-height: .98; max-width: 12ch; }
  .inside-intro { margin-top: 18px; max-width: 48ch; font-size: clamp(14.5px, 1.05vw, 16.5px);
    line-height: 1.6; color: rgba(45,20,17,.72); }
  .inside-nav { display: flex; align-items: center; gap: 24px; padding-bottom: 4px; }
  .inside-count { font-size: 14px; letter-spacing: .04em; color: rgba(45,20,17,.5); white-space: nowrap; }
  .inside-count b { font-weight: 600; color: var(--navy); font-size: 19px; font-variant-numeric: tabular-nums; }
  .inside-count i { margin: 0 8px; font-style: normal; opacity: .45; }
  .inside-arrows { display: flex; gap: 10px; }
  .inside-arrows button { width: 50px; height: 50px; border-radius: 999px; border: 1px solid rgba(45,20,17,.28);
    background: none; cursor: pointer; display: grid; place-items: center; color: var(--navy);
    transition: background .35s var(--ease-reveal), border-color .35s ease, color .35s ease; }
  .inside-arrows button:hover, .inside-arrows button:focus-visible { background: var(--navy); border-color: var(--navy); color: var(--paper); outline: none; }
  .inside-arrows svg { width: 18px; height: 18px; }

  .inside-track { display: flex; gap: clamp(16px, 1.8vw, 30px); margin-top: clamp(32px, 5vh, 58px);
    padding: 4px clamp(22px, 5vw, 84px); overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-behavior: smooth;
    cursor: grab; overscroll-behavior-x: contain;
    /* align the first card with the section content (head/foot are max-width 1440 centred) */
    padding-left: calc(max(0px, (100% - 1440px) / 2) + clamp(22px, 5vw, 84px));
    scroll-padding-left: calc(max(0px, (100% - 1440px) / 2) + clamp(22px, 5vw, 84px)); }
  .inside-track::-webkit-scrollbar { display: none; }
  .am-card { flex: 0 0 clamp(256px, 32vw, 410px); scroll-snap-align: start; }
  .am-figure { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--navy); }
  .am-figure img { width: 100%; height: 100%; object-fit: cover; display: block;
    -webkit-user-drag: none; user-select: none; transition: transform .85s var(--ease-reveal); }
  .am-card:hover .am-figure img { transform: scale(1.045); }
  .am-meta { padding-top: 20px; display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-items: baseline; }
  .am-num { grid-row: 1 / span 2; align-self: start; padding-top: 5px; font-size: 12px; font-weight: 600;
    letter-spacing: .06em; color: var(--gold); font-variant-numeric: tabular-nums; }
  .am-name { font-family: var(--serif); font-weight: 500; font-size: clamp(21px, 1.7vw, 27px); line-height: 1.1; }
  .am-desc { grid-column: 2; margin-top: 9px; font-size: 13.5px; line-height: 1.52; color: rgba(45,20,17,.64); max-width: 32ch; }

  .inside-foot { max-width: 1440px; margin: clamp(30px, 4vh, 46px) auto 0; padding: 0 clamp(22px, 5vw, 84px); }
  .inside-progress { height: 2px; background: rgba(45,20,17,.14); position: relative; overflow: hidden; }
  .inside-progress-fill { position: absolute; inset: 0; background: var(--navy);
    transform: scaleX(.12); transform-origin: left center; transition: transform .18s linear; }
  @media (max-width: 620px) {
    .inside-nav { width: 100%; justify-content: space-between; }
    .am-card { flex-basis: 78vw; }
  }

  /* ============================================================
     §  THE RESIDENCES  (apartment selector — from homepage)
     ============================================================ */
  .residences { position: relative; background: var(--spec-bg); color: var(--navy);
    padding: clamp(40px, 6vh, 72px) clamp(22px, 5vw, 84px) clamp(72px, 11vh, 130px); overflow: hidden; }
    /* no rule here — the carousel's progress bar above already reads as the divider */
  .res-inner { max-width: 1440px; margin: 0 auto; }
  .res-head { margin-bottom: clamp(40px, 6vh, 72px); }
  .res-title { font-family: var(--serif); font-weight: 500; letter-spacing: -.008em; font-size: clamp(38px, 5vw, 76px); line-height: .98; }
  .res-intro { margin-top: 18px; max-width: 48ch; font-size: clamp(14.5px, 1.05vw, 16.5px); line-height: 1.6; color: rgba(45,20,17,.72); }
  .res-display { display: grid; grid-template-columns: 1.02fr .98fr; column-gap: clamp(40px, 6vw, 96px); align-items: center; }
  .res-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy); }
  .res-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
    opacity: 1; transition: opacity .5s var(--ease-reveal); }
  .res-image img.is-swap { opacity: 0; }
  .res-name { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2.2vw, 30px); line-height: 1.02; letter-spacing: -.008em; margin: 0; }
  .res-specs { margin: clamp(26px, 4vh, 40px) 0 0; }
  .res-row { display: flex; justify-content: space-between; gap: 24px; padding: 14px 0; border-top: 1px solid rgba(45,20,17,.14); }
  .res-row:last-child { border-bottom: 1px solid rgba(45,20,17,.14); }
  .res-row dt { font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(45,20,17,.55); margin: 0; }
  .res-row dd { font-size: clamp(14px, 1.05vw, 16px); color: var(--navy); margin: 0; text-align: right; }
  .res-act { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: clamp(28px, 4vh, 42px); }
  .res-price { font-size: 13px; letter-spacing: .04em; color: rgba(45,20,17,.6); }
  .res-price b { font-weight: 500; color: var(--navy); }
  .res-cta { display: inline-flex; align-items: center; gap: 14px; font-size: 12px; font-weight: 500;
    letter-spacing: .16em; text-transform: uppercase; color: var(--paper); background: var(--navy); border: none; border-radius: 999px;
    padding: 14px 26px; cursor: pointer; transition: background .35s var(--ease-reveal), color .35s var(--ease-reveal); }
  .res-cta:hover, .res-cta:focus-visible { background: var(--gold); color: var(--navy); }
  .res-cta svg { width: 13px; height: 13px; }
  .res-cols { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(56px, 9vh, 110px); }
  .res-col { position: relative; display: flex; flex-direction: column; gap: 7px; text-align: left;
    padding: clamp(22px, 3vh, 30px) clamp(14px, 1.6vw, 26px) 0; background: none; cursor: pointer; border: none;
    border-top: 1px solid rgba(45,20,17,.16); }
  .res-col + .res-col { border-left: 1px solid rgba(45,20,17,.08); }
  .res-col::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 2px; background: var(--navy);
    transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease-reveal); }
  .res-tab.is-on::before { transform: scaleX(1); }
  .res-col-title { font-size: clamp(17px, 1.5vw, 22px); font-weight: 500; color: var(--navy); transition: color .3s ease; }
  .res-col-sub { font-size: 12.5px; font-weight: 300; letter-spacing: .01em; color: rgba(45,20,17,.58); }
  .res-tab:not(.is-on) .res-col-title { color: rgba(45,20,17,.5); }
  .res-tab:hover .res-col-title { color: var(--navy); }
  .res-find::before { background: var(--gold); transform: scaleX(1); }
  .res-find .res-col-sub { color: var(--gold); }
  .res-find:hover .res-col-title { color: var(--gold); }
  @media (max-width: 860px) {
    .res-display { display: flex; flex-direction: column; gap: clamp(26px, 5vh, 40px); }
    .res-image { aspect-ratio: 4 / 3; width: 100%; }
    .res-name { font-size: clamp(22px, 6vw, 28px); }
    .res-cols { grid-template-columns: repeat(2, 1fr); margin-top: clamp(44px, 8vh, 70px); }
    .res-col { padding: 18px 14px 0; }
    .res-col:nth-child(odd) { border-left: none; }
    .res-col-title { font-size: clamp(16px, 4.6vw, 20px); }
  }

  /* reveal-on-load for the heading block */
  [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease-reveal), transform .9s var(--ease-reveal); }
  [data-reveal].in { opacity: 1; transform: none; }
  [data-reveal].d1 { transition-delay: .1s; } [data-reveal].d2 { transition-delay: .2s; } [data-reveal].d3 { transition-delay: .3s; }

  /* ---------------- The Circle — full-bleed podium render; copy top-left, the list + CTA bottom-right ---------------- */
  .circle { position: relative; width: 100%; min-height: clamp(640px, 96vh, 1000px);
    display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); grid-template-rows: auto 1fr auto;
    padding: clamp(104px, 15vh, 180px) clamp(22px, 5vw, 84px) clamp(64px, 9vh, 110px);
    column-gap: clamp(30px, 6vw, 90px); overflow: hidden; color: var(--paper); isolation: isolate; }
  .circle-bg { position: absolute; inset: 0; z-index: -1; margin: 0; overflow: hidden; }
  .circle-bg img { position: absolute; left: 0; top: -9%; width: 100%; height: 118%; object-fit: cover;
    display: block; will-change: transform; }
  /* the scrim runs on the same diagonal as the type — dark where the words are, open through the middle */
  .circle-bg::after { content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(76% 62% at 14% 24%, rgba(28,14,11,.7) 0%, rgba(28,14,11,.36) 46%, rgba(28,14,11,0) 78%),
      radial-gradient(90% 66% at 76% 84%, rgba(28,14,11,.7) 0%, rgba(28,14,11,.38) 48%, rgba(28,14,11,0) 80%),
      linear-gradient(180deg, rgba(28,14,11,.34) 0%, rgba(28,14,11,0) 18%); }

  .circle-copy { grid-column: 1; grid-row: 1; align-self: start; }
  .circle-side { grid-column: 2; grid-row: 3; align-self: end; justify-self: end; width: min(560px, 100%); }

  .circle-kicker { display: inline-flex; align-items: center; gap: 14px; font-size: 11.5px; font-weight: 500;
    letter-spacing: .26em; text-transform: uppercase; color: rgba(244,238,228,.7); }
  .circle-kicker::after { content: ''; width: clamp(26px,3.4vw,54px); height: 1px; background: rgba(244,238,228,.42); }
  .circle-title { font-family: var(--serif); font-weight: 500; letter-spacing: -.012em;
    font-size: clamp(38px, 5.2vw, 78px); line-height: 1; margin: clamp(16px,2.4vh,26px) 0 0; max-width: 13ch;
    text-shadow: 0 2px 30px rgba(28,14,11,.5); }
  .circle-lead { margin: clamp(18px,2.6vh,28px) 0 0; max-width: 50ch; font-size: clamp(14.5px, 1.08vw, 16.5px);
    line-height: 1.62; color: rgba(244,238,228,.88); text-shadow: 0 1px 14px rgba(28,14,11,.55); }

  .circle-list { list-style: none; margin: 0; padding: 0; }
  .circle-list li { display: flex; align-items: baseline; gap: 16px; padding: 12px 0;
    border-top: 1px solid rgba(244,238,228,.26); font-size: clamp(13.5px, 1.02vw, 15.5px); color: rgba(244,238,228,.96);
    text-shadow: 0 1px 14px rgba(28,14,11,.55); }
  .circle-list li:last-child { border-bottom: 1px solid rgba(244,238,228,.26); }
  .circle-list .n { flex: 0 0 auto; font-size: 11px; font-weight: 500; letter-spacing: .1em; color: #D6B266; min-width: 18px; }
  .circle-cta { display: inline-flex; align-items: center; gap: 14px; margin-top: clamp(22px,3.2vh,34px);
    font-family: var(--sans); font-size: 12.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
    color: var(--paper); background: none; border: none; padding: 0; cursor: pointer; }
  .circle-cta .ring { width: 44px; height: 44px; border: 1px solid rgba(244,238,228,.55); border-radius: 999px;
    display: grid; place-items: center; color: var(--paper);
    transition: background .35s var(--ease-reveal), border-color .35s ease, color .35s ease; }
  .circle-cta .ring svg { width: 15px; height: 15px; transition: transform .35s var(--ease-reveal); }
  .circle-cta:hover .ring, .circle-cta:focus-visible .ring { background: var(--paper); border-color: var(--paper); color: var(--navy); }
  .circle-cta:hover .ring svg { transform: translate(2px,-2px); }

  /* ---------------- closing band — the address at dusk, right above the footer ---------------- */
  .closing { position: relative; display: grid; align-items: end; justify-items: center; overflow: hidden;
    background: var(--navy); aspect-ratio: 2.4 / 1; min-height: clamp(420px, 62vh, 720px);
    padding: 0 clamp(22px, 5vw, 84px) clamp(52px, 9vh, 104px); color: var(--paper); text-align: center; }
  .closing-media { position: absolute; inset: 0; z-index: 0; margin: 0; overflow: hidden; }
  .closing-media img { position: absolute; left: 0; top: -9%; width: 100%; height: 118%; object-fit: cover;
    display: block; will-change: transform; }
  .closing-media::after { content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(28,14,11,.34) 0%, rgba(28,14,11,0) 24%,
                                        rgba(28,14,11,.42) 62%, rgba(28,14,11,.86) 100%); }
  .closing-copy { position: relative; z-index: 1; max-width: min(960px, 100%); }   /* wide enough for the line to hold */
  .closing-title { font-family: var(--serif); font-weight: 500; letter-spacing: -.01em;
    font-size: clamp(30px, 3.6vw, 54px); line-height: 1.04; margin: 0; text-wrap: balance;
    text-shadow: 0 2px 26px rgba(28,14,11,.55); }
  .closing-sub { margin: 14px auto 0; max-width: 44ch; font-size: clamp(14px, 1.05vw, 16px); line-height: 1.6;
    color: rgba(244,238,228,.84); text-shadow: 0 1px 14px rgba(28,14,11,.5); }
  .closing .circle-cta { margin-top: clamp(20px, 3vh, 32px); }
  .closing + .foot { margin-top: 0; }   /* the image runs straight into the black footer */

  /* ---------------- responsive ---------------- */
  @media (max-width: 1080px) {
    .specs-stage { grid-template-columns: 1fr; row-gap: clamp(26px, 5vh, 44px); }
    .zone-list { order: 2; align-self: stretch; }
    .map { order: 1; max-width: 640px; margin: 0 auto; width: 100%; }
    .map-frame { transform: none; }   /* no scale on mobile — keep sides within the viewport */
    .detail { order: 3; align-self: stretch; min-height: 0; }
    .detail-empty { display: none; }
    .zone-detail { position: static; }
    /* on tap-first devices, the detail lives under the list; keep the active one revealed */
  }
  @media (max-width: 940px) {
    .circle { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto auto;
      padding: clamp(80px,11vh,120px) 22px clamp(56px,8vh,80px); row-gap: clamp(34px,6vh,56px); }
    .circle-copy { grid-column: 1; grid-row: 1; }
    .circle-side { grid-column: 1; grid-row: 2; justify-self: stretch; width: 100%; }
    .circle-title { max-width: none; } .circle-lead { max-width: none; }
    .circle-bg::after { background:
      linear-gradient(180deg, rgba(28,14,11,.82) 0%, rgba(28,14,11,.5) 42%, rgba(28,14,11,.86) 100%); }
    .closing { aspect-ratio: 4 / 3; }
  }
  @media (max-width: 620px) {
    .zone .z-t { font-size: 19px; }
    .specs { padding-top: clamp(100px, 14vh, 132px); }
    .hdr-right .lang, .btn-find { display: none; }
    .logo-img { height: 46px; } header.is-stuck .logo-img { height: 36px; }
  }
  @media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    * { scroll-behavior: auto; }
  }


  /* ============================================================
     FOOTER — The Resolving Line (shared, verbatim)
     ============================================================ */
  .foot { position: relative; background: var(--black); color: var(--paper); overflow: hidden; margin-top: clamp(80px, 12vh, 150px);
    padding: clamp(72px,9vh,104px) 0 calc(clamp(40px,6vh,72px) + env(safe-area-inset-bottom)); }
  .foot[data-reveal] { opacity: 1; transform: none; transition: none; }
  .foot-inner { max-width: calc(1440px + 2 * clamp(20px, 3vw, 56px)); margin: 0 auto; padding: 0 clamp(20px, 3vw, 56px); }
  .foot-brand, .foot-grid, .foot-legal { opacity: 0; transform: translateY(24px);
    transition: opacity .8s var(--ease-reveal), transform .8s var(--ease-reveal); }
  .foot.in .foot-brand { opacity: 1; transform: none; transition-delay: 0.05s; }
  .foot.in .foot-grid  { opacity: 1; transform: none; transition-delay: 0.15s; }
  .foot.in .foot-legal { opacity: 1; transform: none; transition-delay: 0.25s; }
  .foot-brand { display: grid; grid-template-columns: auto 1fr; align-items: end; column-gap: clamp(24px,4vw,56px); }
  .foot-wordmark { width: clamp(120px,14vw,152px); height: auto; display: block; filter: brightness(0) invert(1); }
  .foot-lines { max-width: 46ch; }
  .foot-emotional { font-family: var(--sans); font-weight: 400; font-size: clamp(16px,1.5vw,19px); line-height: 1.35; color: rgba(244,238,228,.92); margin: 0; }
  .foot-positioning { font-family: var(--sans); font-weight: 300; font-size: clamp(14px,1.15vw,16px); line-height: 1.5; color: rgba(244,238,228,.6); margin: 6px 0 0; }
  .foot-grid { margin-top: clamp(48px,8vh,88px); display: grid; grid-template-columns: repeat(12,1fr); column-gap: clamp(20px,2.4vw,34px); row-gap: 40px; }
  .foot-col-cta { grid-column: span 4; }
  .foot-col-nav { grid-column: span 3; }
  .foot-col-contact { grid-column: span 5; }
  .foot-label { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(176,141,76,.92); margin: 0 0 16px; }
  .foot-cta { display: inline-block; font-family: var(--sans); font-weight: 400; font-size: clamp(26px,3vw,40px); line-height: 1.06; letter-spacing: -.01em;
    color: var(--paper); background: none; border: none; padding: 0; cursor: pointer; position: relative; text-align: left; }
  .foot-cta::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease-reveal); }
  .foot-cta:hover::after, .foot-cta:focus-visible::after { transform: scaleX(1); }
  .foot-cta-sub { font-family: var(--sans); font-weight: 300; font-size: 14px; line-height: 1.5; color: rgba(244,238,228,.6); margin: 18px 0 0; max-width: 34ch; }
  .foot-mail { display: inline-block; font-family: var(--sans); font-size: 14px; color: rgba(244,238,228,.85); background: none; border: none; padding: 0 0 2px; cursor: pointer; position: relative; text-align: left; transition: color .25s ease; }
  .foot-mail::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: transparent; transition: background .3s ease; }
  .foot-mail:hover, .foot-mail:focus-visible { color: var(--gold); }
  .foot-mail:hover::after, .foot-mail:focus-visible::after { background: var(--gold); }
  .foot-cta-mail { margin-top: 16px; font-size: 15px; }
  .foot-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .foot-list a, .foot-contact a { font-family: var(--sans); font-weight: 300; color: rgba(244,238,228,.85); text-decoration: none; position: relative; width: fit-content; transition: color .25s ease; }
  .foot-list a { font-size: 15px; }
  .foot-list a::after, .foot-contact a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-reveal); }
  .foot-list a:hover, .foot-list a:focus-visible, .foot-contact a:hover, .foot-contact a:focus-visible { color: var(--gold); }
  .foot-list a:hover::after, .foot-list a:focus-visible::after, .foot-contact a:hover::after, .foot-contact a:focus-visible::after { transform: scaleX(1); }
  .foot-contact { font-family: var(--sans); font-weight: 300; font-size: 15px; line-height: 1.55; color: rgba(244,238,228,.85); }
  .foot-contact .addr { margin: 0; }
  .foot-contact .indic { display: block; margin-top: 4px; font-size: 11.5px; letter-spacing: .06em; color: rgba(244,238,228,.5); }
  .foot-contact .row { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
  .foot-contact a.tel { font-variant-numeric: tabular-nums; }
  .foot-social { margin-top: 8px; display: flex; gap: 22px; }
  .foot-legal { margin-top: clamp(56px,9vh,96px); padding-top: 22px; border-top: 1px solid rgba(244,238,228,.12); display: flex; justify-content: space-between; align-items: center; gap: 20px 28px; flex-wrap: wrap; }
  .foot-legal-left { font-family: var(--sans); font-size: 12px; font-weight: 300; color: rgba(244,238,228,.55); display: flex; flex-wrap: wrap; align-items: center; }
  .foot-legal-left a { color: rgba(244,238,228,.55); text-decoration: none; transition: color .25s ease; }
  .foot-legal-left a:hover, .foot-legal-left a:focus-visible { color: rgba(244,238,228,.9); }
  .foot-legal-left .sep { margin: 0 10px; color: rgba(244,238,228,.3); }
  .foot-legal-right { display: flex; align-items: center; gap: 24px; }
  .foot-dev { font-family: var(--sans); font-size: 12px; font-weight: 300; color: rgba(244,238,228,.45); }
  .foot a:focus-visible, .foot button:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; border-radius: 1px; }
  @media (max-width: 900px) {
    .foot-brand { grid-template-columns: 1fr; align-items: start; row-gap: 18px; }
    .foot-grid { grid-template-columns: 1fr; row-gap: 34px; }
    .foot-col-cta, .foot-col-nav, .foot-col-contact { grid-column: 1 / -1; }
    .foot-cta { font-size: clamp(26px,7.5vw,34px); }
    .foot-legal { flex-direction: column; align-items: flex-start; gap: 16px; }
    .foot-legal-right { flex-direction: column; align-items: flex-start; gap: 14px; }
  }