/* ---------- HERO ---------- */
  .hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; }
  .hero-bg { position: absolute; inset: -12% 0; z-index: 0; }
  .hero .hero-bg.photo--site { background-image: url('../../assets/hero-aerial.jpg'); background-size: cover; background-position: center; }
  .hero .hero-bg .photo-label { display: none; }
  .hero .hero-type { font-size: clamp(34px, 4.2vw, 60px); letter-spacing: -1px; }
  .hero-scrim { position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(30,51,40,.34) 0%, rgba(30,51,40,.12) 38%, rgba(30,51,40,.62) 72%, rgba(30,51,40,.9) 100%); }
  .hero-inner { position: relative; z-index: 2; width: 100%; padding: 150px 0 44px; }
  .hero h1 { color: #fff; max-width: 1080px; }
  .hero-sub { color: rgba(255,255,255,.82); max-width: 560px; margin: 28px 0 0; }
  .hero-ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
  .hero-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 54px; }
  .hero-card { background: rgba(255,255,255,.08); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-md); padding: 24px 24px 26px; transition: background .25s var(--ease), transform .25s var(--ease); }
  .hero-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
  .hero-card-title { color: #fff; font-weight: 700; font-size: 18px; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
  .hero-card-title .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
  .hero-card p { color: rgba(255,255,255,.7); font-size: 14.5px; line-height: 1.55; margin: 0; }
  @media (max-width: 820px){ .hero-cards { grid-template-columns: 1fr; } .hero { min-height: 88vh; } }

  /* ---------- WHY ---------- */
  .why-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: stretch; }
  .why-media { position: relative; border-radius: var(--r-md); overflow: hidden; min-height: 480px; }
  .why-badge { position: absolute; left: 24px; top: 24px; background: var(--accent); color: #fff; border-radius: var(--r-md); padding: 22px 26px; z-index: 3; box-shadow: var(--shadow-md); }
  .why-badge .num { font-size: 46px; font-weight: 800; line-height: 1; letter-spacing: -2px; }
  .why-badge .lbl { font-size: 13px; font-weight: 600; line-height: 1.3; margin-top: 8px; max-width: 130px; }
  .why-list { display: flex; flex-direction: column; gap: 14px; }
  .why-item { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; padding: 22px 24px; border-radius: var(--r-md); border: 1px solid var(--line); background: #fff; transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease); }
  .why-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateX(4px); }
  .why-num { font-size: 26px; font-weight: 800; color: var(--accent); letter-spacing: -1px; min-width: 42px; }
  .why-item h3 { margin: 0 0 6px; font-size: 18px; font-weight: 700; color: var(--forest); }
  .why-item p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--fg-muted); }
  @media (max-width: 920px){ .why-grid { grid-template-columns: 1fr; gap: 32px; } .why-media { min-height: 320px; } }

  /* ---------- SERVICES ---------- */
  .svc-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); gap: 22px; }
  .svc-card { display: grid; grid-template-columns: 88px 1fr; gap: 4px; padding: 0; cursor: pointer; }
  .svc-icon { width: 88px; }
  .svc-icon-inner { width: 64px; height: 64px; border-radius: var(--r-md); background: var(--sage-tint); color: var(--accent); display: flex; align-items: center; justify-content: center; margin: 30px 0 0 28px; transition: background .25s var(--ease), color .25s var(--ease); }
  .svc-card:hover .svc-icon-inner { background: var(--accent); color: #fff; }
  .svc-icon-inner i { width: 30px; height: 30px; }
  .svc-body { padding: 28px 28px 30px 4px; }
  .svc-body .idx { font-size: 13px; font-weight: 700; color: var(--fg-faint); letter-spacing: 1px; }
  .svc-body h3 { margin: 8px 0 10px; font-size: 22px; font-weight: 700; color: var(--forest); }
  .svc-body p { margin: 0 0 16px; font-size: 15px; line-height: 1.58; color: var(--fg-muted); }
  @media (max-width: 820px){ .svc-grid { grid-template-columns: 1fr; } }

  /* ---------- PROCESS / STEPPER ---------- */
  .stepper { margin: 44px 0 40px; }
  .stepper-track { position: relative; display: flex; justify-content: space-between; max-width: 760px; margin: 0 auto; }
  .stepper-track::before { content: ""; position: absolute; left: 22px; right: 22px; top: 21px; height: 2px; background: rgba(255,255,255,.18); }
  .stepper-fill { position: absolute; left: 22px; top: 21px; height: 2px; background: var(--sage); width: 0; transition: width .6s var(--ease); max-width: calc(100% - 44px); }
  .step-dot { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px; cursor: pointer; }
  .step-dot .circle { width: 44px; height: 44px; border-radius: 50%; background: var(--forest-soft); border: 2px solid rgba(255,255,255,.25); color: var(--on-dark-muted); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; transition: all .3s var(--ease); }
  .step-dot.active .circle { background: var(--sage); border-color: var(--sage); color: var(--forest); }
  .step-dot.current .circle { box-shadow: 0 0 0 6px rgba(176,208,128,.22); }
  .step-dot .step-name { font-size: 13px; font-weight: 600; color: var(--on-dark-muted); text-align: center; transition: color .3s; }
  .step-dot.current .step-name { color: #fff; }
  .step-panels { max-width: 720px; margin: 0 auto; position: relative; min-height: 130px; }
  .step-panel { position: absolute; inset: 0; opacity: 0; transform: translateY(12px); transition: opacity .45s var(--ease), transform .45s var(--ease); pointer-events: none; text-align: center; }
  .step-panel.active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
  .step-panel h3 { color: #fff; font-size: 26px; font-weight: 700; margin: 0 0 12px; }
  .step-panel p { color: var(--on-dark-muted); font-size: 17px; line-height: 1.6; margin: 0 auto; max-width: 560px; }
  @media (max-width: 600px){ .step-dot .step-name { display: none; } }

  /* ---------- FEATURED PROJECTS ---------- */
  .proj-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; height: 620px; }
  .proj { position: relative; border-radius: var(--r-md); overflow: hidden; cursor: pointer; }
  .proj:nth-child(1){ grid-row: 1 / 3; }
  .proj-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 26px; }
  .proj-scrim { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, transparent 30%, rgba(30,51,40,.86) 100%); }
  .proj .chip { margin-bottom: 12px; }
  .proj h3 { color: #fff; font-size: 21px; font-weight: 700; margin: 0; }
  .proj p { color: rgba(255,255,255,.74); font-size: 14px; margin: 8px 0 0; max-width: 90%; }
  .proj-arrow { position: absolute; right: 22px; top: 22px; z-index: 3; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .25s, transform .25s; backdrop-filter: blur(4px); }
  .proj:hover .proj-arrow { background: var(--accent); transform: rotate(-45deg); }
  .proj-img { position: absolute; inset: 0; transition: transform .6s var(--ease); }
  .proj:hover .proj-img { transform: scale(1.06); }
  @media (max-width: 820px){ .proj-grid { grid-template-columns: 1fr; grid-template-rows: none; height: auto; } .proj:nth-child(1){ grid-row: auto; } .proj { height: 240px; } }

  /* ---------- TESTIMONIAL ---------- */
  .quote-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: center; }
  .quote-mark { font-size: 120px; line-height: 1; color: var(--accent); font-weight: 800; font-family: Georgia, serif; margin-top: 12px; }
  .quote-text { font-size: 30px; font-weight: 300; line-height: 1.34; color: var(--forest); letter-spacing: -.3px; }
  .quote-by { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
  .quote-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg,#5a7350,#33492f); }
  @media (max-width: 820px){ .quote-wrap { grid-template-columns: 1fr; gap: 24px; } }

  /* ---------- CTA STRIP ---------- */
  .cta-strip { background: var(--forest); border-radius: var(--r-lg); padding: 64px 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden; }
  .cta-strip .cta-mark { position: absolute; right: -40px; bottom: -60px; height: 240px; opacity: .08; }
