    /* ── UTILITY ── */

    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 2.5rem
    }

    .serif {
      font-family: 'Cormorant Garamond', serif
    }

    .rule {
      height: 1px;
      background: var(--border);
      border: none;
      margin: 0
    }

    /* ── HERO ── */
    .hero {
      padding-top: 5.5rem;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 1px solid var(--border);
    }

    .hero-left {
      padding: 5rem 3rem 4rem 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-right: 1px solid var(--border);
      animation: fadeUp 1s ease both;
    }

    .hero-eyebrow {
      font-family: 'Jost', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2rem;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.2rem, 5.5vw, 5.5rem);
      line-height: 1.0;
      font-weight: 300;
      margin-bottom: 2rem;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold)
    }

    .hero-body {
      font-size: 1rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.8;
      max-width: 420px;
      margin-bottom: 3rem;
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
    }

    .stat .n {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.6rem;
      font-weight: 300;
      line-height: 1;
    }

    .stat .l {
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 0.2rem;
    }

    .hero-right {
      background: var(--warm-white);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      animation: fadeUp 1s 0.2s ease both;
    }

    .hero-pattern {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 40px 40px;
      opacity: 0.5;
    }

    .hero-disciplines {
      position: relative;
      z-index: 2;
      padding: 2.5rem 3rem;
      background: var(--ink);
      color: var(--cream);
    }

    .hero-disc-label {
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(247, 243, 237, 0.45);
      margin-bottom: 1.2rem;
    }

    .disc-list {
      display: flex;
      flex-direction: column;
      gap: 0.6rem
    }

    .disc-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 300;
      border-bottom: 1px solid rgba(247, 243, 237, 0.1);
      padding-bottom: 0.6rem;
    }

    .disc-item:last-child {
      border-bottom: none;
      padding-bottom: 0
    }

    .disc-num {
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      color: rgba(247, 243, 237, 0.35);
      min-width: 20px;
    }

    .disc-arrow {
      margin-left: auto;
      color: var(--gold-light);
      font-size: 1rem
    }

    /* ── SECTION SHARED ── */
    .section {
      padding: 5rem 0;
      border-bottom: 1px solid var(--border)
    }

    .section-eyebrow {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 0;
    }

    .section-title em {
      font-style: italic
    }

    /* ── WHY FD DESIGN ── */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-top: 4rem;
      border: 1px solid var(--border);
    }

    .why-card {
      padding: 2.5rem;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s;
    }

    .why-card:nth-child(2n) {
      border-right: none
    }

    .why-card:nth-last-child(-n+2) {
      border-bottom: none
    }

    .why-card:hover {
      background: var(--warm-white)
    }

    .why-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: var(--border-strong);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .why-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 0.8rem;
    }

    .why-card p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.8;
    }

    /* ── ROLES ── */
    .roles-header {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 4rem;
      align-items: end;
      margin-bottom: 3rem;
    }

    .roles-intro {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.8;
      max-width: 480px;
      margin-top: 1.5rem;
    }

    .role-category {
      margin-bottom: 0
    }

    .category-label {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.2rem 0;
      border-top: 1px solid var(--border);
      cursor: pointer;
    }

    .category-label-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 300;
    }

    .category-tag {
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--warm-white);
      color: var(--muted);
      padding: 0.3rem 0.8rem;
      border-radius: 2px;
    }

    .category-tag.primary {
      background: rgba(155, 58, 31, 0.1);
      color: var(--gold)
    }

    .category-chevron {
      margin-left: auto;
      color: var(--muted);
      font-size: 1.2rem;
      transition: transform 0.3s;
    }

    .category-label.open .category-chevron {
      transform: rotate(180deg)
    }

    .roles-grid {
      display: none;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.5px;
      border: 1px solid var(--border);
      margin-bottom: 1px;
    }

    .roles-grid.open {
      display: grid
    }

    .role-card {
      padding: 2rem;
      transition: background 0.25s;
      cursor: default;
      position: relative;
    }

    .role-card:hover {
      background: var(--warm-white)
    }

    .role-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 400;
      margin-bottom: 0.6rem;
      line-height: 1.3;
    }

    .role-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .role-tag {
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.7rem;
      border-radius: 2px;
      border: 1px solid var(--border);
      color: var(--muted);
    }

    .role-tag.type-full {
      border-color: rgba(155, 58, 31, 0.3);
      color: var(--gold)
    }

    .role-tag.type-part {
      border-color: rgba(155, 58, 31, 0.2);
      color: var(--gold-light)
    }

    .role-tag.type-consult {
      border-color: var(--border-strong);
      color: var(--muted)
    }

    .role-desc {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 1.2rem;
    }

    .role-gain {
      font-size: 0.78rem;
      color: var(--ink);
      border-top: 1px solid var(--border);
      padding-top: 1rem;
      line-height: 1.7;
    }

    .role-gain strong {
      font-weight: 500;
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 0.3rem;
    }

    /* ── WHAT WE LOOK FOR ── */
    .traits-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 5rem;
      margin-top: 3rem;
      align-items: start;
    }

    .traits-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 300;
      font-style: italic;
      line-height: 1.45;
      color: var(--ink);
      position: sticky;
      top: 6rem;
    }

    .traits-quote cite {
      display: block;
      margin-top: 1.2rem;
      font-style: normal;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .traits-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .trait-item {
      padding: 1.5rem;
      border: 1px solid var(--border);
    }

    .trait-item:hover {
      background: var(--warm-white)
    }

    .trait-icon {
      font-size: 1.4rem;
      margin-bottom: 0.8rem;
      color: var(--gold);
    }

    .trait-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
      margin-bottom: 0.4rem;
    }

    .trait-desc {
      font-size: 0.83rem;
      color: var(--muted);
      line-height: 1.7
    }

    /* ── CULTURE STRIP ── */
    .culture {
      background: var(--ink);
      color: var(--cream);
      padding: 5rem 0;
    }

    .culture-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 2.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .culture-text .eyebrow {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 1rem;
    }

    .culture-text h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      color: var(--white-warm);
    }

    .culture-text h2 em {
      font-style: italic;
      color: rgba(247, 243, 237, 0.6)
    }

    .culture-text p {
      font-size: 0.93rem;
      color: rgba(247, 243, 237, 0.6);
      line-height: 1.85;
      margin-bottom: 1rem;
    }

    .culture-list {
      list-style: none;
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .culture-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      font-size: 0.88rem;
      color: rgba(247, 243, 237, 0.7);
      line-height: 1.6;
    }

    .culture-list li::before {
      content: '—';
      color: var(--gold-light);
      flex-shrink: 0;
      margin-top: 0.05rem;
    }

    .culture-right {
      border: 1px solid rgba(247, 243, 237, 0.1);
      padding: 2.5rem;
    }

    .culture-right h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
      margin-bottom: 1.5rem;
      color: rgba(247, 243, 237, 0.5);
      letter-spacing: 0.02em;
    }

    .culture-fact {
      padding: 1.2rem 0;
      border-bottom: 1px solid rgba(247, 243, 237, 0.08);
    }

    .culture-fact:last-child {
      border-bottom: none
    }

    .culture-fact .cf-n {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 300;
      color: var(--cream);
      line-height: 1;
    }

    .culture-fact .cf-l {
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(247, 243, 237, 0.4);
      margin-top: 0.2rem;
    }

    /* ── PROCESS ── */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      margin-top: 3.5rem;
      border: 1px solid var(--border);
    }

    .process-step {
      padding: 2rem 1.5rem;
      border-right: 1px solid var(--border);
      position: relative;
    }

    .process-step:last-child {
      border-right: none
    }

    .process-step::after {
      content: '→';
      position: absolute;
      right: -0.7rem;
      top: 2rem;
      color: var(--gold);
      font-size: 0.9rem;
      z-index: 1;
      background: var(--paper);
      padding: 0 0.2rem;
    }

    .process-step:last-child::after {
      display: none
    }

    .ps-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 300;
      color: var(--border-strong);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .ps-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
    }

    .ps-desc {
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.7
    }

    /* ── APPLY ── */
    .apply {
      padding: 6rem 0
    }

    .apply-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .apply-left h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .apply-left h2 em {
      font-style: italic;
      color: var(--gold)
    }

    .apply-left p {
      font-size: 0.93rem;
      color: var(--muted);
      line-height: 1.85;
      margin-bottom: 2rem;
    }

    .apply-channels {
      display: flex;
      flex-direction: column;
      gap: 1rem
    }

    .apply-channel {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      padding: 1.2rem 1.5rem;
      border: 1px solid var(--border);
      text-decoration: none;
      color: var(--ink);
      transition: border-color 0.2s, background 0.2s;
    }

    .apply-channel:hover {
      border-color: var(--gold);
      background: var(--warm-white);
    }

    .ac-icon {
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1rem;
      color: var(--gold);
    }

    .ac-label {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.1rem
    }

    .ac-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400
    }

    .apply-right {
      background: var(--warm-white);
      padding: 2.5rem;
      border: 1px solid var(--border);
    }

    .apply-right h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 300;
      margin-bottom: 0.5rem;
    }

    .apply-right .sub {
      font-size: 0.78rem;
      color: var(--muted);
      margin-bottom: 2rem;
      letter-spacing: 0.02em;
    }

    .form-field {
      margin-bottom: 1.2rem
    }

    .form-field label {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      background: var(--paper);
      border: 1px solid var(--border);
      padding: 0.75rem 1rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--ink);
      outline: none;
      transition: border-color 0.2s;
      appearance: none;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--gold)
    }

    .form-field textarea {
      height: 100px;
      resize: vertical
    }

    .form-field select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7268' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
      cursor: pointer;
    }

    .form-note {
      font-size: 0.75rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 1.5rem;
      padding-top: 0.5rem;
      border-top: 1px solid var(--border);
    }

    .submit-btn {
      width: 100%;
      background: var(--ink);
      color: var(--cream);
      border: none;
      padding: 1rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s;
    }

    .submit-btn:hover {
      background: var(--gold)
    }

    /* ── OPEN NETWORK ── */
    .network {
      background: var(--warm-white);
      padding: 4rem 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .network-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 2.5rem;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .network h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 300;
      line-height: 1.3;
      margin-bottom: 0.8rem;
    }

    .network h2 em {
      font-style: italic
    }

    .network p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.8
    }

    .network-cta {
      display: inline-block;
      padding: 0.9rem 2rem;
      border: 1px solid var(--ink);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--ink);
      transition: background 0.2s, color 0.2s;
      white-space: nowrap;
    }

    .network-cta:hover {
      background: var(--ink);
      color: var(--cream)
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0)
    }

    /* ── RESPONSIVE ── */
    @media(max-width:900px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: auto
      }

      .hero-left {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 5rem 1.5rem 3rem
      }

      .hero-right {
        min-height: 320px
      }

      .hero-disciplines {
        padding: 2rem 1.5rem
      }

      .why-grid {
        grid-template-columns: 1fr
      }

      .why-card {
        border-right: none
      }

      .why-card:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--border)
      }

      .why-card:last-child {
        border-bottom: none
      }

      .roles-header {
        grid-template-columns: 1fr
      }

      .roles-grid {
        grid-template-columns: 1fr
      }

      .traits-layout {
        grid-template-columns: 1fr
      }

      .traits-quote {
        position: static;
        margin-bottom: 2rem
      }

      .traits-grid {
        grid-template-columns: 1fr
      }

      .culture-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem
      }

      .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: var(--border)
      }

      .process-step::after {
        display: none
      }

      .process-step {
        border-right: none
      }

      .apply-inner {
        grid-template-columns: 1fr
      }

      .network-inner {
        grid-template-columns: 1fr
      }

      .container {
        padding: 0 1.5rem
      }

      .section {
        padding: 3.5rem 0
      }
    }

    @media(max-width:600px) {
      .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap
      }

      .hero-title {
        font-size: 2.8rem
      }

      .process-steps {
        grid-template-columns: 1fr
      }

      .footer-inner {
        flex-direction: column;
        text-align: center
      }

      .footer-address {
        text-align: center
      }
    }