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

    :root {
      --white:  #FFFFFF;
      --w80:    rgba(255,255,255,0.90);
      --w65:    rgba(255,255,255,0.78);
      --w50:    rgba(255,255,255,0.62);
      --w25:    rgba(255,255,255,0.38);
      --w10:    rgba(255,255,255,0.14);
      --dark:   #060608;
      /* Light section palette */
      --d100: #1c1c1e;
      --d65:  rgba(28,28,30,0.65);
      --d50:  rgba(28,28,30,0.50);
      --d48:  rgba(28,28,30,0.48);
      --d35:  rgba(28,28,30,0.35);
    }

    /* ── 12-COLUMN GRID SYSTEM ─────────────────── */
    .col-grid { display: grid; grid-template-columns: repeat(12, 1fr); }
    .col-5  { grid-column: span 5; }
    .col-6  { grid-column: span 6; }
    .col-7  { grid-column: span 7; }
    .col-3  { grid-column: span 3; }


    html { overflow-x: hidden; background: var(--dark); }
    body { min-height: 100%; overflow-x: hidden; background: var(--dark); }

    /* ── HERO ─────────────────────────────────── */
    .hero {
      position: relative;
      width: 100%;
      height: 100svh;
      min-height: 640px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    /* ── VIDEOS (A/B for crossfade) ──────────── */
    .hero-video {
      position: absolute;
      inset: 0; z-index: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      transition: opacity 0.7s ease;
    }
    .hero-video.hidden { opacity: 0; }

    /* ── OVERLAY ─────────────────────────────── */
    .overlay {
      position: absolute;
      inset: 0; z-index: 1;
      background:
        linear-gradient(to bottom,
          rgba(0,0,0,.50)  0%,
          rgba(0,0,0,.15) 22%,
          rgba(0,0,0,.35) 55%,
          rgba(0,0,0,.75) 100%
        );
    }

    /* ── NAV ─────────────────────────────────── */
    nav {
      position: relative;
      z-index: 10;
      display: grid;
      grid-template-columns: 1fr auto 1fr auto;
      align-items: center;
      padding: 38px 60px 38px 60px;
      animation: fadeDown .9s ease both;
    }

    .nav-logo {
      display: flex;
      flex-direction: column;
      gap: 3px;
      text-decoration: none;
    }
    .nav-logo-name {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: .83rem;
      letter-spacing: .28em;
      color: var(--white);
      text-transform: uppercase;
      line-height: 1;
    }
    .nav-logo-sub {
      font-family: 'Raleway', sans-serif;
      font-weight: 200;
      font-size: .61rem;
      letter-spacing: .42em;
      color: var(--w50);
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 42px;
      justify-content: center;
      animation: fadeDown .9s .06s ease both;
    }
    .nav-links a {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .79rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--w80);
      text-decoration: none;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--white); }

    .nav-cta {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .71rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--white);
      background: transparent;
      border: 1px solid var(--w25);
      padding: 9px 22px;
      text-decoration: none;
      cursor: pointer;
      justify-self: end;
      transition: border-color .25s, background .25s;
      animation: fadeDown .9s .12s ease both;
    }
    .nav-cta:hover {
      border-color: var(--w80);
      background: var(--w10);
    }
    .mobile-dot { display: inline-block; flex-shrink: 0; }
    .nav-phone-mobile {
      display: none;
      align-items: center;
      gap: 8px;
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: .75rem;
      letter-spacing: .08em;
      color: var(--white);
      text-decoration: none;
      border: 1px solid var(--w25);
      padding: 9px 18px;
      white-space: nowrap;
    }

    /* ── LANG DROPDOWN ───────────────────────── */
    .lang-dropdown {
      position: relative;
      justify-self: end;
    }
    .lang-btn {
      display: flex;
      align-items: center;
      gap: 7px;
      background: transparent;
      border: none;
      padding: 7px 12px;
      cursor: pointer;
    }
    .lang-btn-flag {
      width: 18px;
      height: 13px;
      border-radius: 2px;
      display: block;
      object-fit: cover;
    }
    .lang-btn-label {
      display: none;
    }
    .lang-arrow {
      font-size: .5rem;
      color: var(--w50);
      transition: transform .2s;
      line-height: 1;
    }
    .lang-dropdown.open .lang-arrow { transform: rotate(180deg); }
    .lang-menu {
      position: absolute;
      top: calc(100% + 6px);
      right: 0;
      background: rgba(10,10,14,0.95);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      min-width: 100%;
      display: none;
      flex-direction: column;
      z-index: 100;
    }
    .lang-dropdown.open .lang-menu { display: flex; }
    .lang-option {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 9px 14px;
      text-decoration: none;
      transition: background .15s;
    }
    .lang-option:hover { background: rgba(255,255,255,0.07); }
    .lang-option-flag {
      width: 18px;
      height: 13px;
      border-radius: 2px;
      display: block;
      object-fit: cover;
    }
    .lang-option-label {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .62rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--w80);
    }

    /* ── LANG SWITCHER ────────────────────── */
    .lang-switcher {
      position: relative;
      display: flex;
      align-items: center;
    }
    .lang-globe-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 6px;
    }
    .lang-globe-icon {
      width: 18px;
      height: 18px;
      color: var(--w50);
      transition: color .2s;
    }
    .lang-globe-btn:hover .lang-globe-icon { color: var(--white); }
    .lang-globe-label {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .62rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--w50);
      transition: color .2s;
    }
    .lang-globe-btn:hover .lang-globe-label { color: var(--white); }
    .lang-options {
      position: absolute;
      top: 100%;
      right: 0;
      display: flex;
      flex-direction: column;
      gap: 2px;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height .35s ease, opacity .25s ease;
      margin-top: 6px;
    }
    .lang-switcher.open .lang-options {
      max-height: 120px;
      opacity: 1;
    }
    .lang-option {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .6rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--w50);
      background: transparent;
      border: 1px solid transparent;
      padding: 4px 8px;
      cursor: pointer;
      transition: color .2s, border-color .2s;
      white-space: nowrap;
    }
    .lang-option:hover { color: var(--white); border-color: var(--w25); }
    .lang-option.active { color: var(--white); border-color: var(--w50); }

    /* ── Russian font override ────────────── */
    html[lang="ru"] .hero-eyebrow,
    html[lang="ru"] .hero-btn,
    html[lang="ru"] .nav-links a,
    html[lang="ru"] .nav-cta,
    html[lang="ru"] .amenities-sub,
    html[lang="ru"] .amenity-card-desc,
    html[lang="ru"] .fullphoto-sub,
    html[lang="ru"] .fullphoto-btn,
    html[lang="ru"] .pres-sub,
    html[lang="ru"] .pres-form-hint,
    html[lang="ru"] .pres-btn,
    html[lang="ru"] .res-sub,
    html[lang="ru"] .res-btn,
    html[lang="ru"] .dev-eyebrow,
    html[lang="ru"] .dev-text,
    html[lang="ru"] .dev-stat-label,
    html[lang="ru"] .dev-projects-label,
    html[lang="ru"] .dev-card-label,
    html[lang="ru"] .mtn-sub,
    html[lang="ru"] .mtn-btn,
    html[lang="ru"] .modal-desc,
    html[lang="ru"] .modal-submit,
    html[lang="ru"] .modal-privacy,
    html[lang="ru"] .lang-globe-label,
    html[lang="ru"] .at-italic {
      font-family: 'Forum', 'Raleway', sans-serif;
    }
    html[lang="ru"] .at-bold,
    html[lang="ru"] .amenity-card-title,
    html[lang="ru"] .fullphoto-title,
    html[lang="ru"] .pres-title,
    html[lang="ru"] .res-title,
    html[lang="ru"] .res-caption,
    html[lang="ru"] .mtn-title,
    html[lang="ru"] .modal-title,
    html[lang="ru"] .dev-title {
      font-family: 'Forum', 'Cinzel', serif;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 24px;
      justify-self: end;
      animation: fadeDown .9s .12s ease both;
    }
    .nav-right .nav-cta {
      animation: none;
      justify-self: unset;
    }
    .nav-phone-block {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 3px;
    }
    .nav-phone-number {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: .78rem;
      letter-spacing: .08em;
      color: var(--white);
      text-decoration: none;
      white-space: nowrap;
      transition: color .2s;
    }
    .nav-phone-number:hover { color: var(--w80); }
    .nav-online {
      display: flex;
      align-items: center;
      gap: 5px;
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .65rem;
      letter-spacing: .12em;
      color: var(--w80);
    }
    .nav-online-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #4ade80;
      box-shadow: 0 0 5px #4ade80;
      flex-shrink: 0;
    }

    /* ── CENTER CONTENT ──────────────────────── */
    .hero-center {
      position: absolute;
      inset: 0;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 24px;
    }

    .hero-eyebrow {
      font-family: 'Raleway', sans-serif;
      font-weight: 200;
      font-size: .66rem;
      letter-spacing: .45em;
      padding-left: .45em;
      text-transform: uppercase;
      color: var(--w80);
      margin-bottom: 28px;
      animation: fadeUp 1.1s .3s ease both;
    }

    .hero-title-main {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: clamp(3.2rem, 7.5vw, 7.5rem);
      line-height: 1;
      letter-spacing: .12em;
      padding-left: .12em;
      color: var(--white);
      text-transform: uppercase;
      animation: fadeUp 1.1s .45s ease both;
    }

    .hero-title-sub {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: clamp(1.1rem, 2.4vw, 2.4rem);
      letter-spacing: .55em;
      padding-left: .55em;
      color: var(--w50);
      text-transform: uppercase;
      margin-top: 10px;
      animation: fadeUp 1.1s .55s ease both;
    }

    .hero-rule {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, transparent, var(--w50), transparent);
      margin: 34px auto;
      animation: fadeUp 1.1s .65s ease both;
    }

    /* ── HERO CTA BUTTON ─────────────────────── */
    .hero-btn {
      font-family: 'Raleway', sans-serif;
      font-weight: 400;
      font-size: .75rem;
      letter-spacing: .3em;
      text-indent: .3em;
      text-transform: uppercase;
      color: var(--white);
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.45);
      padding: 16px 40px;
      text-decoration: none;
      cursor: pointer;
      transition: all .3s ease;
      animation: fadeUp 1.1s .75s ease both;
      box-shadow:
        0 0 28px rgba(255,255,255,0.08),
        inset 0 1px 0 rgba(255,255,255,0.15);
    }
    .hero-btn:hover {
      background: rgba(255,255,255,0.16);
      border-color: rgba(255,255,255,0.8);
      box-shadow:
        0 0 48px rgba(255,255,255,0.18),
        0 0 80px rgba(255,255,255,0.06),
        inset 0 1px 0 rgba(255,255,255,0.25);
      transform: translateY(-1px);
    }

    /* ── BOTTOM CORNERS ──────────────────────── */
    .corner-left {
      position: absolute;
      bottom: 46px; left: 60px;
      z-index: 5;
      animation: fadeUp 1.1s .9s ease both;
    }
    .corner-left span {
      font-family: 'Raleway', sans-serif;
      font-weight: 200;
      font-size: .61rem;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--w50);
      display: block;
      line-height: 2;
    }

    .corner-right {
      position: absolute;
      bottom: 46px; right: 60px;
      z-index: 5;
      text-align: right;
      animation: fadeUp 1.1s .9s ease both;
    }
    .corner-right span {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: .79rem;
      letter-spacing: .28em;
      color: var(--w80);
      display: block;
      line-height: 2;
      text-transform: uppercase;
    }

    /* ── KEYFRAMES ───────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ═══════════════════════════════════════════
       MODAL — REQUEST PRIVATE VIEWING
    ═══════════════════════════════════════════ */
    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 100;
      background: rgba(0,0,0,0);
      backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .35s ease, backdrop-filter .35s ease, background .35s ease;
    }
    .modal-backdrop.open {
      opacity: 1;
      pointer-events: all;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .modal {
      background: rgba(10,10,14,0.92);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 52px 48px;
      width: 100%;
      max-width: 420px;
      text-align: center;
      transform: translateY(20px);
      transition: transform .35s cubic-bezier(.16,1,.3,1);
      position: relative;
    }
    .modal-backdrop.open .modal {
      transform: translateY(0);
    }

    .modal-close {
      position: absolute;
      top: 18px; right: 22px;
      background: none; border: none;
      color: var(--w50);
      font-size: 1.2rem;
      cursor: pointer;
      line-height: 1;
      transition: color .2s;
    }
    .modal-close:hover { color: var(--white); }

    .modal-eyebrow {
      font-family: 'Raleway', sans-serif;
      font-weight: 200;
      font-size: .61rem;
      letter-spacing: .4em;
      text-transform: uppercase;
      color: var(--w50);
      margin-bottom: 16px;
    }

    .modal-title {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: 1.3rem;
      letter-spacing: .12em;
      color: var(--white);
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .modal-desc {
      font-family: 'Raleway', sans-serif;
      font-weight: 200;
      font-size: .83rem;
      letter-spacing: .1em;
      color: var(--w50);
      margin-bottom: 36px;
      line-height: 1.7;
    }

    .modal-input-wrap {
      position: relative;
      margin-bottom: 16px;
    }

    .modal-input {
      width: 100%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.18);
      color: var(--white);
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .88rem;
      letter-spacing: .08em;
      padding: 15px 18px;
      outline: none;
      transition: border-color .25s;
      text-align: center;
    }
    .modal-input::placeholder {
      color: var(--w25);
      letter-spacing: .15em;
      font-size: .77rem;
    }
    .modal-input:focus {
      border-color: rgba(255,255,255,0.5);
    }

    .modal-submit {
      width: 100%;
      font-family: 'Raleway', sans-serif;
      font-weight: 400;
      font-size: .79rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--dark);
      background: var(--white);
      border: none;
      padding: 16px;
      cursor: pointer;
      transition: background .25s, transform .2s;
      margin-top: 4px;
    }
    .modal-submit:hover {
      background: rgba(255,255,255,0.88);
      transform: translateY(-1px);
    }

    .modal-privacy {
      font-family: 'Raleway', sans-serif;
      font-weight: 200;
      font-size: .57rem;
      letter-spacing: .1em;
      color: var(--w25);
      margin-top: 20px;
    }
    /* Pricing modal — close button positioning */
    #pricingBackdrop .mtn-card { position: relative; }
    #pricingBackdrop .modal-close {
      position: absolute;
      top: 18px; right: 22px;
      background: none; border: none;
      font-size: 1.1rem;
      cursor: pointer;
      transition: color .2s;
    }
    #pricingBackdrop .modal-close:hover { color: #1c1c1e; }



    /* ── SECTION 3 — FULLSCREEN PHOTO ──────── */
    .section-fullphoto {
      width: 100%;
      height: 100svh;
      min-height: 560px;
      background: url('images/block2.jpeg') center center / cover no-repeat;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      align-items: center;
      padding-bottom: 18vh;
    }
    .fullphoto-bg { display: none; }
    /* right half: cols 7–12 */
    .fullphoto-content {
      grid-column: 7 / 13;
      padding: 0 80px 0 0;
    }
    .fullphoto-title {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: clamp(1.497rem, 2.46vw, 2.781rem);
      letter-spacing: .07em;
      line-height: 1.6;
      color: var(--white);
      text-transform: uppercase;
      margin-bottom: 28px;
      text-indent: 0;
      padding-left: 0;
    }
    .fullphoto-title strong {
      font-weight: 600;
    }
    @keyframes fpFadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fp-line {
      display: block;
      opacity: 0;
      transform: translateY(28px);
    }
    .fp-nowrap { white-space: nowrap; }
    .fp-mobile { display: none; }
    @media (max-width: 768px) {
      .fp-desktop { display: none; }
      .fp-mobile { display: block; }
    }
    .section-fullphoto.fp-visible .fp-line:nth-child(1) { animation: fpFadeUp .75s cubic-bezier(.22,.61,.36,1) .1s forwards; }
    .section-fullphoto.fp-visible .fp-line:nth-child(2) { animation: fpFadeUp .75s cubic-bezier(.22,.61,.36,1) .35s forwards; }
    .section-fullphoto.fp-visible .fp-line:nth-child(3) { animation: fpFadeUp .75s cubic-bezier(.22,.61,.36,1) .35s forwards; }
    .section-fullphoto.fp-visible .fp-line:nth-child(4) { animation: fpFadeUp .75s cubic-bezier(.22,.61,.36,1) .6s forwards; }
    .section-fullphoto.fp-visible .fullphoto-sub.fp-line  { animation: fpFadeUp .75s cubic-bezier(.22,.61,.36,1) .9s forwards; }
    .fullphoto-sub {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: clamp(0.913rem, 1.1vw, 1.034rem);
      letter-spacing: .07em;
      line-height: 1.9;
      color: rgba(255,255,255,0.82);
    }
    .fullphoto-btn {
      display: inline-block;
      margin-top: 32px;
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      font-size: .68rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: #1c1c1e;
      background: #ffffff;
      padding: 14px 28px;
      border-radius: 2px;
      text-decoration: none;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }
    .fullphoto-btn:hover { background: #f0f0f0; transform: translateY(-2px); }
    .section-fullphoto.fp-visible .fullphoto-btn.fp-line { animation: fpFadeUp .75s cubic-bezier(.22,.61,.36,1) 1.15s forwards; }
    @media (max-width: 768px) {
      .fullphoto-content { grid-column: 4 / 13; padding: 0 20px 0 0; }
      .fullphoto-title { font-size: 1.52rem; }
    }
    @media (max-width: 480px) {
      .fullphoto-content { grid-column: 2 / 13; }
    }

    /* ── SECTION 4 — FLOOR PLANS ────────────── */
    .section-plans {
      width: 100%;
      background-color: #e8f0f2;
      padding: 110px 0 120px;
    }
    .plans-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;
    }
    .plans-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .plans-eyebrow {
      display: block;
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .79rem;
      letter-spacing: .30em;
      text-transform: uppercase;
      color: var(--d50);
      margin-bottom: 16px;
    }
    .plans-h-title {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      letter-spacing: .06em;
      line-height: 1.2;
      color: var(--d100);
    }
    .plans-tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 72px;
    }
    .plans-tab {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .83rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(28,28,30,0.85);
      background: transparent;
      border: 1px solid rgba(28,28,30,0.25);
      margin-left: -1px;
      padding: 14px 28px;
      cursor: pointer;
      position: relative;
      transition: background .25s, color .25s, border-color .25s;
    }
    .plans-tab:first-child { margin-left: 0; }
    .plans-tab.active {
      background: #1c1c1e;
      color: #fff;
      border-color: #1c1c1e;
      z-index: 1;
    }
    .plans-tab:hover:not(.active) {
      color: rgba(28,28,30,0.8);
      border-color: rgba(28,28,30,0.4);
      background: rgba(28,28,30,0.05);
    }
    .plan-panel { display: none; }
    /* Plan panel: 6+6 cols = 12-col system expressed as 1fr 1fr */
    .plan-panel.active {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
      animation: planFadeIn .5s ease forwards;
    }
    @keyframes planFadeIn {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .plan-images { display: flex; flex-direction: column; gap: 16px; }
    .plan-img-wrap { display: flex; flex-direction: column; gap: 10px; }
    .plan-img-box {
      width: 100%;
      aspect-ratio: 1/1;
      border: 1px solid rgba(28,28,30,0.12);
      background: rgba(28,28,30,0.03);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .plan-img-box img { width: 100%; height: 100%; object-fit: contain; }
    .plan-img-box span {
      font-family: 'Raleway', sans-serif;
      font-size: .64rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(28,28,30,0.3);
    }
    .plan-images.duplex .plan-img-box { aspect-ratio: 1/1; }
    .plan-floor-label {
      font-family: 'Raleway', sans-serif;
      font-size: .64rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--d48);
      text-align: center;
    }
    .plan-info { display: flex; flex-direction: column; gap: 20px; }
    .plan-title {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: clamp(1.3rem, 1.8vw, 1.9rem);
      letter-spacing: .07em;
      color: var(--d100);
    }
    .plan-subtitle {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .92rem;
      letter-spacing: .05em;
      color: var(--d65);
      line-height: 1.8;
    }
    .plan-divider { width: 100%; height: 1px; background: rgba(28,28,30,0.1); }
    .plan-specs { width: 100%; border-collapse: collapse; }
    .plan-specs tr { border-bottom: 1px solid rgba(28,28,30,0.08); }
    .plan-specs td {
      padding: 13px 0;
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .79rem;
      letter-spacing: .07em;
      color: var(--d100);
    }
    .plan-specs td:last-child { text-align: right; color: var(--d100); font-weight: 600; }
    .plan-null { color: rgba(28,28,30,0.42) !important; }
    .plan-floors-info { display: flex; flex-direction: column; gap: 24px; }
    .plan-floor-heading {
      display: block;
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .64rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--d48);
      margin-bottom: 6px;
    }
    .plan-explore-btn {
      align-self: flex-start;
      margin-top: 8px;
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .79rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: #fff;
      background: #1c1c1e;
      border: none;
      padding: 14px 44px;
      cursor: pointer;
      transition: background .25s, transform .2s;
    }
    .plan-explore-btn:hover {
      background: rgba(28,28,30,0.82);
      transform: translateY(-1px);
    }

    /* ── SECTION 5 — VIDEO ──────────────────── */
    .section-video {
      position: relative;
      width: 100%;
      height: 100svh;
      overflow: hidden;
      background: #000;
    }
    .section-video video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .video-fade-overlay {
      position: absolute;
      inset: 0;
      background: #000;
      opacity: 0;
      pointer-events: none;
      z-index: 2;
      transition: opacity .4s ease;
    }

    /* ── SECTION 5 — LOCATION ───────────────── */
    .section-location {
      width: 100%;
      background-color: #e8f0f2;
      padding: 110px 0 120px;
    }
    .location-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;
      /* 5+7 = 12-col system expressed as 5fr 7fr */
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 120px;
      align-items: start;
    }
    .location-eyebrow {
      display: block;
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .79rem;
      letter-spacing: .30em;
      text-transform: uppercase;
      color: var(--d50);
      margin-bottom: 16px;
    }
    .location-title {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      letter-spacing: .06em;
      color: var(--d100);
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .location-desc {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .92rem;
      letter-spacing: .05em;
      line-height: 1.8;
      color: var(--d65);
      margin-bottom: 44px;
    }
    .location-pois {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .location-poi {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(28,28,30,0.08);
    }
    .location-poi:first-child { border-top: 1px solid rgba(28,28,30,0.08); }
    .location-poi-icon {
      width: 38px;
      height: 38px;
      background: rgba(28,28,30,0.055);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: rgba(28,28,30,0.45);
    }
    .location-poi-info {
      flex: 1;
    }
    .location-poi-name {
      font-family: 'Raleway', sans-serif;
      font-weight: 500;
      font-size: .88rem;
      letter-spacing: .04em;
      color: var(--d100);
    }
    .location-poi-sub {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .78rem;
      color: var(--d48);
      margin-top: 2px;
    }
    .location-poi-dist {
      font-family: 'Raleway', sans-serif;
      font-weight: 600;
      font-size: .83rem;
      letter-spacing: .04em;
      color: var(--d100);
    }
    .location-map {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,0,0,0.10);
      margin-top: 185px;
    }
    .location-map iframe {
      width: 100%;
      height: 100%;
      display: block;
      border: 0;
    }

    /* ── SECTION 6 — DEVELOPER ──────────────── */
    .section-developer {
      position: relative;
      width: 100%;
      min-height: 115svh;
      background: url('images/texture.jpg') center center / cover no-repeat;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .section-developer::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      background: rgba(6, 6, 8, 0.55);
      pointer-events: none;
    }
    .dev-wrap {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 110px 60px 120px;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 28px;
      align-items: stretch;
    }
    .dev-left {
      grid-column: 1 / 6;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .dev-logo {
      width: auto;
      height: auto;
      max-width: 368px;
      mix-blend-mode: lighten;
      margin-bottom: 28px;
      margin-top: -70px;
      margin-left: -20px;
      flex-shrink: 0;
    }
    .dev-eyebrow {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .72rem;
      letter-spacing: .32em;
      text-transform: uppercase;
      color: var(--w50);
      margin-bottom: 12px;
      margin-top: -60px;
    }
    .dev-title {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      letter-spacing: .06em;
      text-transform: uppercase;
      white-space: nowrap;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .dev-text {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .88rem;
      letter-spacing: .04em;
      color: var(--w65);
      line-height: 1.8;
      margin-bottom: 10px;
      max-width: 400px;
    }
    .dev-text:last-child { margin-bottom: 0; }
    .dev-right {
      grid-column: 7 / 13;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .dev-projects-label {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .72rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--w50);
      text-align: center;
    }
    .dev-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .dev-img-wrap {
      aspect-ratio: 4 / 3;
      position: relative;
    }
    .dev-card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 25%;
      background: rgba(0,0,0,0.52);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .dev-card-label {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.92);
      text-transform: uppercase;
    }
    .dev-img-link {
      display: block;
      border-radius: 8px;
      overflow: hidden;
    }
    .dev-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s cubic-bezier(.25,.46,.45,.94);
    }
    .dev-img-link:hover .dev-img-wrap img {
      transform: scale(1.06);
    }
    .dev-img-link:hover .dev-card-overlay {
      background: rgba(0,0,0,0.65);
    }
    .dev-stats {
      display: flex;
      gap: 48px;
      justify-content: center;
      border-bottom: 1px solid rgba(255,255,255,0.12);
      padding-bottom: 18px;
    }
    .dev-stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 6px;
    }
    .dev-stat-num {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: clamp(1.4rem, 2.2vw, 2.2rem);
      letter-spacing: .04em;
      color: var(--white);
      line-height: 1;
    }
    .dev-stat-label {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .72rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--w50);
      line-height: 1.5;
    }
    @media (max-width: 900px) {
      .section-developer { height: auto; min-height: 100svh; align-items: flex-start; }
      .dev-left { grid-column: 1 / 13; }
      .dev-right { grid-column: 1 / 13; }
      .dev-wrap { padding: 80px 32px 90px; }
    }
    @media (max-width: 600px) {
      .dev-wrap { padding: 64px 24px 72px; }
      .dev-stats { gap: 32px; }
      .dev-projects-label { text-align: left; }

      /* Last block — form mobile */
      .mtn-form {
        flex-direction: column;
        gap: 12px;
      }
      .mtn-form .pres-phone-wrap {
        width: 100%;
      }
      .mtn-btn {
        width: 100%;
      }
    }

    /* ── SECTION 7 — MOUNTAINS ───────────────── */
    .section-mountains {
      position: relative;
      width: 100%;
      min-height: 100svh;
      background: url('images/bg.jpg') center center / cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .mtn-card {
      position: relative;
      z-index: 1;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      padding: 94px 72px;
      max-width: 792px;
      width: 90%;
      text-align: center;
    }
    .mtn-title {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: clamp(1.497rem, 2.46vw, 2.781rem);
      letter-spacing: .06em;
      text-transform: uppercase;
      color: #1c1c1e;
      line-height: 1.5;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(20px);
    }
    .mtn-card.mtn-visible .mtn-title {
      animation: mtnFormUp .7s cubic-bezier(.22,.61,.36,1) .1s forwards;
    }
    .mtn-sub {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .92rem;
      letter-spacing: .04em;
      color: rgba(28,28,30,0.65);
      line-height: 1.8;
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(20px);
    }
    .mtn-card.mtn-visible .mtn-sub {
      animation: mtnFormUp .7s cubic-bezier(.22,.61,.36,1) .25s forwards;
    }
    .mtn-form {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(24px);
    }
    .mtn-form .consent-label {
      width: 100%;
    }
    .mtn-card.mtn-visible .mtn-form {
      animation: mtnFormUp .7s cubic-bezier(.22,.61,.36,1) .4s forwards;
    }
    @keyframes mtnFormUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes mtnCardIn {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .mtn-card {
      opacity: 0;
      transform: translateY(40px);
    }
    .mtn-card.mtn-visible {
      animation: mtnCardIn .85s cubic-bezier(.22,.61,.36,1) forwards;
    }
    .mtn-btn {
      font-family: 'Raleway', sans-serif;
      font-weight: 400;
      font-size: .72rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--white);
      background: #1c1c1e;
      border: none;
      padding: 14px 28px;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
      transition: background .25s;
    }
    .mtn-btn:hover { background: rgba(20,20,22,0.82); }
    .mtn-form .pres-phone-wrap {
      background: rgba(20,20,22,0.06);
      border: 1px solid rgba(20,20,22,0.18);
    }
    .mtn-form .pres-phone { color: #1c1c1e; }
    .mtn-form .pres-phone::placeholder { color: rgba(0,0,0,0.35); }
    .mtn-form .pres-flag { color: #1c1c1e; }

    /* ── SECTION 2 — GRAPHITE ────────────────── */
    .section-graphite {
      position: relative;
      width: 100%;
      min-height: 100svh;
      background-color: #e8f0f2;
      overflow: hidden;
    }

    /* Coarse concrete noise layer */
    .section-graphite::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      background-size: 220px 220px;
      opacity: 0.14;
      pointer-events: none;
    }

    /* Fine grain layer */
    .section-graphite::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
      background-size: 100px 100px;
      opacity: 0.09;
      pointer-events: none;
      mix-blend-mode: soft-light;
    }

    .section-graphite .graphite-vignette,
    .section-graphite .graphite-overlay {
      display: none;
    }

    /* ── SECTION 4 — FULLPHOTO BLOCK4 ───────── */
    /* ── SECTION 4 — PRESENTATION ────────────── */
    .section-pres {
      position: relative;
      width: 100%;
      background: #e8f0f2;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      overflow: hidden;
    }
    .pres-overlay { display: none; }
    .pres-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 90px 60px 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Header */
    .pres-header { text-align: center; }
    .pres-title {
      margin-bottom: 20px;
      line-height: 1.15;
    }
    .pres-line {
      display: block;
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--d100);
      opacity: 0;
      transform: translateY(24px);
    }
    .pres-line strong { font-weight: 400; }
    .pres-sub {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: 1.012rem;
      letter-spacing: .05em;
      color: var(--d100);
      line-height: 1.8;
      max-width: 620px;
      margin: 0 auto;
      opacity: 0;
      transform: translateY(24px);
    }

    /* Form bar animation */
    .pres-form {
      opacity: 0;
      transform: translateY(40px);
    }

    /* Animate in when visible */
    @keyframes presFadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes presFormUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .section-pres.pres-visible .pres-line:nth-child(1) { animation: presFadeUp .7s cubic-bezier(.22,.61,.36,1) .1s forwards; }
    .section-pres.pres-visible .pres-line:nth-child(2) { animation: presFadeUp .7s cubic-bezier(.22,.61,.36,1) .3s forwards; }
    .section-pres.pres-visible .pres-sub                { animation: presFadeUp .7s cubic-bezier(.22,.61,.36,1) .55s forwards; }
    .section-pres.pres-visible .pres-form               { animation: presFormUp .8s cubic-bezier(.22,.61,.36,1) .85s forwards; }
    .section-pres.pres-visible .pres-mockup             { animation: presFadeUp .7s cubic-bezier(.22,.61,.36,1) 1.3s forwards; }

    /* Bottom zone: mockup + card */
    .pres-bottom {
      position: relative;
      width: 100%;
      z-index: 1;
    }

    /* Mockup — no longer used standalone */

    /* Lead card — compact single row */
    .pres-card {
      width: 100%;
      background: #1c1c1e;
      display: flex;
      align-items: center;
      padding: 22px 48px;
      gap: 32px;
    }
    .pres-card-hint {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .78rem;
      letter-spacing: .04em;
      color: rgba(255,255,255,0.45);
      line-height: 1.6;
      white-space: nowrap;
      flex-shrink: 0;
      max-width: 200px;
      white-space: normal;
    }
    .pres-form {
      display: flex;
      align-items: center;
      gap: 20px;
      flex: 1;
    }
    .pres-phone-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 12px 16px;
      flex: 1;
    }
    .pres-flag { display: flex; align-items: center; flex-shrink: 0; color: var(--w50); }
    .pres-flag-icon { width: 20px; height: 20px; display: block; }
    .pres-code {
      font-family: 'Raleway', sans-serif;
      font-weight: 500;
      font-size: .92rem;
      color: var(--white);
      flex-shrink: 0;
      letter-spacing: .03em;
    }
    .pres-phone {
      background: transparent;
      border: none;
      outline: none;
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .92rem;
      letter-spacing: .04em;
      color: var(--white);
      width: 100%;
    }
    .pres-phone::placeholder { color: rgba(255,255,255,0.35); }
    @keyframes presShimmer {
      0%   { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    .pres-btn {
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      font-size: .72rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #1c1c1e;
      background: linear-gradient(105deg, #fff 0%, #fff 38%, #d4d4d4 50%, #fff 62%, #fff 100%);
      background-size: 200% auto;
      border: none;
      padding: 14px 30px;
      border-radius: 3px;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
      box-shadow: 0 2px 14px rgba(0,0,0,0.22);
      animation: presShimmer 5s linear infinite;
      transition: box-shadow .2s ease, transform .2s ease;
    }
    .pres-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,0.32); }

    /* Photo + form zone */
    .pres-bottom-zone {
      position: relative;
      width: 100%;
    }
    .pres-photo-img {
      width: 100%;
      display: block;
      height: auto;
    }

    /* Form bar overlaid on bottom of photo */
    .pres-form-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      padding: 0 24px 0;
    }
    .pres-form-wrap {
      position: relative;
      width: 100%;
      max-width: 772px;
    }
    .pres-mockup {
      position: absolute;
      right: 30px;
      bottom: 50%;
      width: 328px;
      pointer-events: none;
      z-index: 2;
      opacity: 0;
      transform: translateY(30px);
    }
    .pres-form {
      position: relative;
      width: 100%;
      background: rgba(20, 20, 22, 0.80);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      padding: 73px 62px 57px;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 39px;
    }
    .pres-form-hint {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: 1.111rem;
      letter-spacing: .04em;
      color: rgba(255,255,255,0.80);
      line-height: 1.7;
      text-align: left;
    }
    .pres-form-row {
      display: flex;
      align-items: center;
      gap: 26px;
    }
    .pres-phone-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 14px 18px;
      flex: 1;
    }
    .pres-flag { display: flex; align-items: center; flex-shrink: 0; }
    .pres-flag-img { width: 24px; height: 17px; border-radius: 3px; display: block; }
    .pres-code {
      font-family: 'Raleway', sans-serif;
      font-weight: 500;
      font-size: 1.05rem;
      color: var(--white);
      flex-shrink: 0;
      letter-spacing: .03em;
    }
    .pres-phone {
      background: transparent;
      border: none;
      outline: none;
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: 1.05rem;
      letter-spacing: .04em;
      color: var(--white);
      width: 100%;
    }
    .pres-phone::placeholder { color: rgba(255,255,255,0.35); }
    .pres-btn {
      font-family: 'Raleway', sans-serif;
      font-weight: 800;
      font-size: .94rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: #1c1c1e;
      background: linear-gradient(105deg, #fff 0%, #fff 38%, #d4d4d4 50%, #fff 62%, #fff 100%);
      background-size: 200% auto;
      border: none;
      padding: 21px 49px;
      border-radius: 2px;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
      box-shadow: 0 4px 20px rgba(0,0,0,0.25);
      animation: presShimmer 5s linear infinite;
      transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease;
    }
    .pres-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.35);
    }
    .pres-btn:active { transform: translateY(0); }

    /* Responsive */
    @media (max-width: 900px) {
      .pres-form-bar { padding: 0 32px; }
      .pres-mockup { width: 234px; right: 20px; }
    }
    @media (max-width: 600px) {
      .pres-inner { padding: 80px 24px 0; }
      .pres-form-bar { padding: 0 20px; }
      .pres-mockup { width: 175px; right: 16px; bottom: 55%; }
      .pres-form { flex-direction: column; align-items: stretch; gap: 20px; }
      .pres-btn { text-align: center; }
    }

    /* ── SECTION 5 — RESIDENCES ─────────────── */
    .section-residences {
      position: relative;
      width: 100%;
      min-height: 100svh;
      background-color: #e8f0f2;
      overflow: hidden;
    }
    .section-residences::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      background-size: 220px 220px;
      opacity: 0.14;
      pointer-events: none;
    }
    .section-residences::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
      background-size: 100px 100px;
      opacity: 0.09;
      pointer-events: none;
      mix-blend-mode: soft-light;
    }
    .res-wrap {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 140px 60px 160px;
    }
    .res-header {
      width: 100%;
      margin-bottom: 56px;
      text-align: center;
    }
    .res-title {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      line-height: 1.2;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--d100);
      margin-bottom: 28px;
    }
    .res-title-line {
      display: block;
      white-space: nowrap;
    }
    .res-title strong { font-weight: 600; }
    .res-sub {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: 1.1rem;
      letter-spacing: .03em;
      line-height: 1.75;
      color: var(--d100);
    }
    .res-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .res-card {
      display: flex;
      flex-direction: column;
    }
    .res-photo {
      width: 100%;
      aspect-ratio: 4 / 3;
      background: rgba(28,28,30,0.10);
      border-radius: 10px;
      flex-shrink: 0;
      overflow: hidden;
    }
    .res-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .res-caption {
      font-family: 'Raleway', sans-serif;
      font-weight: 500;
      font-size: .88rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--d100);
      margin-top: 28px;
      margin-bottom: 20px;
      text-align: center;
    }
    .res-btn {
      width: 100%;
      align-self: center;
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      font-size: .8rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #e8f0f2;
      background: var(--d100);
      border: none;
      padding: 20px 24px;
      border-radius: 4px;
      cursor: pointer;
      transition: opacity .2s;
    }
    .res-btn:hover { opacity: .82; }
    @media (max-width: 900px) {
      .res-grid { grid-template-columns: 1fr; }
      .res-wrap { padding: 72px 32px 80px; }
    }
    @media (max-width: 600px) {
      .res-wrap { padding: 60px 24px 72px; }
      .res-header { margin-bottom: 48px; }
      .res-grid { gap: 32px; }
    }

    /* ── SECTION 5 — QUIZ START ──────────────── */
    .section-block4 {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    /* ── QUIZ WIDGET ─────────────────────────── */
    .quiz-widget {
      position: relative;
      width: 100%;
      min-height: 100svh;
      display: flex;
      background: url('images/quiz.jpeg') center center / cover no-repeat;
      overflow: hidden;
    }
    .quiz-widget::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        transparent 0%,
        rgba(6,6,8,0.10) 40%,
        rgba(6,6,8,0.72) 55%,
        rgba(6,6,8,0.80) 65%,
        rgba(6,6,8,0.80) 100%
      );
      pointer-events: none;
    }

    /* Left: spacer so photo is visible */
    .quiz-photo {
      flex: 1;
    }

    /* Right: text over gradient */
    .quiz-start-panel {
      position: relative;
      z-index: 1;
      width: 46%;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 52px 48px;
      background: transparent;
    }

    .quiz-eyebrow {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .68rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: rgba(28,28,30,0.5);
      margin-bottom: 22px;
    }

    .quiz-title {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: clamp(1.2rem, 1.6vw, 1.65rem);
      line-height: 1.32;
      letter-spacing: .02em;
      color: var(--d100);
      margin-bottom: 20px;
    }

    .quiz-subtitle {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-style: italic;
      font-size: .92rem;
      line-height: 1.7;
      color: rgba(28,28,30,0.6);
      margin-bottom: 40px;
    }

    .quiz-cta {
      display: inline-block;
      align-self: flex-start;
      font-family: 'Raleway', sans-serif;
      font-weight: 400;
      font-size: .72rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--d100);
      background: rgba(28,28,30,0.08);
      border: 1px solid rgba(28,28,30,0.38);
      padding: 16px 36px;
      cursor: pointer;
      text-decoration: none;
      transition: all .3s ease;
    }
    .quiz-cta:hover {
      background: rgba(28,28,30,0.16);
      border-color: rgba(28,28,30,0.72);
      transform: translateY(-1px);
    }

    /* ── SECTION 4 MOBILE ────────────────────── */
    @media (max-width: 768px) {
      .quiz-wrap { padding: 0 24px; }
      .quiz-widget { flex-direction: column; }
      .quiz-photo { min-height: 220px; }
      .quiz-start-panel { width: 100%; padding: 40px 28px; }
    }

    /* ── AMENITIES CONTENT ───────────────────── */
    .amenities-wrap {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 110px 34px 120px 60px;
    }

    .amenities-head {
      text-align: center;
      margin-bottom: 80px;
    }

    .amenities-title {
      margin-bottom: 28px;
      line-height: 1.2;
    }

    .at-italic {
      display: block;
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .79rem;
      letter-spacing: .30em;
      text-transform: uppercase;
      color: var(--d50);
    }

    .at-bold {
      display: block;
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--d100);
      line-height: 1.2;
      margin-top: 12px;
    }

    .amenities-sub {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: 1.012rem;
      letter-spacing: .05em;
      color: var(--d100);
      line-height: 1.8;
    }

    /* Cards grid — 12-col: each card spans 3 columns (4×3=12) */
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      overflow: visible;
    }
    .amenity-card { grid-column: span 1; }

    .amenity-card {
      overflow: visible;
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .amenity-card.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Image placeholder */
    .amenity-img {
      width: 115%;
      aspect-ratio: 4/5;
      margin-bottom: 34px;
      border-radius: 0;
      clip-path: url(#trapCard);
      background:
        linear-gradient(160deg, #c5d5db 0%, #b2c4cd 60%, #a4b8c2 100%);
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .amenity-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.14) 100%);
    }

    .amenity-img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .amenity-img-label {
      font-family: 'Raleway', sans-serif;
      font-weight: 200;
      font-size: 0.52rem;
      letter-spacing: 0.45em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      position: relative;
      z-index: 1;
    }

    .amenity-card-title {
      font-family: 'Cinzel', serif;
      font-weight: 400;
      font-size: 1.21rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--d100);
      margin-bottom: 10px;
    }

    .amenity-card-desc {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .978rem;
      letter-spacing: .05em;
      color: var(--d100);
      line-height: 1.65;
    }

    /* ── MOBILE ───────────────────────────────── */
    @media (max-width: 768px) {
      /* ── Uniform section sizing on mobile ── */
      .hero {
        height: 120svh;
      }
      .hero-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
      }
      .section-graphite,
      .section-fullphoto,
      .section-pres,
      .section-residences,
      .section-developer,
      .section-mountains {
        height: auto;
        min-height: 120svh;
      }

      .at-bold { font-size: 1.6rem; }
      .section-mountains { background-size: cover; background-position: center 38%; }
      .section-video video { object-position: right center; }
      .location-wrap { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
      .location-map { min-height: 280px; margin-top: 0; }
      .location-map { min-height: 280px; }
      .location-map iframe { min-height: 280px; }
      .section-location { padding: 72px 0 80px; }
      .plans-wrap { padding: 0 24px; }
      .plan-panel.active { grid-template-columns: 1fr; gap: 40px; }
      .plans-tabs { flex-wrap: wrap; gap: 8px; }
      .plans-tab { margin-left: 0; flex: 1; min-width: 120px; text-align: center; }

      /* Nav mobile */
      nav { padding: 26px 24px; grid-template-columns: 1fr 1fr auto; }
      .nav-links { display: none; }
      .nav-phone-block { display: none; }
      .nav-cta { display: none; }
      .nav-phone-mobile { display: flex; order: 2; }
      .nav-right { justify-self: end; display: flex; align-items: center; gap: 12px; }
      .lang-dropdown { justify-self: end; }
      .lang-switcher { position: relative; top: auto; right: auto; z-index: 11; order: 1; }
      .nav-logo-name { font-size: .72rem; letter-spacing: .22em; }
      .nav-logo-sub { font-size: .52rem; }
      .corner-left, .corner-right { display: none; }
      .hero-rule { height: 32px; margin: 24px auto; }

      /* Fix 2 — hero sizing */
      .hero { height: 100svh; }
      .hero-eyebrow { max-width: 260px; margin-left: auto; margin-right: auto; }
      .modal { padding: 44px 28px; }

      /* Block 3 — fullphoto */
      .section-fullphoto {
        min-height: 100svh;
        background-position: 75% center;
        background-attachment: scroll;
      }
      .fullphoto-content { grid-column: 1 / 13; padding: 0 24px; }
      .fullphoto-title { font-size: clamp(1.15rem, 5.5vw, 1.52rem); }
      .fp-nowrap { white-space: normal; }
      .fullphoto-sub { font-size: clamp(0.78rem, 2.8vw, 0.92rem); }

      /* Block 4 — Presentation mobile layout */
      .section-pres {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
      }
      .pres-photo-img { display: none; }
      .section-pres::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('images/block4m.jpg') center center / cover no-repeat;
        z-index: 0;
      }
      .pres-inner {
        position: relative;
        z-index: 1;
        padding: 60px 24px 0;
      }
      .pres-bottom-zone {
        position: relative;
        z-index: 1;
        margin-top: auto;
        padding-bottom: 0;
      }
      .pres-form-bar {
        position: relative;
        padding: 0 20px;
      }
      .pres-form-wrap {
        max-width: 100%;
      }
      .pres-mockup {
        width: 117px;
        right: 4px;
        bottom: auto;
        top: 20px;
      }
      .pres-form {
        padding: 32px 24px 28px;
      }
      .pres-form-hint {
        font-size: .85rem;
      }
      .pres-form-row {
        flex-direction: column;
        gap: 12px;
      }
      .pres-phone-wrap {
        width: 100%;
      }
      .pres-btn {
        width: 100%;
        text-align: center;
      }

      /* Block 5 — title wrap on mobile */
      .res-title-line { white-space: normal; }
      .desktop-only { display: none; }

      /* Block 6 — developer card labels fit one line */
      .dev-card-label { font-size: clamp(0.55rem, 2.2vw, 0.78rem); }

      .section-graphite { overflow: visible; min-height: unset; }
      .section-graphite::before, .section-graphite::after { height: 100%; }
      .graphite-vignette, .graphite-overlay { height: 100%; }
      .amenities-wrap { padding: 72px 24px 80px; }
      .amenities-grid { gap: 18px; }
      .amenities-grid { grid-template-columns: repeat(2, 1fr); }
      .amenity-card { grid-column: span 1; }
      .amenity-img { width: 100% !important; margin-bottom: 20px; clip-path: none !important; border-radius: 18px; }
      .amenity-card-title { font-size: 1rem; }
      .amenity-card-desc { font-size: 0.72rem; }

      /* Last block — card padding */
      .mtn-card { padding: 94px 40px; }
    }
    @media (max-width: 480px) {
      .amenities-grid { gap: 12px; }
      .amenities-wrap { padding: 56px 16px 64px; }
      .amenity-img { width: 100% !important; margin-bottom: 16px; clip-path: none !important; border-radius: 16px; }
      .amenity-card-title { font-size: 0.9rem; }
      .amenity-card-desc { font-size: 0.68rem; }
    }

    /* ── SITE FOOTER ─────────────────────────── */
    .site-footer {
      width: 100%;
      padding: 20px 0;
      background: #1c1c1e;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .footer-privacy-link {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .72rem;
      letter-spacing: .08em;
      color: rgba(255,255,255,0.35);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-privacy-link:hover { color: rgba(255,255,255,0.6); }

    /* ── CONSENT CHECKBOX ─────────────────────── */
    .consent-label {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-top: 14px;
      cursor: pointer;
      justify-content: center;
    }
    .consent-checkbox {
      appearance: none;
      -webkit-appearance: none;
      width: 16px;
      height: 16px;
      min-width: 16px;
      border: 1.5px solid rgba(28,28,30,0.35);
      border-radius: 3px;
      cursor: pointer;
      margin-top: 2px;
      position: relative;
      transition: border-color .2s, background .2s;
    }
    .consent-checkbox:checked {
      background: #1c1c1e;
      border-color: #1c1c1e;
    }
    .consent-checkbox:checked::after {
      content: '';
      position: absolute;
      left: 4px; top: 1px;
      width: 5px; height: 9px;
      border: solid #fff;
      border-width: 0 1.5px 1.5px 0;
      transform: rotate(45deg);
    }
    .consent-text {
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: .68rem;
      letter-spacing: .03em;
      color: rgba(28,28,30,0.5);
      line-height: 1.5;
      text-align: left;
      transition: color .2s;
    }
    .consent-link {
      color: inherit;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
      transition: opacity .2s;
    }
    .consent-link:hover { opacity: 0.7; }
    .consent-label.invalid .consent-checkbox {
      border-color: #c0392b;
    }
    .consent-label.invalid .consent-text {
      color: #c0392b;
    }

    /* Modal variant (light text) */
    .consent-label-modal .consent-checkbox {
      border-color: rgba(255,255,255,0.35);
    }
    .consent-label-modal .consent-checkbox:checked {
      background: #fff;
      border-color: #fff;
    }
    .consent-label-modal .consent-checkbox:checked::after {
      border-color: #1c1c1e;
    }
    .consent-label-modal .consent-text {
      color: rgba(255,255,255,0.45);
    }
    .consent-label-modal.invalid .consent-checkbox {
      border-color: #e74c3c;
    }
    .consent-label-modal.invalid .consent-text {
      color: #e74c3c;
    }

    /* Pres-form consent (dark bg variant) */
    .pres-form .consent-label .consent-checkbox {
      border-color: rgba(255,255,255,0.3);
    }
    .pres-form .consent-label .consent-checkbox:checked {
      background: #fff;
      border-color: #fff;
    }
    .pres-form .consent-label .consent-checkbox:checked::after {
      border-color: #1c1c1e;
    }
    .pres-form .consent-label .consent-text {
      color: rgba(255,255,255,0.45);
    }
    .pres-form .consent-label.invalid .consent-checkbox {
      border-color: #e74c3c;
    }
    .pres-form .consent-label.invalid .consent-text {
      color: #e74c3c;
    }
    .pres-form .consent-label {
      justify-content: flex-start;
    }
