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

    :root {
      --ivory:    #F5F0E6;
      --ivory-mid:#EDE7D9;
      --slate:    #28333F;
      --slate-mid:#3D4E5C;
      --sage:     #6E8C6F;
      --sage-light:#A8BFA0;
      --sand:     #C2A06E;
      --sand-light:#D9C09A;
      --text:     #2E2820;
      --text-mid: #5C5248;
      --white:    #FDFAF5;

      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans:  'Figtree', system-ui, sans-serif;

      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      background: var(--ivory);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAV ───────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 48px;
      transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out);
    }
    nav.scrolled {
      background: rgba(245,240,230,0.96);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      padding: 14px 48px;
      border-bottom: 1px solid rgba(194,160,110,0.2);
    }

    .nav-logo {
      font-family: var(--serif);
      font-size: 1.15rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--white);
      text-decoration: none;
      transition: color 0.3s;
      line-height: 1.2;
    }
    .nav-logo span { display: block; font-size: 0.6rem; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.75; font-family: var(--sans); }
    nav.scrolled .nav-logo { color: var(--slate); }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
      align-items: center;
    }
    .nav-links a {
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      transition: color 0.3s;
    }
    nav.scrolled .nav-links a { color: var(--text-mid); }
    .nav-links a:hover, nav.scrolled .nav-links a:hover { color: var(--sand); }

    .nav-cta {
      padding: 9px 22px;
      border: 1px solid rgba(255,255,255,0.55);
      border-radius: 2px;
      color: var(--white) !important;
      background: transparent;
      transition: background 0.3s, border-color 0.3s, color 0.3s !important;
    }
    nav.scrolled .nav-cta {
      border-color: var(--sand);
      color: var(--sand) !important;
    }
    .nav-cta:hover { background: var(--sand) !important; border-color: var(--sand) !important; color: var(--white) !important; }

    /* ── NAV BURGER (mobile) ────────────────────────── */
    .nav-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 110;
    }
    .nav-burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: transform 0.3s var(--ease-out), opacity 0.3s;
    }
    nav.scrolled .nav-burger span { background: var(--slate); }
    .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── HERO ─────────────────────────────────────────── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 640px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      background:
        linear-gradient(175deg, rgba(40,51,63,0.15) 0%, rgba(40,51,63,0.65) 100%),
        linear-gradient(135deg, #8BA89B 0%, #6E8C6F 18%, #4A6553 35%, #2D4A3E 52%, #1A3028 68%, #0D1F1A 85%, #060E0C 100%);
    }

    /* Layered mountain silhouettes */
    .hero-mountains {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 55%;
      overflow: hidden;
    }
    .hero-mountains svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    /* Snow texture overlay */
    .hero-grain {
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
      opacity: 0.4;
      pointer-events: none;
    }

    /* Light ray */
    .hero-ray {
      position: absolute;
      top: -10%;
      left: 38%;
      width: 420px;
      height: 100vh;
      background: linear-gradient(160deg, rgba(255,240,200,0.06) 0%, transparent 60%);
      transform: rotate(-12deg);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 48px 72px;
      max-width: 760px;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 0.9s 0.3s var(--ease-out) forwards;
    }
    .hero-eyebrow-line {
      width: 36px;
      height: 1px;
      background: var(--sand);
    }
    .hero-eyebrow span {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sand-light);
    }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(3.2rem, 7vw, 6.2rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 1s 0.5s var(--ease-out) forwards;
    }
    .hero-title em {
      font-style: italic;
      font-weight: 300;
      color: var(--sand-light);
    }

    .hero-subtitle {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.72);
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 44px;
      opacity: 0;
      animation: fadeUp 1s 0.7s var(--ease-out) forwards;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      align-items: center;
      opacity: 0;
      animation: fadeUp 1s 0.9s var(--ease-out) forwards;
    }

    .btn-primary {
      padding: 14px 32px;
      background: var(--sand);
      color: var(--white);
      font-family: var(--sans);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-primary:hover { background: #A8864F; transform: translateY(-1px); }

    .btn-ghost {
      padding: 14px 28px;
      background: transparent;
      color: rgba(255,255,255,0.8);
      font-family: var(--sans);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.3);
      cursor: pointer;
      transition: border-color 0.3s, color 0.3s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }



    .hero-stats {
      position: absolute;
      bottom: 64px;
      right: 48px;
      z-index: 2;
      display: flex;
      gap: 32px;
      opacity: 0;
      animation: fadeUp 1s 1.1s var(--ease-out) forwards;
    }
    .hero-stat {
      text-align: right;
    }
    .hero-stat-num {
      font-family: var(--serif);
      font-size: 2rem;
      font-weight: 400;
      color: var(--white);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    /* ── INTRO STRIP ──────────────────────────────────── */
    .intro-strip {
      background: var(--slate);
      padding: 48px;
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
      align-items: center;
      gap: 0;
    }
    .intro-feature {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 0 32px;
    }
    .intro-feature:first-child { padding-left: 0; }
    .intro-feature:last-child { padding-right: 0; }
    .intro-feature-icon {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      color: var(--sand);
    }
    .intro-feature-text strong {
      display: block;
      font-family: var(--serif);
      font-size: 1rem;
      font-weight: 400;
      color: var(--white);
      line-height: 1.2;
    }
    .intro-feature-text span {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.05em;
    }
    .intro-divider {
      width: 1px;
      height: 40px;
      background: rgba(255,255,255,0.1);
    }

    /* ── SECTION SHARED ───────────────────────────────── */
    .section-wrap {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .section-header {
      display: flex;
      align-items: baseline;
      gap: 24px;
      margin-bottom: 56px;
    }
    .section-eyebrow {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sage);
      white-space: nowrap;
    }
    .section-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3.4rem);
      font-weight: 300;
      color: var(--slate);
      line-height: 1.1;
    }
    .section-title em { font-style: italic; color: var(--sage); }
    .section-line {
      flex: 1;
      height: 1px;
      background: var(--ivory-mid);
    }

    /* ── APARTMENTS SECTION ───────────────────────────── */
    .apartments {
      padding: 100px 0 120px;
    }

    .apartments-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
    }

    .apt-card {
      position: relative;
      text-decoration: none;
      display: block;
      background: var(--white);
      overflow: hidden;
      transition: transform 0.5s var(--ease-out);
    }
    .apt-card:hover { transform: translateY(-6px); }
    .apt-card:hover .apt-img-inner { transform: scale(1.04); }
    .apt-card:hover .apt-cta-arrow { transform: translateX(6px); }

    /* Card 1 — slightly larger/featured */
    .apt-card--featured {
      margin-top: -48px;
    }

    .apt-img {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/3;
    }
    .apt-card--featured .apt-img { aspect-ratio: 3/2; }

    /* aspect-ratio fallback for Safari < 15 */
    @supports not (aspect-ratio: 4/3) {
      .apt-img { padding-top: 75%; /* 4:3 */ }
      .apt-card--featured .apt-img { padding-top: 66.67%; /* 3:2 */ }
      .apt-img-inner { position: absolute; top: 0; left: 0; }
    }

    .apt-img-inner {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s var(--ease-out);
    }

    .apt-photo-label {
      position: absolute;
      top: 24px;
      left: 24px;
      background: rgba(255,255,255,0.92);
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
      padding: 6px 14px;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--slate);
    }

    .apt-rating {
      position: absolute;
      bottom: 20px;
      right: 20px;
      background: var(--slate);
      padding: 8px 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .apt-rating-num {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--white);
      line-height: 1;
    }
    .apt-rating-info { line-height: 1.3; }
    .apt-rating-stars { color: var(--sand); font-size: 0.65rem; }
    .apt-rating-count { font-size: 0.62rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }

    .apt-body {
      padding: 32px 36px 40px;
    }

    .apt-name {
      font-family: var(--serif);
      font-size: 1.85rem;
      font-weight: 300;
      color: var(--slate);
      line-height: 1.15;
      margin-bottom: 6px;
    }
    .apt-card--featured .apt-name { font-size: 2.2rem; }

    .apt-location {
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--sage);
      text-transform: uppercase;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .apt-location::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--sage);
    }

    .apt-desc {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .apt-specs {
      display: flex;
      gap: 24px;
      margin-bottom: 32px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--ivory-mid);
    }
    .apt-spec {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .apt-spec-val {
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--slate);
      line-height: 1;
    }
    .apt-spec-label {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-mid);
      opacity: 0.7;
    }

    .apt-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
    }
    .apt-tag {
      padding: 5px 12px;
      background: var(--ivory-mid);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--text-mid);
    }

    .apt-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .apt-cta-price {
      display: flex;
      flex-direction: column;
    }
    .apt-price-from {
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-mid);
      opacity: 0.6;
    }
    .apt-price-val {
      font-family: var(--serif);
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--slate);
      line-height: 1.1;
    }
    .apt-price-val span {
      font-family: var(--sans);
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--text-mid);
    }

    .apt-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 28px;
      background: var(--slate);
      color: var(--white);
      font-family: var(--sans);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.3s;
    }
    .apt-card--featured .apt-btn { background: var(--sand); }
    .apt-btn:hover { background: var(--sage) !important; }
    .apt-cta-arrow {
      transition: transform 0.3s var(--ease-out);
      font-size: 1rem;
    }

    /* ── DIRECT BOOKING BANNER ────────────────────────── */
    .direct-banner {
      background: var(--ivory-mid);
      padding: 80px 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 100%;
    }

    .direct-text {}
    .direct-eyebrow {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 16px;
    }
    .direct-title {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--slate);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .direct-title em { font-style: italic; color: var(--sand); }
    .direct-body {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 36px;
    }
    .direct-cta { display: inline-flex; }

    .direct-advantages {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .adv-card {
      padding: 28px 24px;
      background: var(--white);
      border-top: 3px solid transparent;
      transition: border-color 0.3s;
    }
    .adv-card:hover { border-color: var(--sand); }
    .adv-icon { font-size: 1.6rem; margin-bottom: 12px; }
    .adv-title {
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--slate);
      margin-bottom: 6px;
    }
    .adv-desc {
      font-size: 0.78rem;
      color: var(--text-mid);
      line-height: 1.65;
    }

    /* ── LOCATION SECTION ─────────────────────────────── */
    .location {
      padding: 100px 0;
      background: var(--slate);
      position: relative;
      overflow: hidden;
    }
    .location::before {
      content: 'SAINT-GERVAIS';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--serif);
      font-size: clamp(5rem, 15vw, 14rem);
      font-weight: 300;
      color: rgba(255,255,255,0.025);
      white-space: nowrap;
      letter-spacing: 0.1em;
      pointer-events: none;
    }
    .location .section-wrap { position: relative; z-index: 1; }
    .location .section-title { color: var(--white); }
    .location .section-eyebrow { color: var(--sand-light); }
    .location .section-line { background: rgba(255,255,255,0.08); }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .location-map-placeholder {
      aspect-ratio: 1.2;
      /* fallback for browsers without aspect-ratio */
      background:
        linear-gradient(180deg, rgba(40,51,63,0.9) 0%, rgba(40,51,63,0.6) 100%),
        linear-gradient(135deg, #5A7A6A 0%, #3D5A4A 40%, #2D4035 70%, #1A2820 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .map-pin-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .map-pin-label {
      font-family: var(--serif);
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--sand-light);
      text-align: center;
      letter-spacing: 0.08em;
    }
    .map-pin {
      width: 24px;
      height: 24px;
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      background: var(--sand);
      box-shadow: 0 0 0 6px rgba(194,160,110,0.25);
    }
    .map-address {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.45);
      text-align: center;
      letter-spacing: 0.1em;
    }

    .location-info {}
    .location-desc {
      font-size: 1.05rem;
      font-weight: 300;
      color: rgba(255,255,255,0.65);
      line-height: 1.8;
      margin-bottom: 48px;
    }
    .location-distances {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .dist-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .dist-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
    .dist-place {
      font-size: 0.85rem;
      font-weight: 400;
      color: rgba(255,255,255,0.75);
    }
    .dist-badge {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--sage-light);
      letter-spacing: 0.06em;
      padding: 4px 10px;
      background: rgba(110,140,111,0.15);
    }

    /* ── TESTIMONIALS ─────────────────────────────────── */
    .testimonials {
      padding: 100px 0 120px;
      background: var(--ivory);
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testi-card {
      padding: 36px 32px 32px;
      background: var(--white);
      position: relative;
    }
    .testi-card::before {
      content: '\201C';
      position: absolute;
      top: 16px;
      left: 28px;
      font-family: var(--serif);
      font-size: 5rem;
      font-weight: 300;
      color: var(--ivory-mid);
      line-height: 1;
    }
    .testi-text {
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 300;
      font-style: italic;
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }
    .testi-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .testi-author {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--text-mid);
    }
    .testi-author span {
      display: block;
      font-weight: 300;
      color: var(--sage);
      margin-top: 2px;
    }
    .testi-stars { color: var(--sand); font-size: 0.75rem; }
    .testi-platform {
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-mid);
      opacity: 0.45;
      margin-top: 4px;
      text-align: right;
    }

    /* ── FOOTER ───────────────────────────────────────── */
    footer {
      background: var(--slate);
      padding: 72px 48px 40px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
    }
    .footer-brand {}
    .footer-logo {
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.2;
    }
    .footer-logo span {
      display: block;
      font-family: var(--sans);
      font-size: 0.62rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-top: 4px;
    }
    .footer-tagline {
      font-size: 0.82rem;
      font-weight: 300;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .footer-contact-link {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: var(--sand-light);
      text-decoration: none;
      margin-bottom: 8px;
      transition: color 0.3s;
    }
    .footer-contact-link:hover { color: var(--sand); }

    .footer-col-title {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-bottom: 20px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: 0.85rem;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--white); }

    .footer-bottom {
      max-width: 1280px;
      margin: 0 auto;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.07);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-copy {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.25);
      letter-spacing: 0.05em;
    }
    .footer-legal {
      display: flex;
      gap: 24px;
    }
    .footer-legal a {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.3);
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.3s;
    }
    .footer-legal a:hover { color: rgba(255,255,255,0.6); }

    /* ── SITE CREDIT (MontPC) ───────────────────────── */
    .site-credit {
      padding: 0.5rem 0;
      text-align: center;
      background: var(--slate);
    }
    .site-credit p {
      margin: 0;
      font-size: 0.6rem;
      font-weight: 300;
      letter-spacing: 0.04em;
    }
    .site-credit a {
      color: rgba(255,255,255,0.25);
      text-decoration: none;
      transition: color 0.2s;
    }
    .site-credit a:hover { color: rgba(255,255,255,0.5); }

    /* ── WHATSAPP FLOAT ───────────────────────────────── */
    .whatsapp-btn {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 200;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 24px rgba(37,211,102,0.35);
      text-decoration: none;
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
      animation: fadeIn 1s 2s both;
    }
    .whatsapp-btn:hover {
      transform: scale(1.08);
      box-shadow: 0 8px 32px rgba(37,211,102,0.45);
    }
    .whatsapp-btn svg { width: 28px; height: 28px; fill: white; }
    .whatsapp-pulse {
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      border-radius: 50%;
      background: #25D366;
      animation: waPulse 2.5s 3s infinite;
    }

    /* ── ANIMATIONS ───────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes waPulse {
      0%   { transform: scale(1); opacity: 0.6; }
      70%  { transform: scale(1.5); opacity: 0; }
      100% { transform: scale(1.5); opacity: 0; }
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* ── RESPONSIVE ───────────────────────────────────── */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      nav.scrolled { padding: 12px 24px; }
      .nav-burger { display: flex; }
      .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        background: rgba(245,240,230,0.98);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        z-index: 100;
      }
      .nav-links.open { display: flex; }
      .nav-links a {
        color: var(--slate) !important;
        font-size: 1rem;
        letter-spacing: 0.12em;
      }
      .nav-cta {
        border-color: var(--sand) !important;
        color: var(--sand) !important;
      }

      .hero-content { padding: 0 24px 64px; }
      .hero-stats { right: 24px; gap: 20px; }

      .intro-strip {
        grid-template-columns: 1fr 1fr;
        padding: 36px 24px;
        gap: 24px;
      }
      .intro-divider { display: none; }
      .intro-feature { padding: 12px 0; }

      .apartments-grid { grid-template-columns: 1fr; gap: 24px; }
      .apt-card--featured { margin-top: 0; }
      .section-wrap { padding: 0 24px; }

      .direct-banner { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
      .location-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer { padding: 48px 24px 32px; }

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }
      .footer-legal { justify-content: center; }

      .hero-stats { bottom: 48px; }

      .section-header {
        flex-direction: column;
        gap: 12px;
      }
      .section-line { display: none; }

      .legal-page { padding: 140px 24px 80px; }
      .legal-page table { font-size: 0.85rem; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .legal-page td { padding: 8px 10px; }
      .legal-page td:first-child { width: 35%; }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: 2.4rem; }
      .hero-stats {
        position: relative;
        bottom: auto; right: auto;
        justify-content: flex-start;
        padding: 0 24px 48px;
        opacity: 1;
        animation: none;
      }
      .hero { flex-direction: column; align-items: flex-start; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .btn-primary, .btn-ghost { text-align: center; }

      .intro-strip { grid-template-columns: 1fr; }

      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      footer { padding: 48px 24px 32px; }

      .direct-advantages { grid-template-columns: 1fr; }
    }

    /* ── LEGAL PAGES ─────────────────────────────────── */
    .legal-page {
      max-width: 860px;
      margin: 0 auto;
      padding: 160px 48px 100px;
    }

    .legal-page h1 {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300;
      color: var(--slate);
      line-height: 1.15;
      margin-bottom: 8px;
    }
    .legal-page h1 + .legal-meta {
      margin-bottom: 48px;
    }

    .legal-meta {
      font-size: 0.78rem;
      color: var(--text-mid);
      letter-spacing: 0.04em;
    }

    .legal-page h2 {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--slate);
      margin: 48px 0 16px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--ivory-mid);
    }
    .legal-page h2:first-of-type {
      margin-top: 0;
    }

    .legal-page h3 {
      font-family: var(--sans);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--slate-mid);
      margin: 28px 0 10px;
    }

    .legal-page p {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 14px;
    }

    .legal-page ul {
      margin: 0 0 16px 20px;
      list-style: none;
    }
    .legal-page li {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 6px;
      padding-left: 16px;
      position: relative;
    }
    .legal-page li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--sage);
    }

    .legal-page a {
      color: var(--sage);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s;
    }
    .legal-page a:hover { color: var(--sand); }

    .legal-page table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 20px;
      font-size: 0.875rem;
    }
    .legal-page td {
      padding: 10px 14px;
      border: 1px solid var(--ivory-mid);
      color: var(--text-mid);
      font-weight: 300;
      line-height: 1.6;
      vertical-align: top;
    }
    .legal-page td:first-child {
      font-weight: 500;
      color: var(--slate);
      width: 40%;
      background: var(--ivory);
    }

    .legal-page strong {
      font-weight: 600;
      color: var(--text);
    }

    .legal-page em {
      font-style: italic;
      color: var(--text-mid);
    }

    .legal-divider {
      border: none;
      border-top: 1px solid var(--ivory-mid);
      margin: 56px 0;
    }

    .legal-alert {
      background: rgba(194,160,110,0.1);
      border-left: 3px solid var(--sand);
      padding: 18px 22px;
      margin-bottom: 20px;
      font-size: 0.875rem;
      line-height: 1.7;
      color: var(--text-mid);
    }
    .legal-alert strong { color: var(--slate); }

    .legal-card {
      border: 1px solid var(--ivory-mid);
      padding: 22px 26px;
      margin-bottom: 20px;
      background: var(--white);
    }
    .legal-card h3 {
      margin-top: 0;
      font-size: 1rem;
      color: var(--slate);
    }

    .legal-tag {
      display: inline-block;
      background: var(--ivory-mid);
      padding: 3px 10px;
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--text-mid);
      letter-spacing: 0.04em;
      margin-right: 4px;
      margin-bottom: 4px;
    }
    .legal-tag.red {
      background: rgba(185,28,28,0.08);
      color: #b91c1c;
    }

    .legal-credits {
      background: var(--ivory);
      border: 1px solid var(--ivory-mid);
      padding: 22px 26px;
      margin-top: 40px;
    }
    .legal-credits p {
      margin-bottom: 4px;
      font-size: 0.875rem;
    }

    .legal-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 40px;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--sage);
      text-decoration: none;
      transition: color 0.2s;
    }
    .legal-back:hover { color: var(--sand); }

    /* ── COOKIE CONSENT OVERRIDES ────────────────────── */
    .cookie-consent-banner {
      border-top: 1px solid var(--ivory-mid);
      box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
    }

    .cookie-consent-banner__title {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 1.15rem;
      color: var(--slate);
    }

    .cookie-consent-banner__description {
      font-weight: 300;
      line-height: 1.6;
    }

    .cookie-consent-banner__button {
      border-radius: 0;
      font-family: var(--sans);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 10px 20px;
      transition: background-color 0.25s var(--ease-out), color 0.25s;
    }

    .cookie-consent-banner__button--accept {
      background: var(--sage);
    }
    .cookie-consent-banner__button--accept:hover {
      background: #5A7A5B;
    }

    .cookie-consent-banner__button--reject {
      background: transparent;
      color: var(--text-mid);
      border: 1px solid var(--ivory-mid);
    }
    .cookie-consent-banner__button--reject:hover {
      background: var(--ivory-mid);
      color: var(--text);
    }

    .cookie-consent-banner__button--settings {
      border-color: var(--sage);
      color: var(--sage);
    }
    .cookie-consent-banner__button--settings:hover {
      background: rgba(110,140,111,0.08);
    }

    .cookie-consent-banner__link {
      color: var(--sage);
      font-size: 0.82rem;
      font-weight: 400;
    }
    .cookie-consent-banner__link:hover {
      color: var(--sand);
    }

    /* Preferences modal */
    .cookie-preferences-modal__container {
      border-radius: 0;
      box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    }

    .cookie-preferences-modal__title {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 1.4rem;
      color: var(--slate);
    }

    .cookie-preferences-modal__close:hover {
      color: var(--slate);
    }

    .cookie-preferences-modal__description {
      font-weight: 300;
      line-height: 1.7;
    }

    .cookie-preferences-modal__category {
      border-color: var(--ivory-mid);
      border-radius: 0;
    }

    .cookie-preferences-modal__category-label {
      font-family: var(--sans);
      font-size: 0.88rem;
    }

    .cookie-preferences-modal__category-description {
      font-weight: 300;
      color: var(--text-mid);
    }

    .cookie-preferences-modal__examples-title {
      font-weight: 500;
      color: var(--slate-mid);
    }

    .cookie-preferences-modal__button {
      border-radius: 0;
      font-family: var(--sans);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 10px 24px;
    }

    .cookie-preferences-modal__button--save {
      background: var(--sage);
    }
    .cookie-preferences-modal__button--save:hover {
      background: #5A7A5B;
    }

    .cookie-preferences-modal__button--cancel {
      background: transparent;
      border: 1px solid var(--ivory-mid);
    }
    .cookie-preferences-modal__button--cancel:hover {
      background: var(--ivory-mid);
    }

    /* ── SKIP LINK (accessibility) ─────────────────────── */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 16px;
      z-index: 9999;
      padding: 12px 24px;
      background: var(--slate);
      color: var(--white);
      font-family: var(--sans);
      font-size: 14px;
      text-decoration: none;
      border-radius: 0 0 8px 8px;
      transition: top 0.2s;
    }
    .skip-link:focus {
      top: 0;
      outline: 2px solid var(--sage);
      outline-offset: 2px;
    }

    /* ── FOOTER ADDRESS ────────────────────────────────── */
    .footer-address {
      font-style: normal;
      font-size: 13px;
      color: rgba(245,240,230,0.5);
      line-height: 1.5;
      margin-top: 12px;
    }

    /* ── REDUCED MOTION ────────────────────────────────── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      html { scroll-behavior: auto; }
      .reveal { opacity: 1; transform: none; }
      .hero-ray { animation: none; }
    }