/* ═══════════════════════════════════════════════════════════════
   NextProductBuild — Global Stylesheet
   ──────────────────────────────────────────────────────────────
   Brand colors: edit the :root variables at the very top.
   Font families: Playfair Display (headings) · DM Sans (body)
   ═══════════════════════════════════════════════════════════════ */

/* ── HOME PAGE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0f1f38;
      --navy-mid: #162840;
      --navy-light: #1e3450;
      --cream: #f5f0e8;
      --cream-dark: #ede8df;
      --gold: #c9a84c;
      --gold-light: #e8cc80;
      --gold-pale: rgba(201,168,76,0.12);
      --text-light: #a8b8cc;
      --text-mid: #d0dce8;
      --white: #ffffff;
      --border: rgba(201,168,76,0.18);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--navy);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 60px;
      background: rgba(15,31,56,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,168,76,0.08);
      animation: fadeDown 0.8s ease both;
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.01em;
    }
    .nav-logo span { color: var(--gold); }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-size: 0.8rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-light);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }

    .nav-links .nav-cta {
      background: var(--gold);
      color: var(--navy);
      padding: 10px 22px;
      font-weight: 500;
      letter-spacing: 0.06em;
      transition: background 0.2s;
    }
    .nav-links .nav-cta:hover { background: var(--gold-light); color: var(--navy); }

    /* ── HERO ── */
    .hero {
      min-height: calc(100vh - 150px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 130px 60px 90px;
      position: relative;
      overflow: hidden;
      gap: 60px;
    }

    .grid-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
      background-size: 80px 80px;
      pointer-events: none;
    }

    .hero-glow {
      position: absolute;
      top: -150px; right: -150px;
      width: 650px; height: 650px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-glow-2 {
      position: absolute;
      bottom: -100px; left: 20%;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(30,52,80,0.8) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-divider {
      position: absolute;
      left: 50%; top: 130px; bottom: 90px;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--border) 20%, var(--border) 80%, transparent);
    }

    /* Hero Left */
    .hero-left {
      position: relative;
      z-index: 2;
      animation: fadeUp 1s ease 0.3s both;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
    }
    .eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 1px;
      background: var(--gold);
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 4vw, 3.8rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 24px;
    }
    h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .subheadline {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-light);
      max-width: 480px;
      margin-bottom: 44px;
    }

    .cta-group {
      display: flex;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--navy);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      padding: 15px 30px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
    .btn-primary svg { transition: transform 0.2s; }
    .btn-primary:hover svg { transform: translateX(4px); }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.83rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      color: var(--text-light);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }
    .btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

    /* Hero Right */
    .hero-right {
      position: relative;
      z-index: 2;
      animation: fadeUp 1s ease 0.55s both;
    }

    .about-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      padding: 40px;
      position: relative;
    }
    .about-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 48px; height: 2px;
      background: var(--gold);
    }

    .about-inner {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      margin-bottom: 32px;
    }

    .photo-circle {
      flex-shrink: 0;
      width: 120px; height: 120px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.08));
      border: 2px solid rgba(201,168,76,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--gold);
      overflow: hidden;
    }
    .photo-circle img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: 40% center;
      border-radius: 50%;
    }

    .about-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 3px;
    }
    .about-title {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .about-bio {
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.75;
      color: var(--text-light);
    }

    .pillars {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1px;
      background: var(--border);
    }
    .pillar {
      background: var(--navy);
      padding: 20px 22px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      transition: background 0.2s;
      cursor: default;
    }
    .pillar:hover { background: rgba(255,255,255,0.03); }
    .pillar-num {
      font-family: 'Playfair Display', serif;
      font-size: 0.7rem;
      color: var(--gold);
      opacity: 0.55;
    }
    .pillar-label {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--text-mid);
      line-height: 1.35;
    }

    /* ── SECTION SHARED ── */
    section {
      padding: 110px 60px;
      position: relative;
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }
    .section-eyebrow::before {
      content: '';
      display: block;
      width: 24px; height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 700;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 16px;
    }
    .section-title em { font-style: italic; color: var(--gold); }

    .section-sub {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-light);
      max-width: 560px;
      margin-bottom: 60px;
    }

    /* ── WHO I WORK WITH ── */
    .who-section {
      background: var(--navy-mid);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding-top: 110px;
    }

    .who-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
    }

    .who-card {
      background: var(--navy-mid);
      padding: 44px 36px;
      position: relative;
      transition: background 0.25s;
    }
    .who-card:hover { background: var(--navy-light); }

    .who-icon {
      width: 40px; height: 40px;
      margin-bottom: 24px;
      opacity: 0.7;
    }

    .who-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 14px;
    }

    .who-card-desc {
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.75;
      color: var(--text-light);
    }

    .who-card-tag {
      display: inline-block;
      margin-top: 20px;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.3);
      padding: 4px 10px;
    }

    /* ── SERVICES ── */
    .services-section {}

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
    }

    .service-card {
      background: var(--navy);
      padding: 48px 40px;
      position: relative;
      display: flex;
      flex-direction: column;
      transition: background 0.25s;
    }
    .service-card:hover { background: var(--navy-light); }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: transparent;
      transition: background 0.25s;
    }
    .service-card:hover::before { background: var(--gold); }

    .service-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--gold);
      opacity: 0.15;
      line-height: 1;
      margin-bottom: 24px;
    }

    .service-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .service-desc {
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-light);
      flex: 1;
      margin-bottom: 28px;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      transition: gap 0.2s;
    }
    .service-link:hover { gap: 14px; }

    /* ── TESTIMONIALS ── */
    .testimonials-section {
      background: var(--navy-mid);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
    }

    .testimonial-card {
      background: var(--navy-mid);
      padding: 44px 36px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .quote-mark {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      line-height: 0.8;
      color: var(--gold);
      opacity: 0.25;
    }

    .testimonial-text {
      font-size: 0.92rem;
      font-weight: 300;
      font-style: italic;
      line-height: 1.8;
      color: var(--text-mid);
      flex: 1;
    }

    .testimonial-placeholder {
      font-size: 0.85rem;
      font-weight: 300;
      font-style: italic;
      line-height: 1.8;
      color: rgba(168,184,204,0.4);
      flex: 1;
      border: 1px dashed rgba(201,168,76,0.15);
      padding: 20px;
      display: flex;
      align-items: center;
    }

    .testimonial-author {
      border-top: 1px solid var(--border);
      padding-top: 18px;
    }
    .testimonial-name {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 3px;
    }
    .testimonial-role {
      font-size: 0.75rem;
      font-weight: 300;
      color: var(--text-light);
      letter-spacing: 0.04em;
    }

    /* ── ABOUT ── */
    .about-section {
      display: flex;
      flex-direction: column;
      padding: 80px 60px;
      background: var(--navy-mid);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .about-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 60px;
    }

    .about-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .about-photo-large {
      width: 240px; height: 240px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.05));
      border: 2px solid rgba(201,168,76,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      color: var(--gold);
      position: relative;
      z-index: 1;
      overflow: hidden;
    }
    .about-photo-large img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: 40% center;
      border-radius: 50%;
    }

    .about-content {
      max-width: 600px;
      margin: 0 auto;
      text-align: left;
    }

    .about-content p {
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.85;
      color: var(--text-light);
      margin-bottom: 18px;
    }
    .about-content p:last-of-type { margin-bottom: 36px; }

    .credentials {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .credential {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.82rem;
      font-weight: 400;
      color: var(--text-mid);
    }
    .credential::before {
      content: '';
      display: block;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* ── CONTACT ── */
    .contact-section {
      background: var(--cream);
      padding: 110px 60px;
    }

    .contact-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .contact-container .section-eyebrow {
      color: var(--navy);
      justify-content: center;
    }
    .contact-container .section-eyebrow::before { background: var(--navy); }

    .contact-container .section-title {
      color: var(--navy);
      margin-bottom: 20px;
    }
    .contact-container .section-title em { color: var(--gold); }

    .contact-container .section-sub {
      color: #5a6a7a;
      margin-bottom: 48px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .dubsado-form {
      margin-top: 40px;
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      max-width: 1100px;
      margin: 0 auto;
    }

    .contact-left .section-eyebrow { color: var(--navy); }
    .contact-left .section-eyebrow::before { background: var(--navy); }

    .contact-left .section-title { color: var(--navy); }
    .contact-left .section-title em { color: var(--gold); }
    .contact-left .section-sub { color: #5a6a7a; margin-bottom: 36px; }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.88rem;
      color: #5a6a7a;
      margin-bottom: 12px;
    }
    .contact-detail a { color: var(--navy); text-decoration: none; font-weight: 500; }
    .contact-detail a:hover { color: var(--gold); }

    /* Form */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-group label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #5a6a7a;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: white;
      border: 1px solid #d5cfc5;
      padding: 13px 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--navy);
      outline: none;
      transition: border-color 0.2s;
      appearance: none;
      border-radius: 0;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }

    .form-submit {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--navy);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      padding: 16px 32px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      margin-top: 6px;
      align-self: flex-start;
    }
    .form-submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }
    .form-submit svg { transition: transform 0.2s; }
    .form-submit:hover svg { transform: translateX(4px); }

    /* ── FOOTER ── */
    footer {
      background: #080f1c;
      border-top: 1px solid rgba(201,168,76,0.1);
      padding: 40px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
    }
    .footer-logo span { color: var(--gold); }

    .footer-copy {
      font-size: 0.75rem;
      color: rgba(168,184,204,0.5);
      letter-spacing: 0.04em;
    }

    .footer-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }
    .footer-links a {
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(168,184,204,0.5);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold); }

    /* ── HAMBURGER TOGGLE BUTTON ── */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      background: none;
      border: 1px solid rgba(201,168,76,0.3);
      cursor: pointer;
      padding: 10px;
      z-index: 300;
      flex-shrink: 0;
    }
    .nav-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--white);
      border-radius: 1px;
      transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
      transform-origin: center;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

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

    /* ── RESPONSIVE ── */
    @media (max-width: 1000px) {
      nav { padding: 18px 30px; }
      .hero { grid-template-columns: 1fr; padding: 90px 30px 70px; gap: 50px; }
      .hero-divider { display: none; }
      section { padding: 80px 30px; }
      .who-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
      .about-section { grid-template-columns: 1fr; }
      .about-visual { min-height: 320px; }
      .about-content { padding: 60px 30px; }
      .contact-inner { grid-template-columns: 1fr; gap: 50px; }
      .form-row { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 20px; text-align: center; }
      .pillars { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      /* Show hamburger, collapse nav links into slide-down panel */
      .nav-toggle { display: flex; }

      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(11,24,46,0.98);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
      }
      .nav-links.open { max-height: 480px; }

      .nav-links li {
        border-bottom: 1px solid rgba(201,168,76,0.08);
      }
      .nav-links a {
        display: block;
        padding: 15px 28px;
        font-size: 0.88rem;
        letter-spacing: 0.08em;
      }
      .nav-links .nav-cta {
        background: none;
        color: var(--gold);
        padding: 15px 28px;
      }
      .nav-links .nav-cta:hover {
        background: rgba(201,168,76,0.08);
        color: var(--gold-light);
      }

      /* Hamburger → X when open */
      nav.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }
      nav.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
        width: 0;
      }
      nav.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }
    }

