:root {
    --cream: #FAF7F2;
    --warm-white: #FFFFFF;
    --sand: #E8DFD0;
    --gold: #C4A96A;
    --gold-light: #D4BC8A;
    --taupe: #9C8C7A;
    --text-dark: #2C2420;
    --text-mid: #5A4E46;
    --text-light: #8C7E74;
    --accent-green: #6B8C6A;
    --border: rgba(196,169,106,0.25);
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    background: linear-gradient(135deg, #2C2420 0%, #4A3C34 40%, #6B5A4E 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 40px;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(196,169,106,0.12) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 20%, rgba(196,169,106,0.08) 0%, transparent 50%);
  }
  .hero-badge {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(196,169,106,0.4);
    padding: 8px 20px;
    border-radius: 2px;
    margin-bottom: 40px;
    position: relative;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 300;
    color: #FAF7F2;
    line-height: 1.05;
    margin-bottom: 16px;
    position: relative;
    animation: fadeUp 0.8s ease 0.15s forwards;
    opacity: 0;
  }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.55);
    margin-bottom: 60px;
    animation: fadeUp 0.8s ease 0.3s forwards;
    opacity: 0;
  }
  .hero-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    animation: fadeUp 0.8s ease 0.45s forwards;
    opacity: 0;
  }
  .hero-stat { text-align: center; }
  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--gold);
    display: block;
    line-height: 1;
  }
  .hero-stat-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.45);
    margin-top: 6px;
    display: block;
  }
  .hero-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    margin: 60px auto 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
    opacity: 0;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── PROJECT PHOTOS ── */
  .photos-section {
    background: var(--text-dark);
    padding: 0;
  }
  .photos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }
  .photo-item {
    overflow: hidden;
    background: #1a1210;
  }
  .photo-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
  }
  .photo-item:hover img { transform: scale(1.02); }
  .photo-item.full {
    grid-column: 1 / -1;
  }
  .photo-item.full img {
    width: 100%;
    height: auto;
    display: block;
  }
  .photo-label {
    background: rgba(44,36,32,0.92);
    padding: 10px 18px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }

  /* ── SECTIONS ── */
  section {
    padding: 100px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
  }
  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 32px;
    color: var(--text-dark);
  }
  h2 em { font-style: italic; color: var(--taupe); }
  p {
    font-size: 15px;
    color: var(--text-mid);
    max-width: 640px;
    line-height: 1.85;
  }

  /* ── INTRO BAND ── */
  .intro-band {
    background: var(--warm-white);
    padding: 80px 40px;
  }
  .intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .intro-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.5;
    border-left: 2px solid var(--gold);
    padding-left: 32px;
  }

  /* ── FLOOR PLANS SECTION ── */
  .floorplan-section {
    background: var(--sand);
    padding: 100px 40px;
  }
  .floorplan-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  /* 3D visualizations – full width, no crop */
  .vis3d-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 48px 0 56px;
    align-items: start;
  }
  .vis3d-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }
  .vis3d-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  .vis3d-caption {
    padding: 16px 20px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    border-top: 1px solid var(--border);
    background: var(--warm-white);
  }

  /* Full floor plan overview */
  .full-plan-wrap {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 48px;
  }
  .full-plan-header {
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    background: var(--warm-white);
  }
  .full-plan-wrap img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* EG 3D visualization */
  .eg3d-wrap {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 48px;
  }
  .eg3d-wrap img,
  .eg3d-wrap video {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Floor plan data grid */
  .floorplan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .floor-card {
    background: var(--warm-white);
    border-radius: 4px;
    padding: 28px 24px;
    border: 1px solid var(--border);
  }
  .floor-card-title {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
  }
  .floor-room {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 13px;
  }
  .floor-room:last-child { border-bottom: none; }
  .floor-room-name { color: var(--text-mid); }
  .floor-room-size { color: var(--text-dark); font-weight: 500; font-size: 12px; }

  /* ── FEATURES ── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
  }
  .feature-item {
    padding: 32px 28px;
    background: var(--warm-white);
    border-radius: 4px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  }
  .feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
  }
  .feature-icon { font-size: 28px; margin-bottom: 16px; display: block; }
  .feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--text-dark);
  }
  .feature-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: none;
  }

  /* ── AUDIENCE ── */
  .audience-section {
    background: var(--text-dark);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
  }
  .audience-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,169,106,0.06) 0%, transparent 70%);
  }
  .audience-inner { max-width: 1100px; margin: 0 auto; }
  .audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 60px;
  }
  .audience-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(196,169,106,0.2);
    border-radius: 6px;
    padding: 48px 40px;
  }
  .audience-card-type {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
  }
  .audience-card-type::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
  }
  .audience-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: #FAF7F2;
    margin-bottom: 24px;
    line-height: 1.2;
  }
  .audience-card h3 em { font-style: italic; color: var(--gold-light); }
  .benefit-list { list-style: none; margin-top: 24px; }
  .benefit-list li {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
    color: rgba(250,247,242,0.72);
    line-height: 1.6;
  }
  .benefit-list li:last-child { border-bottom: none; }
  .benefit-list li::before {
    content: '—';
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* ── HIGHLIGHT BAR ── */
  .highlight-bar {
    background: var(--gold);
    padding: 32px 40px;
    text-align: center;
  }
  .highlight-bar p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    max-width: none;
    margin: 0 auto;
  }

  /* ── LOCATION ── */
  .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 48px;
  }
  .poi-list { display: flex; flex-direction: column; gap: 12px; }
  .poi-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--warm-white);
    border-radius: 4px;
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-mid);
  }
  .poi-icon { font-size: 18px; flex-shrink: 0; }

  /* ── FINANCING ── */
  .financing-section {
    background: linear-gradient(135deg, #F5F0E8 0%, #EDE5D8 100%);
    padding: 100px 40px;
  }
  .financing-inner { max-width: 1100px; margin: 0 auto; }
  .financing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .fin-card {
    background: var(--warm-white);
    border-radius: 4px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    text-align: center;
  }
  .fin-card-icon { font-size: 32px; display: block; margin-bottom: 16px; }
  .fin-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
  }
  .fin-card-desc { font-size: 13px; color: var(--text-light); line-height: 1.7; }

  /* ── CONTACT ── */
  .contact-section {
    background: var(--warm-white);
    padding: 80px 40px;
    text-align: center;
  }
  .contact-inner { max-width: 680px; margin: 0 auto; }
  .contact-inner h2 { text-align: center; }
  .contact-inner p { margin: 0 auto 40px; text-align: center; max-width: 480px; }
  .cta-btn {
    display: inline-block;
    padding: 16px 48px;
    background: var(--text-dark);
    color: var(--gold);
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s ease;
  }
  .cta-btn:hover { background: #3E3028; }

  /* ── FOOTER ── */
  footer {
    background: var(--text-dark);
    padding: 40px;
    text-align: center;
  }
  footer p {
    font-size: 12px;
    color: rgba(250,247,242,0.3);
    max-width: none;
    text-align: center;
    margin: 0 auto;
    letter-spacing: 0.1em;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0.15em;
  }

  /* ── ORNAMENT ── */
  .ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
  }
  .ornament span { width: 80px; height: 1px; background: var(--border); }
  .ornament-diamond {
    width: 6px; height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
  }

  @media (max-width: 768px) {
    .intro-inner, .audience-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
    .features-grid, .financing-cards { grid-template-columns: 1fr; }
    .floorplan-grid { grid-template-columns: 1fr 1fr; }
    .vis3d-grid { grid-template-columns: 1fr; }
    .photos-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 30px; }
    section, .financing-section, .floorplan-section { padding: 60px 24px; }
    .audience-section { padding: 60px 24px; }
    .intro-band { padding: 60px 24px; }
  }
  @media (max-width: 480px) {
    .floorplan-grid { grid-template-columns: 1fr; }
  }