  /* ───────── Hero ───────── */
  .hero {
    padding: 56px 0 96px;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .hero h1 .script {
    display: block;
    font-size: 1.1em;
    margin-top: -8px;
    margin-bottom: -10px;
    line-height: .9;
  }
  .hero-sub {
    margin-top: 28px;
    font-size: 19px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.55;
  }
  .hero-ctas {
    margin-top: 36px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero-meta {
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 36px;
    color: var(--muted);
    font-size: 14px;
  }
  .hero-meta strong { display: block; color: var(--ink); font-size: 22px; font-weight: 600; margin-bottom: 2px; letter-spacing: -0.01em; }
  .hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
  }
  .hero-image img { width: 100%; height: 100%; object-fit: cover; }
  .hero-image .badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
  }
  .hero-image .badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2BB673;
    box-shadow: 0 0 0 3px rgba(43,182,115,.2);
  }
  .hero-image .floating-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
  }
  .floating-card .label { font-size: 12px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
  .floating-card .value { font-size: 18px; font-weight: 600; margin-top: 2px; }

  /* ───────── Value strip ───────── */
  .value-strip {
    background: var(--cream);
    padding: 36px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .value-strip .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .value-item { display: flex; align-items: flex-start; gap: 14px; }
  .value-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--paper);
    color: var(--green);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid var(--line);
  }
  .value-item .title { font-weight: 600; font-size: 15px; line-height: 1.3; }
  .value-item .sub { font-size: 13px; color: var(--muted); margin-top: 2px; }

  /* ───────── Floor plans preview ───────── */
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .plan-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green);
  }
  .plan-card .plan-thumb {
    aspect-ratio: 5/4;
    background: var(--cream);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    padding: 16px;
    overflow: hidden;
  }
  .plan-card .plan-thumb svg { width: 100%; height: 100%; }
  .plan-card .row { display: flex; justify-content: space-between; align-items: baseline; }
  .plan-card .name { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
  .plan-card .price { color: var(--orange); font-weight: 600; font-size: 16px; }
  .plan-card .specs { display: flex; gap: 16px; color: var(--muted); font-size: 14px; }
  .plan-card .specs span { display: flex; align-items: center; gap: 6px; }
  .plan-card .cta {
    margin-top: auto;
    color: var(--green-deep);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }
  .plan-card:hover .cta { color: var(--orange); }
  .plan-card .cta svg { transition: transform .2s; }
  .plan-card:hover .cta svg { transform: translateX(4px); }

  /* ───────── Amenities ───────── */
  .amenities {
    background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  }
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .amenity {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: border-color .2s, transform .2s;
  }
  .amenity:hover { border-color: var(--green); transform: translateY(-2px); }
  .amenity .icon {
    width: 44px;
    height: 44px;
    background: var(--green-soft);
    color: var(--green-deep);
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
  }
  .amenity h3 { font-size: 16px; font-weight: 600; }
  .amenity p { color: var(--muted); font-size: 14px; margin-top: 4px; }

  /* ───────── Neighborhood ───────── */
  .neighborhood-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .neighborhood-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px;
    gap: 12px;
  }
  .neighborhood-photos img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: var(--radius-md);
  }
  .neighborhood-photos img:first-child { grid-row: span 2; height: 412px; }
  .neighborhood-text .eyebrow { margin-bottom: 16px; display: inline-block; }
  .neighborhood-text h2 { margin-bottom: 20px; }
  .neighborhood-text p { color: var(--muted); font-size: 17px; margin-bottom: 16px; max-width: 480px; }
  .neighborhood-stats { display: flex; gap: 40px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
  .neighborhood-stats .n { font-size: 30px; font-weight: 600; color: var(--green-deep); letter-spacing: -0.02em; }
  .neighborhood-stats .l { font-size: 13px; color: var(--muted); margin-top: 2px; }

  /* ───────── Gallery ───────── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
  }
  .gallery-grid > div {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: var(--cream);
  }
  .gallery-grid img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s ease;
  }
  .gallery-grid > div:hover img { transform: scale(1.04); }
  .gal-1 { grid-column: span 2; grid-row: span 2; }
  .gal-2 { grid-column: span 2; }
  .gal-3 { grid-column: span 2; }
  .gal-4 { grid-column: span 2; }
  .gal-5 { grid-column: span 2; }

  /* ───────── CTA strip ───────── */
  .cta-strip {
    background: var(--green-deep);
    color: white;
    border-radius: var(--radius-lg);
    padding: 64px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .cta-strip::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(233, 78, 27, .12);
  }
  .cta-strip h2 { color: white; font-size: 40px; line-height: 1.1; }
  .cta-strip h2 .script { color: var(--orange); display: inline-block; font-size: 1.05em; vertical-align: -2px; }
  .cta-strip p { color: rgba(255,255,255,.78); margin-top: 18px; font-size: 17px; }
  .cta-strip .actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
  .cta-strip .actions .btn { width: 100%; justify-content: center; }
  .cta-strip .btn-primary { background: var(--orange); }
  .cta-strip .btn-ghost-light { background: transparent; color: white; border-color: rgba(255,255,255,.3); }
  .cta-strip .btn-ghost-light:hover { background: rgba(255,255,255,.08); border-color: white; }

  @media (max-width: 980px) {
    .hero-grid, .neighborhood-grid, .cta-strip { grid-template-columns: 1fr; }
    .plans-grid, .amenities-grid, .value-strip .grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
    .gal-1 { grid-column: span 2; grid-row: span 2; }
    .gal-2, .gal-3, .gal-4, .gal-5 { grid-column: span 1; }
    .footer .grid { grid-template-columns: 1fr 1fr; }
    .cta-strip { padding: 40px; }
    section { padding: 64px 0; }
  }