/* ── INNER PAGES — consulting, coaching (shared components) ── */
/* boilerplate (*, :root, html, body, @keyframes, .reveal) already defined above */

    /* adds .active highlight to nav for inner pages */
    .nav-links a:hover, .nav-links a.active { color: var(--gold); }

    /* ── PAGE HERO ── */
    .page-hero {
      padding: 150px 60px 90px;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }
    .hero-glow {
      position: absolute; top: -150px; right: -100px;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
      pointer-events: none;
    }
    .page-hero-inner {
      position: relative; z-index: 2;
      max-width: 760px;
      animation: fadeUp 1s ease 0.2s both;
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text-light); margin-bottom: 24px;
    }
    .breadcrumb a { color: var(--gold); text-decoration: none; }
    .breadcrumb a:hover { color: var(--gold-light); }
    .breadcrumb span { color: var(--text-light); }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px;
    }
    .eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 4vw, 3.8rem);
      font-weight: 700; line-height: 1.1; color: var(--white); margin-bottom: 24px;
    }
    h1 em { font-style: italic; color: var(--gold); }

    .page-hero-sub {
      font-size: 1.05rem; font-weight: 300; line-height: 1.8;
      color: var(--text-light); max-width: 620px; margin-bottom: 44px;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--gold); color: var(--navy);
      font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500;
      letter-spacing: 0.05em; padding: 15px 30px; border: none; cursor: pointer;
      text-decoration: none; transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
    .btn-primary svg { transition: transform 0.2s; }
    .btn-primary:hover svg { transform: translateX(4px); }

    /* ── SECTIONS ── */
    section { padding: 100px 60px; position: relative; }

    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 18px;
    }
    .section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 2.8vw, 2.5rem);
      font-weight: 700; line-height: 1.15; color: var(--white); margin-bottom: 16px;
    }
    .section-title em { font-style: italic; color: var(--gold); }

    .section-sub {
      font-size: 1rem; font-weight: 300; line-height: 1.8;
      color: var(--text-light); max-width: 580px; margin-bottom: 56px;
    }

    /* ── HOW IT WORKS ── */
    .how-section { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

    .models-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
      background: var(--border);
      align-items: stretch;
    }

    .model-card {
      background: var(--navy-mid); padding: 56px 52px;
      position: relative; transition: background 0.25s;
    }
    .model-card:hover { background: var(--navy-light); }
    .model-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 2px; background: transparent; transition: background 0.25s;
    }
    .model-card:hover::before { background: var(--gold); }

    .model-num {
      font-family: 'Playfair Display', serif;
      font-size: 3rem; font-weight: 700; color: var(--gold);
      opacity: 0.12; line-height: 1; margin-bottom: 20px;
    }
    .model-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 16px;
    }
    .model-desc {
      font-size: 0.95rem; font-weight: 300; line-height: 1.8;
      color: var(--text-light); margin-bottom: 32px;
    }
    .model-tag {
      display: inline-block; font-size: 0.7rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--gold);
      border: 1px solid rgba(201,168,76,0.3); padding: 5px 12px; margin-bottom: 32px;
    }

    .deliverables-label {
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 14px; opacity: 0.7;
    }
    .deliverables-list {
      display: flex; flex-direction: column; gap: 10px;
    }
    .deliverable-item {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 0.88rem; font-weight: 300; line-height: 1.5; color: var(--text-mid);
    }
    .deliverable-item::before {
      content: ''; display: block; width: 5px; height: 5px; border-radius: 50%;
      background: var(--gold); flex-shrink: 0; margin-top: 7px;
    }

    /* ── WHO IT'S FOR ── */
    .who-section { }

    .who-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; background: var(--border);
    }
    .who-card {
      background: var(--navy); padding: 40px 36px;
      transition: background 0.25s;
    }
    .who-card:hover { background: var(--navy-light); }
    .who-icon { margin-bottom: 20px; opacity: 0.75; }
    .who-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px;
    }
    .who-card-desc {
      font-size: 0.88rem; font-weight: 300; line-height: 1.75; color: var(--text-light);
    }

    /* ── PROCESS ── */
    .process-section { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

    .process-steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 2px; background: var(--border);
    }
    .process-step {
      background: var(--navy-mid); padding: 44px 36px;
      position: relative; transition: background 0.25s;
    }
    .process-step:hover { background: var(--navy-light); }
    .step-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem; font-weight: 700; color: var(--gold);
      opacity: 0.15; line-height: 1; margin-bottom: 16px;
    }
    .step-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px;
    }
    .step-desc {
      font-size: 0.86rem; font-weight: 300; line-height: 1.75; color: var(--text-light);
    }

    /* ── TESTIMONIAL ── */
    .testimonial-section { }

    .testimonial-featured {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      padding: 60px;
      position: relative; max-width: 900px; margin: 0 auto;
    }
    .testimonial-featured::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 60px; height: 2px; background: var(--gold);
    }
    .quote-large {
      font-family: 'Playfair Display', serif;
      font-size: 5rem; line-height: 0.8; color: var(--gold); opacity: 0.2;
      margin-bottom: 8px;
    }
    .testimonial-featured-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; font-style: italic; font-weight: 400;
      line-height: 1.75; color: var(--text-mid); margin-bottom: 36px;
    }
    .testimonial-featured-author {
      display: flex; align-items: center; gap: 20px;
      border-top: 1px solid var(--border); padding-top: 28px;
    }
    .author-name { font-size: 0.95rem; font-weight: 500; color: var(--white); margin-bottom: 4px; }
    .author-role { font-size: 0.8rem; font-weight: 300; color: var(--text-light); }

    /* ── CTA SECTION ── */
    .cta-section {
      background: var(--navy-mid);
      border-top: 1px solid var(--border);
      text-align: center;
      padding: 100px 60px;
    }
    .cta-section .section-eyebrow { justify-content: center; }
    .cta-section .section-eyebrow::before { display: none; }
    .cta-section .section-title { max-width: 600px; margin: 0 auto 16px; }
    .cta-section .section-sub { margin: 0 auto 44px; text-align: center; }

    /* ── FOOTER ── */
    footer {
      background: #080f1c;
      border-top: 1px solid rgba(201,168,76,0.1);
      padding: 40px 60px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .footer-logo { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); text-decoration: none; }
    .footer-logo span { color: var(--gold); }
    .footer-copy { font-size: 0.75rem; color: rgba(168,184,204,0.5); letter-spacing: 0.04em; }
    .footer-links { display: flex; gap: 28px; list-style: none; }
    .footer-links a { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(168,184,204,0.5); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1000px) {
      nav { padding: 18px 30px; }
      .page-hero { padding: 110px 30px 70px; }
      section { padding: 70px 30px; }
      .models-grid { grid-template-columns: 1fr; }
      .who-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .testimonial-featured { padding: 40px 30px; }
      footer { flex-direction: column; gap: 20px; text-align: center; }
    }
    @media (max-width: 768px) {
      .nav-toggle { display: flex; }
      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(11,24,46,0.98);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
      }
      .nav-links.open { max-height: 480px; }
      .nav-links li { border-bottom: 1px solid rgba(201,168,76,0.08); }
      .nav-links a { display: block; padding: 15px 28px; font-size: 0.88rem; letter-spacing: 0.08em; }
      .nav-links .nav-cta { background: none; color: var(--gold); padding: 15px 28px; }
      .nav-links .nav-cta:hover { background: rgba(201,168,76,0.08); color: var(--gold-light); }
      nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; width: 0; }
      nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    }
    @media (max-width: 600px) {
      .process-steps { grid-template-columns: 1fr; }
    }

