  /* ---------- HERO ---------- */
  .hero { min-height: 100vh; display: flex; flex-direction: column; background: var(--white); }
  .hero-copy { text-align: center; padding: clamp(120px, 17vh, 200px) var(--gut) clamp(28px, 4vh, 52px); max-width: 980px; margin: 0 auto; }
  .hero-copy .eyebrow { margin-bottom: 22px; opacity: 0; animation: rise 1s var(--ease) 0.15s forwards; }
  .hero-copy .display { margin-bottom: 42px; line-height: 1.03; opacity: 0; animation: rise 1.1s var(--ease) 0.28s forwards; }
  .hero-copy .lead { max-width: 600px; margin: 0 auto 36px; opacity: 0; animation: rise 1.1s var(--ease) 0.42s forwards; }
  .hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: rise 1.1s var(--ease) 0.56s forwards; }
  @keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
  .hero-media { flex: 1; min-height: 46vh; margin: 0 var(--gut) var(--gut); border-radius: 18px; opacity: 0; animation: fadeIn 1.4s var(--ease) 0.5s forwards; }
  @keyframes fadeIn { from { opacity: 0; transform: scale(0.985); } to { opacity: 1; transform: none; } }

  /* ---------- SIGNATURE COLLECTION ---------- */
  .sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: clamp(40px, 5vw, 64px); flex-wrap: wrap; }
  .sec-head .eyebrow { margin-bottom: 16px; }
  .products { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 30px); }
  .card { display: block; }
  .card-media { position: relative; aspect-ratio: 4/5; border-radius: 14px; margin-bottom: 20px; }
  .card-media img { transition: transform 1.1s var(--ease); }
  .card:hover .card-media.loaded img { transform: scale(1.05); }
  .badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); font-size: 11.5px; font-weight: 500; letter-spacing: 0.02em; padding: 7px 13px; border-radius: 100px; color: var(--ink); }
  .card-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
  .card-name { font-size: 1.32rem; font-weight: 500; letter-spacing: -0.025em; }
  .card-occ { font-size: 13.5px; color: var(--ink-faint); margin-top: 3px; }
  .card-price { font-size: 15px; font-weight: 500; white-space: nowrap; }
  .card-cta { margin-top: 14px; opacity: 0; transform: translateY(6px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
  .card:hover .card-cta { opacity: 1; transform: none; }

  /* ---------- UPSELL ---------- */
  .upsell { background: var(--paper); }
  .upsell-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
  .upsell-media { aspect-ratio: 5/4; border-radius: 16px; }
  .upsell-copy { max-width: 460px; }
  .upsell-copy .title { margin: 16px 0 22px; }
  .feat-list { list-style: none; margin: 30px 0 36px; display: flex; flex-direction: column; }
  .feat-list li { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); align-items: flex-start; }
  .feat-list li:last-child { border-bottom: 1px solid var(--line); }
  .feat-ico { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
  .feat-list b { font-weight: 500; display: block; margin-bottom: 2px; font-size: 16px; }
  .feat-list span { font-size: 14.5px; color: var(--ink-soft); }

  /* ---------- BUILDER PROMO ---------- */
  .builder-promo { position: relative; }
  .bp-card { position: relative; border-radius: 20px; overflow: hidden; min-height: clamp(440px, 60vh, 620px); display: flex; align-items: flex-end; }
  .bp-media { position: absolute; inset: 0; border-radius: 20px; }
  .bp-media::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(10,9,6,0.62) 0%, rgba(10,9,6,0.15) 45%, rgba(10,9,6,0.05) 100%); }
  .bp-inner { position: relative; z-index: 3; padding: clamp(32px, 5vw, 64px); color: #fff; max-width: 640px; }
  .bp-inner .eyebrow { color: rgba(255,255,255,0.72); margin-bottom: 18px; }
  .bp-inner .title { color: #fff; margin-bottom: 18px; }
  .bp-inner p { color: rgba(255,255,255,0.84); font-size: 1.08rem; line-height: 1.5; margin-bottom: 30px; max-width: 480px; }
  .bp-steps { display: flex; gap: 26px; margin-bottom: 34px; flex-wrap: wrap; }
  .bp-step { font-size: 13px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 9px; }
  .bp-step b { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }

  /* ---------- DELIVERY ---------- */
  .delivery { background: var(--paper); }
  .delivery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); margin-top: clamp(44px, 6vw, 72px); }
  .deliv-item .deliv-ico { width: 30px; height: 30px; margin-bottom: 22px; }
  .deliv-item h4 { font-size: 1.18rem; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 10px; }
  .deliv-item p { font-size: 15px; color: var(--ink-soft); max-width: 320px; line-height: 1.55; }

  /* ---------- SOCIAL PROOF ---------- */
  .proof-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
  .quote { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 500; letter-spacing: -0.025em; line-height: 1.18; text-wrap: balance; }
  .quote .faint { color: var(--line-strong); }
  .quote-by { margin-top: 32px; display: flex; align-items: center; gap: 14px; }
  .quote-avatar { width: 46px; height: 46px; border-radius: 100px; }
  .quote-by .n { font-weight: 500; font-size: 15px; }
  .quote-by .r { font-size: 13.5px; color: var(--ink-faint); }
  .proof-media { aspect-ratio: 4/5; border-radius: 16px; }
  .proof-dots { display: flex; gap: 7px; margin-top: 40px; }
  .proof-dots i { width: 7px; height: 7px; border-radius: 100px; background: var(--line-strong); display: block; }
  .proof-dots i.on { background: var(--ink); width: 22px; }

  /* ---------- ABOUT ---------- */
  .about { background: var(--ink); color: #efece4; }
  .about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
  .about-media { aspect-ratio: 4/5; border-radius: 16px; }
  .about-copy .eyebrow { color: rgba(255,255,255,0.55); }
  .about-copy .title { color: #fff; margin: 18px 0 26px; }
  .about-copy p { color: rgba(255,255,255,0.78); font-size: 1.08rem; line-height: 1.62; margin-bottom: 20px; max-width: 520px; }
  .about-sign { font-size: 1.5rem; margin-top: 28px; opacity: 0.9; letter-spacing: -0.02em; }
  .about-stats { display: flex; gap: clamp(32px, 5vw, 64px); margin-top: 40px; }
  .about-stat .num { font-size: 2.4rem; font-weight: 500; letter-spacing: -0.03em; }
  .about-stat .lbl { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }

  @media (max-width: 900px) {
    .products { grid-template-columns: 1fr 1fr; }
    .upsell-grid, .proof-grid, .about-grid { grid-template-columns: 1fr; }
    .delivery-grid { grid-template-columns: 1fr; gap: 36px; }
    .proof-media, .about-media, .upsell-media { max-width: 460px; }
  }
  @media (max-width: 600px) {
    .products { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
  }
