 .home-hero {
    min-height: 68vh;
    background: var(--surface-alt);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: var(--sp-4) 0;
  }

  .home-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    will-change: transform;
  }

  .home-blob-a {
    width: 90vw; max-width: 400px; height: 350px;
    background: rgba(25, 118, 210, 0.08);
    top: -80px; right: -80px;
  }

  .home-blob-b {
    width: 80vw; max-width: 350px; height: 300px;
    background: rgba(124, 179, 66, 0.08);
    bottom: -60px; left: -80px;
  }

  .home-blob-c { display: none; }

  .home-hero-dots {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(0,0,0,0.055) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  }

  .home-hero-inner {
    position: relative; z-index: 1;
    max-width: 1160px; margin: 0 auto;
    padding: 0 16px 24px; width: 100%;
    display: grid; grid-template-columns: 1fr;
    gap: 32px; align-items: center;
    text-align: center;
  }

  .home-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: white; border: 1.5px solid var(--line);
    color: var(--ink-light);
    font-size: 10px; font-weight: 600;
    padding: 4px 10px 4px 6px;
    border-radius: var(--r-full); margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  .home-hero-eyebrow-dot {
    width: 16px; height: 16px; border-radius: 50%;
    background: rgba(124, 179, 66, 0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .home-hero-eyebrow-dot::after {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--secondary);
    animation: home-pulse-dot 2.2s infinite;
  }

  @keyframes home-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .home-hero-headline {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(1.8rem, 7vw, 4rem);
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 16px;
  }

  .home-hero-headline em {
    font-style: italic;
    background: linear-gradient(130deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 5px;
  }

  .home-hero-sub {
    font-size: clamp(13px, 3.5vw, 16px);
    color: var(--ink-light);
    line-height: 1.7;
    max-width: 100%;
    margin: 0 auto 24px;
  }

  .home-hero-actions {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 28px;
    align-items: center;
  }

  .home-hero-btn-primary,
  .home-hero-btn-secondary {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    font-family: inherit; font-size: 13.5px; font-weight: 600;
    padding: 12px 22px; border-radius: var(--r-full);
    text-decoration: none;
    transition: all 0.24s var(--transition);
    min-height: 46px;
    width: 100%;
    max-width: 300px;
  }

  .home-hero-btn-primary {
    background: var(--primary); color: white;
    box-shadow: 0 4px 20px rgba(25, 118, 210, 0.25);
  }

  .home-hero-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(25, 118, 210, 0.35);
  }

  .home-hero-btn-secondary {
    background: white; color: var(--ink);
    border: 1.5px solid var(--line);
  }

  .home-hero-btn-secondary:hover {
    border-color: var(--ink-lighter);
    background: var(--surface-alt);
    transform: translateY(-1px);
  }

  .home-hero-stats {
    display: flex; flex-wrap: wrap; gap: 0;
    justify-content: center;
  }

  .home-hero-stat {
    padding: 10px 14px;
    border-right: none;
    border-bottom: 1px solid var(--line);
    text-align: center;
    flex: 1 1 45%;
    min-width: 110px;
  }

  .home-hero-stat:nth-child(3),
  .home-hero-stat:nth-child(4) {
    border-bottom: none;
  }

  .home-hero-stat:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .home-hero-stat:last-child {
    border-bottom: none;
  }

  .home-stat-val {
    font-size: clamp(18px, 5vw, 26px);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .home-stat-lbl {
    font-size: 10px;
    color: var(--ink-muted);
    margin-top: 4px;
    font-weight: 500;
  }

  .home-hero-mosaic {
    position: relative;
    height: 260px;
    max-width: 100%;
    margin: 0 auto;
  }

  .home-hero-photo {
    position: absolute;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  }

  .home-hero-photo img {
    width: 100%; height: 100%; object-fit: cover;
  }

  .home-photo-main { width: 65%; height: 70%; top: 0; right: 0; border-radius: 12px; }
  .home-photo-b { width: 50%; height: 50%; bottom: 0; left: 0; border-radius: 12px; }
  .home-photo-c { display: none; }

  .home-hero-float {
    position: absolute; top: 48%; left: 50%;
    transform: translateX(-50%);
    background: white; border-radius: 12px;
    padding: 9px 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.9);
    animation: home-float-y 4.5s ease-in-out infinite;
    white-space: nowrap;
  }

  @keyframes home-float-y {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
  }

  .home-float-top {
    display: flex; align-items: center; gap: 5px;
    margin-bottom: 2px;
  }

  .home-float-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--secondary);
    animation: home-pulse-dot 2s infinite;
    flex-shrink: 0;
  }

  .home-float-label {
    font-size: 8px; font-weight: 700;
    color: var(--ink-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .home-float-val {
    font-size: 18px; font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.03em;
  }

  .home-float-sub {
    font-size: 9px;
    color: var(--ink-muted);
    margin-top: 1px;
  }

  /* ══════════════════════════════════════════
     HOME — CAMPUS SECTION (Mobile First)
  ══════════════════════════════════════════ */
  .home-campuses-section {
    padding: 48px 0 0;
    background: white;
  }

  .home-campuses-header {
    display: flex; flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 28px; gap: 14px;
  }

  .home-campus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    counter-reset: home-campus-n;
  }

  .home-campus-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 170px 1fr;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--line);
    transition: all 0.34s var(--transition);
    height: 380px;
  }

  .home-campus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.11);
    border-color: var(--ink-lighter);
  }

  .home-campus-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--surface-alt);
    height: 170px;
    width: 100%;
    grid-row: 1;
  }

  .home-campus-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.55s var(--transition);
  }

  .home-campus-card:hover .home-campus-img {
    transform: scale(1.05);
  }

  .home-campus-life {
    position: absolute; bottom: 10px; left: 10px;
    display: flex; align-items: center; gap: 4px;
    opacity: 0; transform: translateY(8px);
    transition: all 0.28s var(--transition);
  }

  .home-campus-card:hover .home-campus-life {
    opacity: 1; transform: translateY(0);
  }

  .home-life-thumb {
    width: 28px; height: 28px; border-radius: 6px;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
  }

  .home-life-more {
    width: 28px; height: 28px; border-radius: 6px;
    background: rgba(0,0,0,0.42);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 700; color: white;
  }

  .home-campus-city-badge {
    position: absolute; top: 10px; left: 10px;
    display: flex; align-items: center; gap: 4px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    color: var(--ink-light);
    font-size: 10px; font-weight: 600;
    padding: 3px 8px; border-radius: var(--r-full);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  }

  .home-campus-city-badge svg { color: var(--secondary); flex-shrink: 0; }

  .home-campus-avail {
    position: absolute; top: 10px; right: 10px;
    display: flex; align-items: center; gap: 4px;
    background: rgba(25, 118, 210, 0.92);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 9px; font-weight: 600;
    padding: 3px 8px; border-radius: var(--r-full);
  }

  .home-avail-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--secondary);
    animation: home-pulse-dot 2s infinite;
  }

  .home-campus-body {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    grid-row: 2;
  }

  .home-campus-body::before {
    counter-increment: home-campus-n;
    content: counter(home-campus-n, decimal-leading-zero);
    position: absolute; top: -12px; right: -4px;
    font-size: 80px; font-weight: 800;
    line-height: 1; letter-spacing: -0.05em;
    color: rgba(0,0,0,0.03);
    pointer-events: none; user-select: none;
  }

  .home-campus-name {
    font-size: 17px; font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.025em;
  }

  .home-campus-desc {
    font-size: 12.5px;
    color: var(--ink-muted);
    line-height: 1.65;
  }

  .home-campus-amenities {
    display: flex; flex-wrap: wrap; gap: 4px;
  }

  .home-amenity-tag {
    display: inline-flex; align-items: center; gap: 3px;
    font-size: 10px;
    color: var(--ink-light);
    background: rgba(25, 118, 210, 0.06);
    border: 1px solid rgba(25, 118, 210, 0.15);
    padding: 3px 7px;
    border-radius: var(--r-full);
    font-weight: 500;
    white-space: nowrap;
  }

  .home-amenity-tag svg { color: var(--primary); flex-shrink: 0; }

  .home-campus-footer {
    display: flex; align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    margin-top: auto;
    gap: 10px;
  }

  .home-price-wrap {
    display: flex; align-items: baseline;
    gap: 2px; flex-wrap: wrap;
  }

  .home-price-from { font-size: 9px; color: var(--ink-muted); }
  .home-price-val {
    font-size: 18px; font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.03em;
  }
  .home-price-per { font-size: 9px; color: var(--ink-muted); }

  .home-campus-cta {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; font-weight: 700;
    color: white; background: var(--primary);
    padding: 7px 14px;
    border-radius: var(--r-full);
    transition: all 0.22s var(--transition);
    white-space: nowrap; flex-shrink: 0;
  }

  .home-campus-card:hover .home-campus-cta {
    background: var(--secondary);
    transform: translateX(2px);
  }

  /* ══════════════════════════════════════════
     HOME — LIFE BAND (Mobile First)
  ══════════════════════════════════════════ */
  .home-life-band {
    margin-top: 48px;
    background: var(--primary);
    position: relative; overflow: hidden;
  }

  .home-life-band::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 500px 400px at 0% 100%, rgba(25, 118, 210, 0.25) 0%, transparent 60%),
      radial-gradient(ellipse 300px 250px at 100% 0%, rgba(124, 179, 66, 0.15) 0%, transparent 60%);
    pointer-events: none;
  }

  .home-life-band-inner {
    max-width: 1160px; margin: 0 auto;
    padding: 40px 16px;
    display: grid; grid-template-columns: 1fr;
    gap: 28px; align-items: center;
    position: relative; z-index: 1;
  }

  .home-life-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-light);
    margin-bottom: 12px;
  }

  .home-life-tag::before {
    content: '';
    width: 12px; height: 2px;
    background: currentColor;
    border-radius: 2px;
    flex-shrink: 0;
  }

  .home-life-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: white;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
  }

  .home-life-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .home-life-band-btn {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--secondary); color: white;
    font-family: inherit; font-size: 12.5px; font-weight: 700;
    padding: 11px 20px;
    border-radius: var(--r-full);
    text-decoration: none;
    min-height: 42px;
    transition: all 0.22s var(--transition);
  }

  .home-life-band-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 179, 66, 0.3);
  }

  .home-life-photos { display: none; }
  .home-life-col { display: flex; flex-direction: column; gap: 9px; }
  .home-life-col-offset { margin-top: 26px; }
  .home-life-img {
    flex: 1; min-height: 0; width: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s var(--transition);
  }
  .home-life-img:hover { transform: scale(1.02); }

  /* ══════════════════════════════════════════
     HOME — ROOM TYPES (Mobile First)
  ══════════════════════════════════════════ */
  .home-rooms-section {
    padding: 48px 0;
    background: var(--surface-alt);
  }

  .home-rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
  }

  .home-room-card {
    border-radius: 18px;
    padding: 22px;
    position: relative;
    overflow: hidden;
  }

  .home-room-light {
    background: white;
    border: 1px solid var(--line);
  }

  .home-room-dark {
    background: var(--primary);
    box-shadow: 0 12px 40px rgba(25, 118, 210, 0.25);
  }

  .home-room-light::before {
    content: '';
    position: absolute; top: -35px; right: -35px;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: rgba(124, 179, 66, 0.1);
    pointer-events: none;
  }

  .home-room-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px; flex-shrink: 0;
  }

  .home-icon-tint { background: rgba(124, 179, 66, 0.15); }
  .home-icon-white { background: rgba(255,255,255,0.15); }

  .home-room-title {
    font-size: 16px; font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 7px;
  }

  .home-room-title-dark { color: var(--ink); }
  .home-room-title-light { color: white; }

  .home-room-desc {
    font-size: 12.5px; line-height: 1.65;
    margin-bottom: 14px;
  }

  .home-room-desc-dark { color: var(--ink-light); }
  .home-room-desc-light { color: rgba(255,255,255,0.55); }

  .home-room-features {
    list-style: none; margin: 0 0 18px;
    display: flex; flex-direction: column; gap: 7px;
  }

  .home-room-feature {
    display: flex; align-items: center; gap: 7px;
    font-size: 12.5px;
  }

  .home-room-feature-dark { color: var(--ink-light); }
  .home-room-feature-light { color: rgba(255,255,255,0.7); }

  .home-room-check {
    width: 17px; height: 17px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }

  .home-check-tint { background: rgba(124, 179, 66, 0.2); }
  .home-check-white { background: rgba(255,255,255,0.15); }

  /* ══════════════════════════════════════════
     HOME — FEATURES (Mobile First)
  ══════════════════════════════════════════ */
  .home-features-section {
    padding: 48px 0;
    background: white;
  }

  .home-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-feature-item {
    padding: 22px;
    border-radius: 14px;
    border: 1.5px solid var(--line);
    background: var(--surface-alt);
    transition: all 0.25s var(--transition);
  }

  .home-feature-item:hover {
    border-color: var(--ink-lighter);
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.06);
  }

  .home-feature-icon {
    width: 42px; height: 42px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    background: var(--primary);
    flex-shrink: 0;
  }

  .home-feature-title {
    font-size: 13.5px; font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }

  .home-feature-desc {
    font-size: 12.5px;
    color: var(--ink-muted);
    line-height: 1.6;
  }

  /* ══════════════════════════════════════════
     HOME — TESTIMONIALS (Mobile First)
  ══════════════════════════════════════════ */
  .home-testimonials-section {
    padding: 48px 0;
    background: var(--surface-alt);
  }

  .home-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--line);
    display: flex; flex-direction: column;
    gap: 12px;
    transition: all 0.25s var(--transition);
  }

  .home-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  }

  .home-testimonial-stars { display: flex; gap: 3px; }

  .home-testimonial-star {
    color: var(--secondary);
    font-size: 12px;
  }

  .home-testimonial-text {
    font-size: 13px;
    color: var(--ink-light);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    position: relative;
    padding-left: 18px;
  }

  .home-testimonial-text::before {
    content: '\201C';
    font-family: 'Instrument Serif', serif;
    font-size: 38px;
    color: rgba(25, 118, 210, 0.1);
    position: absolute; left: -4px; top: -10px;
    line-height: 1;
  }

  .home-testimonial-author {
    display: flex; align-items: center; gap: 9px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .home-testimonial-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(25, 118, 210, 0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
  }

  .home-testimonial-avatar img {
    width: 100%; height: 100%; object-fit: cover;
  }

  .home-testimonial-name {
    font-size: 12.5px; font-weight: 700;
    color: var(--ink);
  }

  .home-testimonial-meta {
    font-size: 10.5px;
    color: var(--ink-muted);
    margin-top: 2px;
  }

  /* ══════════════════════════════════════════
     HOME — CTA (Mobile First)
  ══════════════════════════════════════════ */
  .home-cta-section {
    padding: 48px 0;
    background: white;
  }

  .home-cta-band {
    background: var(--primary);
    border-radius: 20px;
    padding: 36px 18px;
    text-align: center;
    position: relative; overflow: hidden;
  }

  .home-cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 400px 300px at 18% 50%, rgba(25, 118, 210, 0.3) 0%, transparent 70%),
      radial-gradient(ellipse 300px 250px at 82% 50%, rgba(124, 179, 66, 0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .home-cta-content { position: relative; z-index: 1; }

  .home-cta-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    color: white;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    line-height: 1.15;
  }

  .home-cta-sub {
    font-size: clamp(12.5px, 3vw, 15.5px);
    color: rgba(255,255,255,0.5);
    max-width: 100%;
    margin: 0 auto 24px;
    line-height: 1.7;
  }

  .home-cta-actions {
    display: flex; flex-direction: column; gap: 10px;
    justify-content: center;
    align-items: center;
  }

  .home-cta-btn-white,
  .home-cta-btn-ghost {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 7px;
    font-family: inherit; font-size: 13.5px; font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--r-full);
    text-decoration: none;
    min-height: 46px;
    transition: all 0.22s var(--transition);
    width: 100%;
    max-width: 280px;
  }

  .home-cta-btn-white {
    background: var(--secondary); color: white;
  }

  .home-cta-btn-white:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 179, 66, 0.3);
  }

  .home-cta-btn-ghost {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    border: 1.5px solid rgba(255,255,255,0.2);
  }

  .home-cta-btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    color: white;
  }

  /* ══════════════════════════════════════════
     TABLETTE — min-width: 560px
  ══════════════════════════════════════════ */
  @media (min-width: 560px) {
    .home-hero-inner {
      padding: 0 22px 32px;
      gap: 36px;
    }

    .home-hero-actions {
      flex-direction: row;
      justify-content: center;
    }

    .home-hero-btn-primary,
    .home-hero-btn-secondary {
      width: auto;
      max-width: none;
    }

    .home-hero-stat {
      flex: 0 1 auto;
      padding: 0 18px;
      border-right: 1px solid var(--line);
      border-bottom: none;
    }

    .home-hero-stat:nth-child(3),
    .home-hero-stat:nth-child(4) {
      border-bottom: none;
    }

    .home-hero-stat:last-child { border-right: none; }

    .home-room-card {
      padding: 26px;
      border-radius: 20px;
    }

    .home-room-title { font-size: 17px; }

    .home-features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .home-testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .home-cta-actions { flex-direction: row; }

    .home-cta-btn-white,
    .home-cta-btn-ghost {
      width: auto;
      max-width: none;
    }
  }

  /* ══════════════════════════════════════════
     TABLETTE LARGE — min-width: 768px
  ══════════════════════════════════════════ */
  @media (min-width: 768px) {
    .home-hero {
      padding: 48px 0 36px;
      min-height: auto;
    }

    .home-blob-a {
      width: 70vw; max-width: 500px; height: 420px;
      top: -120px; right: -70px;
    }

    .home-blob-b {
      width: 60vw; max-width: 400px; height: 340px;
      bottom: -80px; left: -70px;
    }

    .home-blob-c {
      display: block;
      width: 30vw; max-width: 280px; height: 250px;
      background: rgba(25, 118, 210, 0.06);
      top: 45%; left: 36%;
    }

    .home-hero-inner {
      padding: 0 26px 32px;
      gap: 42px;
      text-align: left;
    }

    .home-hero-sub {
      max-width: 440px;
      margin: 0 0 28px;
    }

    .home-hero-actions {
      justify-content: flex-start;
      margin-bottom: 36px;
    }

    .home-hero-stats { justify-content: flex-start; }

    .home-hero-mosaic {
      height: 340px;
      max-width: 540px;
      margin: 0;
    }

    .home-photo-c {
      display: block;
      width: 30%; height: 28%; bottom: 10%; right: 4%; border-radius: 12px;
    }

    .home-hero-float {
      top: 51%; left: 44%;
      transform: none;
      padding: 10px 14px;
      border-radius: 14px;
    }

    @keyframes home-float-y {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .home-float-val { font-size: 20px; }

    .home-campuses-section { padding: 64px 0 0; }

    .home-campuses-header {
      flex-direction: row;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 36px;
    }

    .home-campus-card {
      grid-template-columns: 1.15fr 0.85fr;
      grid-template-rows: 1fr;
      border-radius: 22px;
      height: 360px;
    }

    .home-campus-card:nth-child(even) {
      grid-template-columns: 0.85fr 1.15fr;
    }

    .home-campus-card:nth-child(even) .home-campus-img-wrap {
      grid-column: 2;
      grid-row: 1;
    }

    .home-campus-card:nth-child(even) .home-campus-body {
      grid-column: 1;
      grid-row: 1;
    }

    .home-campus-img-wrap {
      height: 100%;
      min-height: 360px;
      grid-column: 1;
      grid-row: 1;
    }

    .home-campus-body {
      padding: 28px 26px;
      gap: 14px;
      grid-column: 2;
      grid-row: 1;
    }

    .home-campus-body::before {
      font-size: 110px;
      top: -16px; right: -6px;
    }

    .home-campus-name { font-size: 19px; }
    .home-campus-desc { font-size: 13px; }

    .home-life-band { margin-top: 60px; }

    .home-life-band-inner {
      padding: 52px 26px;
      gap: 36px;
    }

    .home-life-photos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 9px;
      height: 290px;
    }

    .home-life-title { font-size: clamp(1.7rem, 3vw, 2.5rem); }
    .home-life-desc { font-size: 14px; max-width: 360px; }

    .home-rooms-section { padding: 64px 0; }

    .home-rooms-grid {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .home-room-card {
      padding: 28px;
      border-radius: 22px;
    }

    .home-room-icon {
      width: 46px; height: 46px;
      margin-bottom: 18px;
    }

    .home-room-title { font-size: 18px; margin-bottom: 9px; }
    .home-room-desc { margin-bottom: 18px; }

    .home-room-features {
      gap: 8px;
      margin-bottom: 22px;
    }

    .home-room-light::before {
      top: -40px; right: -40px;
      width: 135px; height: 135px;
    }

    .home-features-section { padding: 64px 0; }

    .home-features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .home-feature-item { padding: 24px; }

    .home-testimonials-section { padding: 64px 0; }
    .home-cta-section { padding: 64px 0; }

    .home-cta-band {
      border-radius: 24px;
      padding: 52px 36px;
    }
  }

  /* ══════════════════════════════════════════
     DESKTOP — min-width: 1024px
  ══════════════════════════════════════════ */
  @media (min-width: 1024px) {
    .home-hero {
      padding: 56px 0 40px;
      min-height: auto;
    }

    .home-blob-a {
      width: 65vw; max-width: 650px; height: 550px;
      top: -150px; right: -60px;
    }

    .home-blob-b {
      width: 55vw; max-width: 500px; height: 420px;
      bottom: -100px; left: -60px;
    }

    .home-blob-c {
      width: 36vw; max-width: 320px; height: 290px;
    }

    .home-hero-inner {
      padding: 0 28px 40px;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 56px;
    }

    .home-hero-headline {
      font-size: clamp(2.2rem, 5vw, 4.2rem);
      margin-bottom: 20px;
    }

    .home-hero-sub {
      font-size: clamp(14.5px, 2vw, 16px);
      margin-bottom: 32px;
    }

    .home-hero-actions { margin-bottom: 44px; }
    .home-hero-mosaic { height: 480px; }

    .home-photo-main { width: 63%; height: 65%; top: 0; right: 0; border-radius: 18px; }
    .home-photo-b { width: 48%; height: 46%; bottom: 0; left: 0; border-radius: 18px; }
    .home-photo-c { width: 33%; height: 30%; bottom: 11%; right: 3%; border-radius: 14px; }

    .home-hero-float {
      padding: 12px 16px;
      border-radius: 16px;
    }

    .home-float-val { font-size: 22px; }

    .home-campuses-section { padding: 80px 0 0; }
    .home-campuses-header { margin-bottom: 44px; }
    .home-campus-grid { gap: 22px; }

    .home-campus-card {
      border-radius: 26px;
      height: 400px;
    }

    .home-campus-img-wrap { height: 400px; }
    .home-campus-body { height: 400px; }

    .home-campus-body::before {
      font-size: 130px;
      top: -20px; right: -8px;
    }

    .home-campus-name { font-size: 20px; }
    .home-campus-desc { font-size: 13.5px; line-height: 1.68; }
    .home-amenity-tag { font-size: 11px; padding: 4px 9px; }

    .home-life-band { margin-top: 68px; }

    .home-life-band-inner {
      padding: 68px 28px;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
    }

    .home-life-photos {
      height: 380px;
      gap: 11px;
    }

    .home-life-col { gap: 11px; }
    .home-life-col-offset { margin-top: 32px; }
    .home-life-img { border-radius: 14px; }

    .home-rooms-section { padding: 80px 0; }
    .home-rooms-grid { gap: 18px; }

    .home-room-card {
      padding: 32px;
      border-radius: 24px;
    }

    .home-room-icon {
      width: 48px; height: 48px;
      margin-bottom: 22px;
    }

    .home-room-title { font-size: 19px; margin-bottom: 10px; }
    .home-room-desc { font-size: 13px; margin-bottom: 20px; }

    .home-room-features {
      gap: 9px;
      margin-bottom: 26px;
    }

    .home-room-light::before {
      top: -45px; right: -45px;
      width: 165px; height: 165px;
    }

    .home-features-section { padding: 80px 0; }

    .home-features-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .home-feature-item {
      padding: 26px;
      border-radius: 16px;
    }

    .home-feature-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      margin-bottom: 16px;
    }

    .home-feature-title { font-size: 14.5px; margin-bottom: 7px; }
    .home-feature-desc { font-size: 13px; }

    .home-testimonials-section { padding: 80px 0; }

    .home-testimonials-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .home-testimonial-card {
      padding: 24px;
      border-radius: 18px;
      gap: 14px;
    }

    .home-testimonial-text { font-size: 14px; }

    .home-testimonial-avatar {
      width: 38px; height: 38px;
      font-size: 14px;
    }

    .home-testimonial-name { font-size: 13.5px; }
    .home-testimonial-meta { font-size: 11.5px; }

    .home-cta-section { padding: 80px 0; }

    .home-cta-band {
      border-radius: 28px;
      padding: 68px 52px;
    }

    .home-cta-title {
      font-size: clamp(1.8rem, 4vw, 2.9rem);
      margin-bottom: 14px;
    }

    .home-cta-sub {
      font-size: clamp(14.5px, 2vw, 16px);
      max-width: 410px;
      margin: 0 auto 32px;
    }

    .home-cta-btn-white,
    .home-cta-btn-ghost {
      font-size: 14.5px;
      padding: 13px 28px;
      min-height: 48px;
    }
  }

  /* ══════════════════════════════════════════
     GRAND DESKTOP — min-width: 1280px
  ══════════════════════════════════════════ */
  @media (min-width: 1280px) {
    .home-hero-inner { gap: 72px; }
    .home-campus-grid { gap: 26px; }
    .home-life-band-inner { gap: 72px; }
  }

  /* ══════════════════════════════════════════
     HOME — ANIMATIONS
  ══════════════════════════════════════════ */
  .home-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: home-fade-up-anim 0.8s var(--transition) forwards;
  }

  @keyframes home-fade-up-anim {
    to { opacity: 1; transform: translateY(0); }
  }

  .home-delay-1 { animation-delay: 0.1s; }
  .home-delay-2 { animation-delay: 0.2s; }
  .home-delay-3 { animation-delay: 0.3s; }
  .home-delay-4 { animation-delay: 0.4s; }
  .home-delay-5 { animation-delay: 0.5s; }

  .home-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
  }

  .home-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .home-reveal-grid > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
  }

  .home-reveal-grid.revealed > *:nth-child(1) { transition-delay: 0s; }
  .home-reveal-grid.revealed > *:nth-child(2) { transition-delay: 0.1s; }
  .home-reveal-grid.revealed > *:nth-child(3) { transition-delay: 0.2s; }
  .home-reveal-grid.revealed > *:nth-child(4) { transition-delay: 0.3s; }
  .home-reveal-grid.revealed > *:nth-child(5) { transition-delay: 0.4s; }

  .home-reveal-grid.revealed > * {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    .home-fade-up {
      opacity: 1;
      transform: none;
      animation: none;
    }
    .home-reveal {
      opacity: 1;
      transform: none;
    }
    .home-reveal-grid > * {
      opacity: 1;
      transform: none;
    }
  }