/* ── HIRING PAGE ── */

    /* DIFFERENCE */
    .difference-section { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .difference-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); }
    .difference-card { background: var(--navy-mid); padding: 48px 44px; position: relative; transition: background 0.25s; }
    .difference-card:hover { background: var(--navy-light); }
    .difference-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background 0.25s; }
    .difference-card:hover::before { background: var(--gold); }
    .difference-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
    .difference-desc { font-size: 0.92rem; font-weight: 300; line-height: 1.8; color: var(--text-light); }

    /* PROCESS */
    .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); }
    .process-card { background: var(--navy); padding: 44px 36px; position: relative; transition: background 0.25s; }
    .process-card:hover { background: var(--navy-light); }
    .process-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); opacity: 0.15; line-height: 1; margin-bottom: 16px; }
    .process-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
    .process-desc { font-size: 0.86rem; font-weight: 300; line-height: 1.75; color: var(--text-light); }

    /* APART */
    .apart-section { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .apart-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); }
    .apart-card { background: var(--navy-mid); padding: 48px 44px; display: flex; gap: 24px; align-items: flex-start; transition: background 0.25s; }
    .apart-card:hover { background: var(--navy-light); }
    .apart-icon { flex-shrink: 0; width: 44px; height: 44px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
    .apart-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
    .apart-desc { font-size: 0.88rem; font-weight: 300; line-height: 1.75; color: var(--text-light); }

    /* PRICING */
    .pricing-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 60px; max-width: 780px; position: relative; }
    .pricing-card::before { content: ''; position: absolute; top: 0; left: 0; width: 60px; height: 2px; background: var(--gold); }
    .pricing-headline { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
    .pricing-fee { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; line-height: 1; }
    .pricing-fee-label { font-size: 0.82rem; font-weight: 300; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 28px; }
    .pricing-desc { font-size: 0.95rem; font-weight: 300; line-height: 1.8; color: var(--text-light); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
    .pricing-note { font-size: 0.88rem; font-weight: 300; line-height: 1.75; color: var(--text-light); }

    /* CTA */
    .cta-section { background: var(--navy-mid); border-top: 1px solid var(--border); text-align: center; padding: 100px 60px; }
    .cta-section .section-eyebrow { justify-content: center; }
    .cta-section .section-eyebrow::before { display: none; }
    .cta-section .section-title { max-width: 600px; margin: 0 auto 16px; }
    .cta-section .section-sub { margin: 0 auto 44px; text-align: center; }

    @media (max-width: 1000px) {
      .difference-grid, .apart-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: 1fr 1fr; }
      .pricing-card { padding: 40px 30px; }
    }
    @media (max-width: 768px) {
      .nav-toggle { display: flex; }
      .nav-links {
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; gap: 0;
        background: rgba(11,24,46,0.98); backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
      }
      .nav-links.open { max-height: 480px; }
      .nav-links li { border-bottom: 1px solid rgba(201,168,76,0.08); }
      .nav-links a { display: block; padding: 15px 28px; font-size: 0.88rem; letter-spacing: 0.08em; }
      .nav-links .nav-cta { background: none; color: var(--gold); padding: 15px 28px; }
      .nav-links .nav-cta:hover { background: rgba(201,168,76,0.08); color: var(--gold-light); }
      nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; width: 0; }
      nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    }
    @media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }
