.hero {
      padding: clamp(46px, 8vw, 94px) clamp(22px, 5vw, 64px) clamp(54px, 8vw, 96px);
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: clamp(38px, 6vw, 78px);
      align-items: center;
      position: relative;
    }

    .soft-line {
      position: absolute;
      pointer-events: none;
      z-index: 0;
      opacity: .24;
    }

    .soft-line.hero-line {
      width: min(780px, 72vw);
      right: -130px;
      bottom: 48px;
    }

    .soft-line.section-line {
      width: min(920px, 94vw);
      left: -100px;
      bottom: -16px;
      opacity: .18;
    }

    .soft-line.full-line {
      width: 118%;
      left: -9%;
      top: 10px;
      opacity: .14;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--sage-dark);
      font-size: 14px;
      margin-bottom: 22px;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 1px;
      background: var(--sage);
    }

    h1, h2, h3 {
      margin: 0;
      letter-spacing: -.045em;
      line-height: 1.06;
      font-weight: 620;
    }

    h1 {
      max-width: 670px;
      font-size: clamp(36px, 5.6vw, 62px);
    }

    h2 { font-size: clamp(30px, 4.2vw, 48px); }
    h3 { font-size: 22px; }

    .hero-text,
    .portrait-wrap,
    .section-content {
      position: relative;
      z-index: 1;
    }

    .hero-subtitle {
      margin-top: 24px;
      color: var(--muted);
      max-width: 610px;
      font-size: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .hero-note {
      margin-top: 26px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      color: var(--muted);
      font-size: 14px;
    }

    .hero-note span {
      border: 1px solid rgba(37, 37, 33, .10);
      background: rgba(255,255,255,.45);
      border-radius: 999px;
      padding: 8px 12px;
    }

    .portrait-wrap { position: relative; }

    .image-button {
      display: block;
      width: 100%;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: zoom-in;
      text-align: inherit;
    }

    .portrait {
      min-height: 560px;
      border-radius: 34px;
      overflow: hidden;
      background: #d8d9d0;
      border: 1px solid rgba(37,37,33,.10);
      box-shadow: 0 22px 60px rgba(35,35,28,.13);
      position: relative;
    }

    .portrait img {
      width: 100%;
      height: 560px;
      object-fit: cover;
      object-position: center 38%;
      display: block;
    }

    .floating-card {
      position: absolute;
      left: -34px;
      bottom: 32px;
      max-width: 290px;
      background: rgba(255,255,255,.82);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(37,37,33,.10);
      border-radius: 22px;
      padding: 20px;
      box-shadow: 0 16px 46px rgba(35,35,28,.11);
    }

    .floating-card strong {
      display: block;
      font-size: 30px;
      line-height: 1;
      letter-spacing: -.04em;
      margin-bottom: 8px;
      color: var(--sage-dark);
    }

    section {
      padding: clamp(52px, 8vw, 92px) clamp(22px, 5vw, 64px);
      position: relative;
    }

    .section-head {
      max-width: 790px;
      margin-bottom: 34px;
    }

    .section-head p {
      margin-top: 16px;
      color: var(--muted);
      font-size: 17px;
    }

    .two-col {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: clamp(28px, 5vw, 70px);
      align-items: start;
    }

    .lead-card {
      background: var(--paper-2);
      border: 1px solid rgba(37,37,33,.08);
      border-radius: var(--radius-lg);
      padding: clamp(24px, 4vw, 38px);
    }

    .lead-card p + p { margin-top: 16px; }
    .muted { color: var(--muted); }
