
  :root {
    --purple: #582a72;
    --purple-dark: #3a1a4e;
    --purple-deeper: #1e0c2a;
    --green-dark: #223915;
    --green-mid: #44722a;
    --gold: #a99639;
    --gold-light: #c9b84a;
    --cream: #f5f0e8;
    --off-white: #faf8f4;
    --text-dark: #1a1208;
    --text-mid: #3d3020;
    --ink: #1a0f2e;
    --ink-mid: #3d3020;
    --ink-light: rgba(30,12,42,0.45);
    --paper: #faf8f4;
    --rule: rgba(88,42,114,0.15);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 3rem;
    background: rgba(30, 12, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(169,150,57,0.25);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.02em;
  }
  .nav-logo span { color: var(--gold); }

  /* ── TOP-LEVEL NAV ── */
  .nav-links {
    display: flex; gap: 0; list-style: none; align-items: center;
  }
  .nav-links > li > a {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(245,240,232,0.7); text-decoration: none;
    transition: color 0.2s;
    padding: 0.5rem 1.1rem;
    display: flex; align-items: center; gap: 0.35rem;
    white-space: nowrap;
  }
  .nav-links > li > a:hover { color: var(--gold-light); }
  .nav-links > li > a[aria-current="page"] { color: var(--gold-light); }

  .nav-arrow {
    font-size: 0.45rem;
    opacity: 0.5;
    transition: transform 0.2s;
    display: inline-block;
  }
  .has-dropdown:hover .nav-arrow,
  .has-dropdown.dropdown-open .nav-arrow { transform: rotate(180deg); opacity: 1; }

  /* ── DROPDOWN ── */
  .has-dropdown { position: relative; }

  .nav-dropdown {
    display: none;
    position: absolute; top: calc(100% + 1px); left: 0;
    min-width: 210px;
    background: rgba(20, 8, 30, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(169,150,57,0.2);
    border-top: 2px solid var(--gold);
    list-style: none;
    padding: 0.5rem 0;
    z-index: 200;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  }
  .nav-dropdown li a {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(245,240,232,0.65); text-decoration: none;
    display: block; padding: 0.7rem 1.4rem;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
  }
  .nav-dropdown li a:hover {
    color: var(--gold-light);
    background: rgba(169,150,57,0.08);
  }
  .nav-dropdown li a[aria-current="page"] { color: var(--gold-light); }

  .has-dropdown:hover .nav-dropdown,
  .has-dropdown.dropdown-open .nav-dropdown { display: block; }

  /* ── CTA BUTTON ── */
  .nav-cta {
    background: var(--gold);
    color: var(--purple-deeper) !important;
    padding: 0.55rem 1.3rem !important;
    font-weight: 500 !important;
    border-radius: 2px;
    transition: background 0.2s !important;
    margin-left: 0.8rem;
  }
  .nav-cta:hover { background: var(--gold-light) !important; color: var(--purple-deeper) !important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: var(--purple-deeper);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
  }

  /* Geometric background pattern */
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(169,150,57,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(169,150,57,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  /* Gold diagonal accent */
  .hero::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -20%;
    width: 70%;
    height: 140%;
    background: linear-gradient(135deg, var(--purple-dark) 0%, #2e1040 60%, transparent 100%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  }

  .hero-left {
    padding: 8rem 3rem 6rem 5rem;
    position: relative; z-index: 2;
    animation: fadeSlideUp 0.9s ease both;
  }

  .hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: inline-block; width: 40px; height: 1px;
    background: var(--gold);
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700; line-height: 1.05;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    font-size: 1.05rem; font-weight: 300; line-height: 1.7;
    color: rgba(245,240,232,0.7);
    max-width: 440px;
    margin-bottom: 2.5rem;
  }

  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--gold);
    color: var(--purple-deeper);
    padding: 0.9rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em;
    text-decoration: none; border-radius: 2px;
    transition: all 0.2s;
    border: 2px solid var(--gold);
  }
  .btn-primary:hover {
    background: transparent;
    color: var(--gold);
  }

  .btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent;
    color: var(--cream);
    padding: 0.9rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem; font-weight: 400; letter-spacing: 0.04em;
    text-decoration: none; border-radius: 2px;
    border: 1px solid rgba(245,240,232,0.3);
    transition: all 0.2s;
  }
  .btn-secondary:hover {
    border-color: var(--cream);
    background: rgba(245,240,232,0.05);
  }

  .hero-right {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; justify-content: center;
    padding: 8rem 5rem 6rem 2rem;
    animation: fadeSlideUp 0.9s 0.2s ease both;
  }

  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px;
    background: rgba(169,150,57,0.2);
    border: 1.5px solid rgba(169,150,57,0.2);
  }

  .stat-box {
    background: rgba(30,12,42,0.8);
    padding: 2rem 2rem;
    transition: background 0.2s;
  }
  .stat-box:hover { background: rgba(58,26,78,0.9); }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem; font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(245,240,232,0.5);
  }

  .hero-badge {
    margin-top: 2rem;
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(68,114,42,0.15);
    border: 1px solid rgba(68,114,42,0.4);
    border-left: 3px solid var(--green-mid);
  }
  .badge-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
  }
  .badge-text {
    font-size: 0.82rem; line-height: 1.5;
    color: rgba(245,240,232,0.75);
  }
  .badge-text strong {
    color: var(--cream);
    font-weight: 600;
    display: block; margin-bottom: 0.1rem;
  }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--green-dark);
    padding: 1.2rem 5rem;
    display: flex; align-items: center; justify-content: center; gap: 3rem;
    flex-wrap: wrap;
    border-top: 2px solid var(--gold);
  }
  .trust-item {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(245,240,232,0.6);
    display: flex; align-items: center; gap: 0.6rem;
  }
  .trust-item::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.5rem;
  }

  /* ─── SERVICES ─── */
  .services {
    padding: 7rem 5rem;
    background: var(--off-white);
  }

  .section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 4rem;
    gap: 2rem;
  }

  .section-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 0.7rem;
    display: flex; align-items: center; gap: 0.7rem;
  }
  .section-eyebrow::before {
    content: '';
    display: inline-block; width: 30px; height: 1px;
    background: var(--purple);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 700; line-height: 1.1;
    color: var(--purple-deeper);
  }
  .section-title em {
    font-style: italic;
    color: var(--green-mid);
  }

  .section-link {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--purple);
    text-decoration: none;
    white-space: nowrap;
    display: flex; align-items: center; gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--purple);
    transition: gap 0.2s;
  }
  .section-link:hover { gap: 0.9rem; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(88,42,114,0.1);
  }

  .service-card {
    background: var(--off-white);
    padding: 2.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }

  .service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .service-card:hover { background: var(--cream); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-card.featured {
    background: var(--purple-deeper);
    grid-column: span 1;
  }
  .service-card.featured .service-num,
  .service-card.featured .service-title,
  .service-card.featured .service-desc { color: var(--cream); }
  .service-card.featured .service-desc { color: rgba(245,240,232,0.65); }
  .service-card.featured::before { background: var(--gold); }

  .service-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem; letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 2rem;
    display: block;
  }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: block;
  }

  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--purple-deeper);
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }

  .service-desc {
    font-size: 0.9rem; line-height: 1.7; font-weight: 300;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
  }

  .service-tags {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
  }
  .tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    background: rgba(88,42,114,0.08);
    color: var(--purple);
    border-radius: 1px;
  }
  .service-card.featured .tag {
    background: rgba(169,150,57,0.15);
    color: var(--gold-light);
  }

  /* ─── WHY PIRUM ─── */
  .why {
    padding: 7rem 5rem;
    background: var(--purple-deeper);
    position: relative;
    overflow: hidden;
  }

  .why::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 40%; height: 100%;
    background: linear-gradient(to left, rgba(88,42,114,0.3), transparent);
  }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative; z-index: 1;
  }

  .why-left .section-title { color: var(--cream); }
  .why-left .section-eyebrow { color: var(--gold); }
  .why-left .section-eyebrow::before { background: var(--gold); }

  .why-intro {
    font-size: 1rem; line-height: 1.8; font-weight: 300;
    color: rgba(245,240,232,0.7);
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .why-pillars {
    display: flex; flex-direction: column; gap: 0;
  }

  .pillar {
    display: flex; gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(169,150,57,0.15);
    align-items: flex-start;
  }
  .pillar:first-child { border-top: 1px solid rgba(169,150,57,0.15); }

  .pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 700;
    color: rgba(169,150,57,0.25);
    line-height: 1;
    flex-shrink: 0;
    width: 2.5rem;
  }

  .pillar-content {}
  .pillar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem; font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.3rem;
  }
  .pillar-desc {
    font-size: 0.85rem; font-weight: 300; line-height: 1.6;
    color: rgba(245,240,232,0.55);
  }

  /* Veteran section */
  .vet-card {
    background: rgba(34,57,21,0.3);
    border: 1px solid rgba(68,114,42,0.35);
    padding: 3rem;
    position: relative;
  }

  .vet-card::before {
    content: '✈';
    position: absolute; top: 2rem; right: 2rem;
    font-size: 3rem;
    opacity: 0.12;
  }

  .vet-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .vet-eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--green-mid);
    display: inline-block;
  }

  .vet-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 1.2rem;
  }

  .vet-body {
    font-size: 0.9rem; line-height: 1.8; font-weight: 300;
    color: rgba(245,240,232,0.65);
    margin-bottom: 2rem;
  }

  .vet-values {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem;
  }

  .vet-value {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(245,240,232,0.6);
  }
  .vet-value::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green-mid);
    flex-shrink: 0;
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials {
    padding: 7rem 5rem;
    background: var(--cream);
  }

  .testimonials .section-header { margin-bottom: 3rem; }

  .testimonial-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2px;
    background: rgba(88,42,114,0.08);
  }

  .testimonial-card {
    background: var(--cream);
    padding: 2.5rem;
    position: relative;
    transition: background 0.2s;
  }
  .testimonial-card:hover { background: var(--off-white); }

  .testimonial-card.primary {
    background: var(--purple);
    padding: 3rem;
  }

  .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; line-height: 0.6;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 1rem;
    display: block;
  }
  .testimonial-card.primary .quote-mark { opacity: 0.6; }

  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-style: italic; line-height: 1.6;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
  }
  .testimonial-card.primary .testimonial-text {
    font-size: 1.3rem;
    color: var(--cream);
  }

  .testimonial-author {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--purple);
  }
  .testimonial-card.primary .testimonial-author { color: var(--gold-light); }

  .testimonial-company {
    font-size: 0.78rem; font-weight: 300;
    color: rgba(88,42,114,0.5);
    margin-top: 0.2rem;
  }
  .testimonial-card.primary .testimonial-company { color: rgba(245,240,232,0.5); }

  /* ─── INDUSTRIES ─── */
  .industries {
    padding: 5rem 5rem;
    background: var(--green-dark);
  }

  .industries .section-eyebrow { color: var(--gold); }
  .industries .section-eyebrow::before { background: var(--gold); }
  .industries .section-title { color: var(--cream); }

  .industry-list {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(169,150,57,0.15);
  }

  .industry-item {
    background: var(--green-dark);
    padding: 2rem 1.8rem;
    display: flex; flex-direction: column; gap: 0.7rem;
    transition: background 0.2s;
  }
  .industry-item:hover { background: rgba(34,57,21,0.5); }

  .industry-icon { font-size: 1.8rem; }
  .industry-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem; font-weight: 600;
    color: var(--cream);
  }
  .industry-note {
    font-size: 0.8rem; font-weight: 300; line-height: 1.5;
    color: rgba(245,240,232,0.45);
  }

  /* ─── CTA ─── */
  .cta-section {
    padding: 7rem 5rem;
    background: var(--off-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .cta-left {}
  .cta-left .section-title { margin-top: 0.7rem; margin-bottom: 1.2rem; }
  .cta-body {
    font-size: 1rem; line-height: 1.8; font-weight: 300;
    color: var(--text-mid);
    margin-bottom: 2rem;
  }

  .cta-right {
    background: var(--purple-deeper);
    padding: 3rem 3rem;
    position: relative;
    overflow: hidden;
  }

  .cta-right::before { display: none; }

  .cta-form { position: relative; z-index: 1; }
  .cta-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.4rem;
  }
  .cta-form-sub {
    font-size: 0.82rem; font-weight: 300;
    color: rgba(245,240,232,0.5);
    margin-bottom: 2rem;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.06em;
  }

  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    margin-bottom: 1rem;
  }
  .form-row.full { grid-template-columns: 1fr; }

  input, select, textarea {
    width: 100%;
    background: rgba(245,240,232,0.06);
    border: 1px solid rgba(245,240,232,0.15);
    color: var(--cream);
    padding: 0.8rem 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
  }
  input::placeholder, textarea::placeholder { color: rgba(245,240,232,0.3); }
  input:focus, select:focus, textarea:focus { border-color: var(--gold); }
  select option { background: var(--purple-deeper); color: var(--cream); }
  textarea { resize: vertical; min-height: 90px; }

  .form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--purple-deeper);
    border: 2px solid var(--gold);
    padding: 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
  }
  .form-submit:hover {
    background: transparent;
    color: var(--gold);
  }

  .cta-or {
    margin-top: 1.5rem;
    text-align: center;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(245,240,232,0.35);
    position: relative; z-index: 1;
  }
  .cta-or a {
    color: var(--gold-light);
    text-decoration: none;
  }
  .cta-or a:hover { text-decoration: underline; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--purple-deeper);
    border-top: 2px solid var(--gold);
    padding: 3rem 5rem 2rem;
  }

  .footer-brand-bar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
    margin-bottom: 2.5rem;
  }

  .footer-brand .nav-logo {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }

  .footer-tagline {
    font-size: 0.85rem; font-weight: 300; line-height: 1.7;
    color: rgba(245,240,232,0.5);
    margin-bottom: 1.5rem;
    max-width: 360px;
  }

  .footer-contact {
    display: flex; flex-direction: column; gap: 0.5rem;
  }
  .footer-contact a {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem; letter-spacing: 0.06em;
    color: rgba(245,240,232,0.6);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact a:hover { color: var(--gold-light); }

  .footer-col-title {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }

  .footer-client-tools {
    display: flex; flex-direction: column; gap: 0.75rem;
    min-width: 220px;
  }

  .client-tool-link {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    background: rgba(245,240,232,0.04);
    border: 1px solid rgba(245,240,232,0.1);
    font-size: 0.78rem; font-weight: 400;
    color: rgba(245,240,232,0.6);
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .client-tool-link:hover {
    background: rgba(169,150,57,0.1);
    border-color: rgba(169,150,57,0.3);
    color: var(--cream);
  }

  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(245,240,232,0.08);
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem; letter-spacing: 0.08em;
    color: rgba(245,240,232,0.3);
    flex-wrap: wrap; gap: 1rem;
  }

  .footer-vet-badge {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(68,114,42,0.4);
    color: rgba(68,114,42,0.8);
    font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  }

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



  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }

    .hero { grid-template-columns: 1fr; padding-top: 5rem; }
    .hero-left { padding: 3rem 1.5rem 2rem; }
    .hero-right { padding: 0 1.5rem 3rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; }

    .trust-bar { padding: 1rem 1.5rem; gap: 1.5rem; }

    .services { padding: 4rem 1.5rem; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .services-grid { grid-template-columns: 1fr; }

    .why { padding: 4rem 1.5rem; }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }

    .testimonials { padding: 4rem 1.5rem; }
    .testimonial-grid { grid-template-columns: 1fr; }

    .industries { padding: 4rem 1.5rem; }
    .industry-list { grid-template-columns: 1fr 1fr; }

    .cta-section { padding: 4rem 1.5rem; grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }

    footer { padding: 3rem 1.5rem 2rem; }
    .footer-brand-bar { grid-template-columns: 1fr; gap: 2rem; }
    .footer-client-tools { min-width: 0; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; }
  }

/* ── MOBILE NAV TOGGLE (WordPress theme addition) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 8, 30, 0.99);
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    gap: 0;
    border-top: 1px solid rgba(169,150,57,0.2);
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-links.nav-open { display: flex; }

  /* Top-level items */
  .nav-links > li > a {
    display: flex; justify-content: space-between;
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  /* Mobile dropdowns - show as indented sub-list */
  .nav-dropdown {
    display: none;
    position: static;
    background: rgba(169,150,57,0.06);
    border: none;
    border-top: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    min-width: 0;
  }
  .nav-dropdown li a {
    padding: 0.7rem 1.5rem 0.7rem 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 0.65rem;
  }
  .has-dropdown.dropdown-open .nav-dropdown { display: block; }
  .nav-links .nav-cta { margin: 0.75rem 1.5rem 0; }
}

/* ── WORDPRESS POST CONTENT STYLES ── */
.pirum-post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple-deeper);
  margin: 2.5rem 0 0.8rem;
}
.pirum-post-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple-deeper);
  margin: 2rem 0 0.6rem;
}
.pirum-post-content p { margin-bottom: 1.2rem; }
.pirum-post-content ul, .pirum-post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.pirum-post-content li { margin-bottom: 0.4rem; }
.pirum-post-content strong { font-weight: 600; color: var(--text-dark); }
.pirum-post-content a { color: var(--purple); text-decoration: underline; }
.pirum-post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.8rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--purple-deeper);
  background: rgba(88,42,114,0.04);
}


/* ════════════════════════════════════════
   PAGE-SPECIFIC STYLES
   Extracted from individual page HTML files
════════════════════════════════════════ */

/* ── PAGE: 404 ── */
.error-wrap {
  min-height: 100vh;
  background: var(--purple-deeper);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(169,150,57,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169,150,57,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.error-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 5rem 4rem;
  position: relative;
  z-index: 1;
}
.error-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.error-code {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(7rem, 14vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(169,150,57,0.15);
  letter-spacing: -0.02em;
  margin-bottom: -1rem;
  user-select: none;
}
.error-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.error-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.error-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.error-heading em { color: var(--gold-light); }
.error-body-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,0.6);
  margin-bottom: 2rem;
}
.error-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.error-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--purple-deeper);
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s;
}
.error-home-btn:hover { background: var(--gold-light); }
.error-contact-line {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.35);
}
.error-contact-line a {
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.error-contact-line a:hover { color: var(--gold-light); }
.quick-links-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.quick-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(169,150,57,0.1);
}
.quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: rgba(245,240,232,0.03);
  text-decoration: none;
  transition: background 0.2s;
  gap: 1rem;
}
.quick-link:hover { background: rgba(245,240,232,0.07); }
.quick-link-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.quick-link-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
}
.quick-link-text { display: flex; flex-direction: column; gap: 0.15rem; }
.quick-link-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}
.quick-link-desc {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245,240,232,0.38);
  line-height: 1;
}
.quick-link-arrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
}
.error-footer-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(169,150,57,0.15);
  padding: 1.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.error-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
}
.error-footer-logo span { color: var(--gold); }
.error-footer-links {
  display: flex;
  gap: 2rem;
}
.error-footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.error-footer-links a:hover { color: var(--gold-light); }

/* ── PAGE: ABOUT ── */
.credential-grid { display:grid; grid-template-columns:1fr 1fr; gap:2px; background:rgba(88,42,114,0.1); margin-top:2rem; }
.credential-cell { background:var(--off-white); padding:1.2rem 1.5rem; }
.credential-label { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold); margin-bottom:0.3rem; }
.credential-value { font-size:0.85rem; font-weight:600; color:var(--purple-deeper); }
.community-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:rgba(169,150,57,0.15); }
.community-card { background:var(--green-dark); padding:2rem; }
.community-icon { font-size:1.8rem; margin-bottom:0.8rem; }
.community-name { font-family:'Outfit',sans-serif; font-size:0.95rem; font-weight:600; color:var(--cream); margin-bottom:0.4rem; }
.community-desc { font-size:0.82rem; font-weight:300; line-height:1.6; color:rgba(245,240,232,0.5); }
.geo-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:rgba(88,42,114,0.08); }
.geo-card { background:var(--cream); padding:1.8rem 2rem; }
.geo-icon { font-size:1.4rem; margin-bottom:0.6rem; }
.geo-title { font-size:0.9rem; font-weight:600; color:var(--purple-deeper); margin-bottom:0.3rem; }
.geo-desc { font-size:0.8rem; font-weight:300; line-height:1.6; color:var(--text-mid); }
.partner-card { background:rgba(245,240,232,0.04); border:1px solid rgba(169,150,57,0.25); padding:2rem 2.5rem; margin-bottom:1.5rem; }
.partner-label { font-family:'DM Mono',monospace; font-size:0.6rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:0.6rem; }
.partner-name { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:700; color:var(--cream); margin-bottom:0.4rem; }
.partner-desc { font-size:0.85rem; font-weight:300; line-height:1.6; color:rgba(245,240,232,0.6); }
.photo-placeholder { background:var(--purple-deeper); aspect-ratio:3/4; display:flex; align-items:center; justify-content:center; border:1px solid rgba(169,150,57,0.2); margin-bottom:2rem; }

/* ── PAGE: COMPUTER-SUPPORT ── */
.service-deep { display:grid; grid-template-columns:300px 1fr; gap:0; border-bottom:1px solid rgba(88,42,114,0.1); }
.service-deep:last-child { border-bottom:none; }
.service-deep-label { padding:3rem 2.5rem; background:var(--cream); border-right:1px solid rgba(88,42,114,0.1); display:flex; flex-direction:column; gap:1rem; }
.service-deep-icon { font-size:2.2rem; }
.service-deep-name { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:700; color:var(--purple-deeper); line-height:1.15; }
.service-deep-tag { display:inline-block; font-family:'DM Mono',monospace; font-size:0.56rem; letter-spacing:0.14em; text-transform:uppercase; padding:0.25rem 0.65rem; border:1px solid rgba(88,42,114,0.15); color:var(--purple); align-self:flex-start; }
.service-deep-body { padding:3rem; display:flex; flex-direction:column; gap:1rem; }
.service-deep-body p { font-size:0.95rem; line-height:1.85; font-weight:300; color:var(--text-mid); }
.service-deep-body strong { font-weight:600; color:var(--text-dark); }
.what-you-get { margin-top:0.5rem; }
.what-you-get-label { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); margin-bottom:0.7rem; }
.what-you-get ul { list-style:none; padding:0; display:flex; flex-direction:column; gap:0.45rem; }
.what-you-get li { font-size:0.88rem; font-weight:300; color:var(--text-mid); padding-left:1.2rem; position:relative; line-height:1.5; }
.what-you-get li::before { content:'—'; position:absolute; left:0; color:var(--gold); font-family:'DM Mono',monospace; }
.audience-split { display:grid; grid-template-columns:1fr 1fr; gap:2px; background:rgba(88,42,114,0.08); margin-bottom:3rem; }
.audience-cell { padding:2.5rem; display:flex; flex-direction:column; gap:0.8rem; }
.audience-cell.managed { background:var(--purple-deeper); }
.audience-cell.standalone { background:var(--off-white); }
.audience-label { font-family:'DM Mono',monospace; font-size:0.6rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); }
.audience-title { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:700; line-height:1.15; }
.audience-cell.managed .audience-title { color:var(--cream); }
.audience-cell.standalone .audience-title { color:var(--purple-deeper); }
.audience-body { font-size:0.88rem; font-weight:300; line-height:1.7; }
.audience-cell.managed .audience-body { color:rgba(245,240,232,0.65); }
.audience-cell.standalone .audience-body { color:var(--text-mid); }
.audience-cta { display:inline-flex; align-items:center; gap:0.5rem; font-family:'DM Mono',monospace; font-size:0.65rem; letter-spacing:0.12em; text-transform:uppercase; text-decoration:none; margin-top:0.5rem; }
.audience-cell.managed .audience-cta { color:var(--gold-light); }
.audience-cell.standalone .audience-cta { color:var(--purple); }
.os-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:rgba(88,42,114,0.08); margin-top:1rem; }
.os-cell { background:var(--off-white); padding:1.5rem 2rem; display:flex; flex-direction:column; gap:0.4rem; }
.os-name { font-family:'Cormorant Garamond',serif; font-size:1.15rem; font-weight:700; color:var(--purple-deeper); }
.os-desc { font-size:0.82rem; font-weight:300; line-height:1.6; color:var(--text-mid); }
.stat-bar { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:rgba(169,150,57,0.2); }
.stat-cell { background:var(--purple-deeper); padding:2rem 2.5rem; }
.stat-number span { color:var(--gold); }
.platform-note { display:flex; gap:1.2rem; align-items:flex-start; background:rgba(169,150,57,0.07); border:1px solid rgba(169,150,57,0.2); padding:1.2rem 1.5rem; margin-top:0.5rem; }
.platform-note-icon { font-size:1.3rem; flex-shrink:0; margin-top:0.1rem; }
.platform-note-body { font-size:0.85rem; font-weight:300; line-height:1.65; color:var(--text-mid); }
.platform-note-body strong { font-weight:600; color:var(--text-dark); }

/* ── PAGE: CONTACT ── */
.contact-row { display:flex; align-items:center; gap:1.2rem; text-decoration:none; padding:1.5rem; background:var(--cream); border:1px solid rgba(88,42,114,0.1); transition:border-color 0.2s; margin-bottom:1rem; }
.contact-row:hover { border-color:var(--purple); }
.contact-row-label { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold); margin-bottom:0.2rem; }
.contact-row-value { font-size:1rem; font-weight:600; color:var(--purple-deeper); }
.contact-row-sub { font-size:0.82rem; font-weight:300; color:var(--text-mid); }
.form-field { display:block; width:100%; padding:0.9rem 1rem; background:rgba(245,240,232,0.06); border:1px solid rgba(245,240,232,0.15); color:var(--cream); font-family:'Outfit',sans-serif; font-size:0.9rem; margin-bottom:1rem; outline:none; transition:border-color 0.2s; }
.form-field:focus { border-color:var(--gold); }
.form-field::placeholder { color:rgba(245,240,232,0.35); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
textarea.form-field { resize:vertical; min-height:120px; }
select.form-field { appearance:none; cursor:pointer; }

/* ── PAGE: CYBERSECURITY ── */
.stat-bar { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:rgba(169,150,57,0.2); }
.stat-cell { background:var(--purple-deeper); padding:2rem 2.5rem; }
.stat-number span { color:var(--gold); }
.tier-label { display:inline-flex; align-items:center; gap:0.6rem; font-family:'DM Mono',monospace; font-size:0.62rem; letter-spacing:0.18em; text-transform:uppercase; padding:0.4rem 1rem; margin-bottom:2rem; }
.tier-foundation { background:rgba(68,114,42,0.12); color:var(--green-mid); border:1px solid rgba(68,114,42,0.3); }
.tier-advanced { background:rgba(88,42,114,0.1); color:var(--purple); border:1px solid rgba(88,42,114,0.25); }
.service-deep { display:grid; grid-template-columns:300px 1fr; gap:0; border-bottom:1px solid rgba(88,42,114,0.1); }
.service-deep:last-child { border-bottom:none; }
.service-deep-label { padding:3rem 2.5rem; background:var(--cream); border-right:1px solid rgba(88,42,114,0.1); display:flex; flex-direction:column; gap:1rem; }
.service-deep-icon { font-size:2.2rem; }
.service-deep-name { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:700; color:var(--purple-deeper); line-height:1.15; }
.service-deep-tag { display:inline-block; font-family:'DM Mono',monospace; font-size:0.56rem; letter-spacing:0.14em; text-transform:uppercase; padding:0.25rem 0.65rem; border:1px solid rgba(88,42,114,0.15); color:var(--purple); align-self:flex-start; }
.service-deep-body { padding:3rem; display:flex; flex-direction:column; gap:1rem; }
.service-deep-body p { font-size:0.95rem; line-height:1.85; font-weight:300; color:var(--text-mid); }
.service-deep-body strong { font-weight:600; color:var(--text-dark); }
.what-you-get { margin-top:0.5rem; }
.what-you-get-label { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); margin-bottom:0.7rem; }
.what-you-get ul { list-style:none; padding:0; display:flex; flex-direction:column; gap:0.45rem; }
.what-you-get li { font-size:0.88rem; font-weight:300; color:var(--text-mid); padding-left:1.2rem; position:relative; line-height:1.5; }
.what-you-get li::before { content:'—'; position:absolute; left:0; color:var(--gold); font-family:'DM Mono',monospace; }
.mdr-tiers { display:grid; grid-template-columns:1fr 1fr; gap:2px; background:rgba(88,42,114,0.08); margin-top:1rem; }
.mdr-tier { padding:1.8rem 2rem; background:var(--off-white); }
.mdr-tier-name { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:700; color:var(--purple-deeper); margin-bottom:0.4rem; }
.mdr-tier-desc { font-size:0.85rem; font-weight:300; line-height:1.7; color:var(--text-mid); }
.mdr-tier-badge { font-family:'DM Mono',monospace; font-size:0.56rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); margin-bottom:0.6rem; }
.available-badge { display:inline-flex; align-items:center; gap:0.5rem; font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.14em; text-transform:uppercase; padding:0.3rem 0.8rem; background:rgba(169,150,57,0.1); color:var(--gold); border:1px solid rgba(169,150,57,0.3); margin-bottom:0.5rem; }
.philosophy-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:rgba(169,150,57,0.15); }
.philosophy-card { background:var(--green-dark); padding:2.5rem; }
.philosophy-icon { font-size:1.8rem; margin-bottom:1rem; }
.philosophy-title { font-family:'Outfit',sans-serif; font-size:0.95rem; font-weight:600; color:var(--cream); margin-bottom:0.5rem; }
.philosophy-body { font-size:0.83rem; font-weight:300; line-height:1.7; color:rgba(245,240,232,0.55); }

/* ── PAGE: GUIDES ── */
/* To add a new guide, copy one .guide-card block and update:
   - data-topic attribute (for future filtering)
   - .guide-tag text
   - .guide-title text
   - .guide-desc text
   - .guide-meta date and read time
   - href on the .guide-download link */
.guides-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:rgba(88,42,114,0.08); }
.guide-card { background:var(--off-white); padding:2.5rem; display:flex; flex-direction:column; gap:1rem; transition:background 0.2s; }
.guide-card:hover { background:var(--cream); }
.guide-tag { display:inline-block; font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.15em; text-transform:uppercase; padding:0.3rem 0.75rem; background:rgba(88,42,114,0.08); color:var(--purple); border:1px solid rgba(88,42,114,0.15); align-self:flex-start; }
.guide-icon { font-size:2rem; }
.guide-title { font-family:'Cormorant Garamond',serif; font-size:1.45rem; font-weight:700; color:var(--purple-deeper); line-height:1.2; }
.guide-desc { font-size:0.88rem; font-weight:300; line-height:1.7; color:var(--text-mid); flex:1; }
.guide-meta { font-family:'DM Mono',monospace; font-size:0.6rem; letter-spacing:0.1em; color:rgba(61,48,32,0.45); text-transform:uppercase; }
.guide-download { display:inline-flex; align-items:center; gap:0.5rem; font-family:'DM Mono',monospace; font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--purple); text-decoration:none; border-bottom:1px solid rgba(88,42,114,0.25); padding-bottom:0.15rem; transition:color 0.2s,border-color 0.2s; }
.guide-download:hover { color:var(--gold); border-color:var(--gold); }
.guides-empty { grid-column:1/-1; padding:5rem 3rem; text-align:center; background:var(--off-white); border:2px dashed rgba(88,42,114,0.15); }
.guides-empty-icon { font-size:3rem; margin-bottom:1.2rem; opacity:0.35; }
.guides-empty-title { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:700; color:var(--purple-deeper); margin-bottom:0.6rem; }
.guides-empty-desc { font-size:0.88rem; font-weight:300; color:var(--text-mid); max-width:400px; margin:0 auto; line-height:1.7; }

/* ── PAGE: INTEL ── */
.intel-masthead {
  padding: 9rem 0 0;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.masthead-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}
.masthead-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.masthead-kicker::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.masthead-nameplate {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.masthead-nameplate em {
  font-style: italic;
  color: var(--purple);
}
.masthead-rule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
}
.masthead-tagline {
  font-family: 'Source Serif 4', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink-mid);
}
.masthead-date {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  text-transform: uppercase;
}
.featured-post {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}
.featured-image-col {
  background: var(--purple-deeper);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.featured-image-graphic {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-image-graphic svg {
  width: 60%;
  height: 60%;
  opacity: 0.08;
}
.featured-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(30,12,42,0.8));
}
.featured-content-col {
  padding: 3.5rem 3rem 3.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  border-left: 1px solid var(--rule);
}
.post-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.post-kicker::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--purple);
}
.featured-post .featured-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--purple-deeper);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.featured-title:hover { color: var(--purple); }
.featured-excerpt {
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 300;
  color: var(--ink-mid);
}
.featured-byline {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}
.read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.2s, color 0.2s;
}
.read-link:hover { gap: 0.8rem; color: var(--gold); }
.post-grid-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem 5rem;
}
.section-rule {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0 1.5rem;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 2px;
}
.section-rule-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  white-space: nowrap;
}
.section-rule-line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.post-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}
.post-row-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}
.post-row-1 {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--rule);
}
.article-card {
  padding: 2rem 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  border-right: 1px solid var(--rule);
  transition: background 0.15s;
}
.article-card:last-child { border-right: none; }
.article-card:hover { background: var(--paper-warm); }
.article-card:hover .article-title { color: var(--purple); }
.article-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
}
.article-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.2s;
}
.article-title-lg {
  font-size: 1.55rem;
}
.article-excerpt {
  font-family: 'Source Serif 4', serif;
  font-size: 0.88rem;
  line-height: 1.75;
  font-weight: 300;
  color: var(--ink-mid);
  flex: 1;
}
.article-meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 0.25rem;
}
.article-card-horizontal {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  text-decoration: none;
  transition: background 0.15s;
}
.article-card-horizontal:hover { background: var(--paper-warm); }
.article-card-horizontal:hover .article-title { color: var(--purple); }
.article-card-horizontal .card-body { padding: 2rem 2rem 2rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.article-card-horizontal .card-image {
  background: var(--purple-deeper);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; opacity: 0.4;
  border-left: 1px solid var(--rule);
  position: relative; overflow: hidden;
}
.article-card-horizontal .card-image-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--purple-deeper), var(--purple-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; opacity: 0.2;
}
.content-with-sidebar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem 5rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}
.sidebar-section { display: flex; flex-direction: column; gap: 2rem; }
.sidebar-block { border-top: 2px solid var(--ink); padding-top: 1.2rem; }
.sidebar-block-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1rem;
}
.sidebar-cta {
  background: var(--purple-deeper);
  padding: 2rem;
}
.sidebar-cta-label { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:0.6rem; }
.sidebar-cta-title { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; color:var(--cream); line-height:1.2; margin-bottom:0.8rem; }
.sidebar-cta-body { font-size:0.82rem; font-weight:300; line-height:1.6; color:rgba(245,240,232,0.6); margin-bottom:1.2rem; }
.sidebar-cta-btn { display:block; text-align:center; background:var(--gold); color:var(--purple-deeper); font-family:'DM Mono',monospace; font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; padding:0.75rem; text-decoration:none; font-weight:500; transition:background 0.2s; }
.sidebar-cta-btn:hover { background:var(--gold-light); }
.subscribe-banner {
  background: var(--ink);
  padding: 3.5rem 3rem;
}
.subscribe-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.subscribe-copy { display: flex; flex-direction: column; gap: 0.4rem; }
.subscribe-title { font-family:'Playfair Display',serif; font-size:1.8rem; font-weight:700; font-style:italic; color:var(--cream); }
.subscribe-sub { font-size:0.88rem; font-weight:300; color:rgba(245,240,232,0.5); }
.subscribe-btn { background:var(--gold); color:var(--ink); font-family:'DM Mono',monospace; font-size:0.72rem; letter-spacing:0.15em; text-transform:uppercase; padding:0.9rem 2rem; text-decoration:none; font-weight:500; white-space:nowrap; transition:background 0.2s; }
.subscribe-btn:hover { background:var(--gold-light); }

/* ── PAGE: IT-CONSULTING ── */
.track-split { display:grid; grid-template-columns:1fr 1fr; gap:2px; background:rgba(88,42,114,0.08); margin-bottom:4rem; }
.track-cell { padding:3rem; display:flex; flex-direction:column; gap:1rem; }
.track-cell.consulting { background:var(--off-white); }
.track-cell.vcio { background:var(--purple-deeper); }
.track-label { font-family:'DM Mono',monospace; font-size:0.6rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); }
.track-title { font-family:'Cormorant Garamond',serif; font-size:1.9rem; font-weight:700; line-height:1.1; }
.track-cell.consulting .track-title { color:var(--purple-deeper); }
.track-cell.vcio .track-title { color:var(--cream); }
.track-body { font-size:0.9rem; font-weight:300; line-height:1.75; }
.track-cell.consulting .track-body { color:var(--text-mid); }
.track-cell.vcio .track-body { color:rgba(245,240,232,0.65); }
.track-services { list-style:none; padding:0; display:flex; flex-direction:column; gap:0.4rem; margin-top:0.3rem; }
.track-services li { font-family:'DM Mono',monospace; font-size:0.68rem; letter-spacing:0.06em; padding-left:1.2rem; position:relative; }
.track-cell.consulting .track-services li { color:var(--purple); }
.track-cell.vcio .track-services li { color:rgba(245,240,232,0.55); }
.track-services li::before { content:'→'; position:absolute; left:0; color:var(--gold); }
.track-cta { display:inline-flex; align-items:center; gap:0.5rem; font-family:'DM Mono',monospace; font-size:0.65rem; letter-spacing:0.12em; text-transform:uppercase; text-decoration:none; margin-top:0.5rem; }
.track-cell.consulting .track-cta { color:var(--purple); }
.track-cell.vcio .track-cta { color:var(--gold-light); }
.service-deep { display:grid; grid-template-columns:300px 1fr; gap:0; border-bottom:1px solid rgba(88,42,114,0.1); }
.service-deep:last-child { border-bottom:none; }
.service-deep-label { padding:3rem 2.5rem; background:var(--cream); border-right:1px solid rgba(88,42,114,0.1); display:flex; flex-direction:column; gap:1rem; }
.service-deep-icon { font-size:2.2rem; }
.service-deep-name { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:700; color:var(--purple-deeper); line-height:1.15; }
.track-pip { display:inline-block; font-family:'DM Mono',monospace; font-size:0.54rem; letter-spacing:0.14em; text-transform:uppercase; padding:0.22rem 0.6rem; align-self:flex-start; }
.pip-consulting { border:1px solid rgba(88,42,114,0.2); color:var(--purple); background:rgba(88,42,114,0.05); }
.pip-vcio { border:1px solid rgba(169,150,57,0.35); color:var(--gold); background:rgba(169,150,57,0.07); }
.service-deep-body { padding:3rem; display:flex; flex-direction:column; gap:1rem; }
.service-deep-body p { font-size:0.95rem; line-height:1.85; font-weight:300; color:var(--text-mid); }
.service-deep-body strong { font-weight:600; color:var(--text-dark); }
.what-you-get { margin-top:0.5rem; }
.what-you-get-label { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); margin-bottom:0.7rem; }
.what-you-get ul { list-style:none; padding:0; display:flex; flex-direction:column; gap:0.45rem; }
.what-you-get li { font-size:0.88rem; font-weight:300; color:var(--text-mid); padding-left:1.2rem; position:relative; line-height:1.5; }
.what-you-get li::before { content:'—'; position:absolute; left:0; color:var(--gold); font-family:'DM Mono',monospace; }
.cadence-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:rgba(88,42,114,0.08); margin-top:1rem; }
.cadence-cell { background:var(--off-white); padding:1.5rem 1.8rem; }
.cadence-freq { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); margin-bottom:0.4rem; }
.cadence-title { font-family:'Cormorant Garamond',serif; font-size:1.05rem; font-weight:700; color:var(--purple-deeper); margin-bottom:0.35rem; }
.cadence-desc { font-size:0.8rem; font-weight:300; line-height:1.6; color:var(--text-mid); }
.credentials-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:rgba(169,150,57,0.15); }
.credentials-strip .credential-cell { background:var(--purple-deeper); padding:2rem 2.5rem; display:flex; flex-direction:column; gap:0.4rem; }
.credentials-strip .credential-value { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:700; color:var(--cream); line-height:1; }
.credentials-strip .credential-value span { color:var(--gold); }
.credentials-strip .credential-label { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.12em; text-transform:uppercase; color:rgba(245,240,232,0.4); line-height:1.5; }
.who-grid { display:grid; grid-template-columns:1fr 1fr; gap:2px; background:rgba(88,42,114,0.08); }
.who-cell { background:var(--off-white); padding:2.5rem; }
.who-icon { font-size:1.8rem; margin-bottom:0.8rem; }
.who-title { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:700; color:var(--purple-deeper); margin-bottom:0.5rem; }
.who-body { font-size:0.85rem; font-weight:300; line-height:1.7; color:var(--text-mid); }

/* ── PAGE: MANAGED-SERVICES ── */
.tier-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:2px; background:rgba(88,42,114,0.08); }
.tier-card { background:var(--off-white); display:flex; flex-direction:column; position:relative; }
.tier-card.featured { background:var(--purple-deeper); }
.tier-header { padding:2.5rem 2.5rem 2rem; border-bottom:1px solid rgba(88,42,114,0.1); }
.tier-card.featured .tier-header { border-bottom-color:rgba(245,240,232,0.1); }
.tier-badge { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:0.8rem; }
.tier-name { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:700; color:var(--purple-deeper); line-height:1; margin-bottom:0.5rem; }
.tier-card.featured .tier-name { color:var(--cream); }
.tier-tagline { font-size:0.85rem; font-weight:300; color:var(--text-mid); line-height:1.5; }
.tier-card.featured .tier-tagline { color:rgba(245,240,232,0.6); }
.tier-body { padding:2rem 2.5rem; flex:1; display:flex; flex-direction:column; gap:1.5rem; }
.tier-includes-label { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); margin-bottom:0.6rem; }
.tier-includes ul { list-style:none; padding:0; display:flex; flex-direction:column; gap:0.5rem; }
.tier-includes li { font-size:0.88rem; font-weight:300; color:var(--text-mid); padding-left:1.3rem; position:relative; line-height:1.5; }
.tier-card.featured .tier-includes li { color:rgba(245,240,232,0.7); }
.tier-includes li::before { content:'✓'; position:absolute; left:0; color:var(--green-mid); font-family:'DM Mono',monospace; font-size:0.7rem; font-weight:500; }
.tier-card.featured .tier-includes li::before { color:var(--gold); }
.tier-helpdesk { background:rgba(88,42,114,0.06); padding:1rem 1.2rem; font-size:0.82rem; font-weight:300; color:var(--text-mid); line-height:1.6; border-left:2px solid rgba(88,42,114,0.2); }
.tier-card.featured .tier-helpdesk { background:rgba(245,240,232,0.06); border-left-color:var(--gold); color:rgba(245,240,232,0.65); }
.tier-footer { padding:2rem 2.5rem; border-top:1px solid rgba(88,42,114,0.1); }
.tier-card.featured .tier-footer { border-top-color:rgba(245,240,232,0.1); }
.tier-cta { display:block; text-align:center; font-family:'DM Mono',monospace; font-size:0.7rem; letter-spacing:0.14em; text-transform:uppercase; padding:0.85rem; text-decoration:none; font-weight:500; transition:all 0.2s; }
.tier-cta-outline { border:1px solid var(--purple); color:var(--purple); }
.tier-cta-outline:hover { background:var(--purple); color:var(--cream); }
.tier-cta-filled { background:var(--gold); color:var(--purple-deeper); }
.tier-cta-filled:hover { background:var(--gold-light); }
.most-popular { position:absolute; top:-1px; left:50%; transform:translateX(-50%); background:var(--gold); color:var(--purple-deeper); font-family:'DM Mono',monospace; font-size:0.56rem; letter-spacing:0.16em; text-transform:uppercase; padding:0.3rem 1rem; white-space:nowrap; font-weight:500; }
.helpdesk-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:rgba(88,42,114,0.08); }
.helpdesk-cell { background:var(--off-white); padding:2rem; display:flex; flex-direction:column; gap:0.6rem; }
.helpdesk-cell-name { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:700; color:var(--purple-deeper); line-height:1.15; }
.helpdesk-cell-desc { font-size:0.82rem; font-weight:300; line-height:1.6; color:var(--text-mid); flex:1; }
.helpdesk-cell-tag { font-family:'DM Mono',monospace; font-size:0.56rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); }
.included-block { display:grid; grid-template-columns:280px 1fr; gap:0; border-bottom:1px solid rgba(88,42,114,0.1); }
.included-block:last-child { border-bottom:none; }
.included-label { padding:2.5rem; background:var(--cream); border-right:1px solid rgba(88,42,114,0.1); display:flex; flex-direction:column; gap:0.8rem; }
.included-icon { font-size:2rem; }
.included-name { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:700; color:var(--purple-deeper); line-height:1.15; }
.included-tiers { display:flex; flex-wrap:wrap; gap:0.3rem; margin-top:0.3rem; }
.tier-pip { font-family:'DM Mono',monospace; font-size:0.54rem; letter-spacing:0.12em; text-transform:uppercase; padding:0.2rem 0.55rem; border:1px solid rgba(88,42,114,0.2); color:var(--purple); }
.included-body { padding:2.5rem; display:flex; flex-direction:column; gap:0.8rem; }
.included-body p { font-size:0.93rem; line-height:1.85; font-weight:300; color:var(--text-mid); }
.included-body strong { font-weight:600; color:var(--text-dark); }
.addon-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:rgba(169,150,57,0.15); }
.addon-card { background:var(--green-dark); padding:2.5rem; text-decoration:none; display:flex; flex-direction:column; gap:0.8rem; transition:background 0.2s; }
.addon-card:hover { background:rgba(34,57,21,0.6); }
.addon-icon { font-size:1.8rem; }
.addon-name { font-family:'Cormorant Garamond',serif; font-size:1.3rem; font-weight:700; color:var(--cream); line-height:1.15; }
.addon-desc { font-size:0.83rem; font-weight:300; line-height:1.6; color:rgba(245,240,232,0.55); flex:1; }
.addon-link { font-family:'DM Mono',monospace; font-size:0.62rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold-light); margin-top:0.3rem; }

/* ── PAGE: NETWORK-INFRASTRUCTURE ── */
.service-deep { display:grid; grid-template-columns:300px 1fr; gap:0; border-bottom:1px solid rgba(88,42,114,0.1); }
.service-deep:last-child { border-bottom:none; }
.service-deep-label { padding:3rem 2.5rem; background:var(--cream); border-right:1px solid rgba(88,42,114,0.1); display:flex; flex-direction:column; gap:1rem; }
.service-deep-icon { font-size:2.2rem; }
.service-deep-name { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:700; color:var(--purple-deeper); line-height:1.15; }
.service-deep-tag { display:inline-block; font-family:'DM Mono',monospace; font-size:0.56rem; letter-spacing:0.14em; text-transform:uppercase; padding:0.25rem 0.65rem; border:1px solid rgba(88,42,114,0.15); color:var(--purple); align-self:flex-start; }
.service-deep-body { padding:3rem; display:flex; flex-direction:column; gap:1rem; }
.service-deep-body p { font-size:0.95rem; line-height:1.85; font-weight:300; color:var(--text-mid); }
.service-deep-body strong { font-weight:600; color:var(--text-dark); }
.what-you-get { margin-top:0.5rem; }
.what-you-get-label { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); margin-bottom:0.7rem; }
.what-you-get ul { list-style:none; padding:0; display:flex; flex-direction:column; gap:0.45rem; }
.what-you-get li { font-size:0.88rem; font-weight:300; color:var(--text-mid); padding-left:1.2rem; position:relative; line-height:1.5; }
.what-you-get li::before { content:'—'; position:absolute; left:0; color:var(--gold); font-family:'DM Mono',monospace; }
.partner-note { display:flex; gap:1.2rem; align-items:flex-start; background:rgba(169,150,57,0.07); border:1px solid rgba(169,150,57,0.2); padding:1.2rem 1.5rem; margin-top:0.5rem; }
.partner-note-icon { font-size:1.3rem; flex-shrink:0; margin-top:0.1rem; }
.partner-note-body { font-size:0.85rem; font-weight:300; line-height:1.65; color:var(--text-mid); }
.partner-note-body strong { font-weight:600; color:var(--text-dark); }
.cloud-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:rgba(88,42,114,0.08); margin-top:1rem; }
.cloud-cell { background:var(--off-white); padding:1.8rem 2rem; }
.cloud-cell-name { font-family:'Cormorant Garamond',serif; font-size:1.15rem; font-weight:700; color:var(--purple-deeper); margin-bottom:0.4rem; }
.cloud-cell-desc { font-size:0.83rem; font-weight:300; line-height:1.65; color:var(--text-mid); }
.cloud-cell-badge { font-family:'DM Mono',monospace; font-size:0.56rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); margin-bottom:0.5rem; }
.stat-bar { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:rgba(169,150,57,0.2); }
.stat-cell { background:var(--purple-deeper); padding:2rem 2.5rem; }
.stat-number span { color:var(--gold); }
.project-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:rgba(169,150,57,0.15); }
.project-card { background:var(--green-dark); padding:2.5rem; }
.project-icon { font-size:1.8rem; margin-bottom:1rem; }
.project-title { font-family:'Outfit',sans-serif; font-size:0.95rem; font-weight:600; color:var(--cream); margin-bottom:0.5rem; }
.project-body { font-size:0.83rem; font-weight:300; line-height:1.7; color:rgba(245,240,232,0.55); }

/* ── PAGE: POST-TEMPLATE ── */
.post-content { max-width:720px; }
.post-content p { font-size:1.02rem; line-height:1.95; font-weight:300; color:var(--text-mid); margin-bottom:1.5rem; }
.post-content h2 { font-family:'Cormorant Garamond',serif; font-size:1.9rem; font-weight:700; color:var(--purple-deeper); line-height:1.15; margin:3rem 0 1rem; }
.post-content h3 { font-family:'Cormorant Garamond',serif; font-size:1.45rem; font-weight:700; color:var(--purple-deeper); line-height:1.2; margin:2rem 0 0.8rem; }
.post-content ul, .post-content ol { padding-left:1.5rem; margin-bottom:1.5rem; }
.post-content li { font-size:1rem; line-height:1.85; font-weight:300; color:var(--text-mid); margin-bottom:0.5rem; }
.post-content strong { font-weight:600; color:var(--text-dark); }
.post-content em { font-style:italic; }
.post-content a { color:var(--purple); text-underline-offset:3px; }
.post-content a:hover { color:var(--gold); }
.post-content blockquote { border-left:3px solid var(--gold); padding:1rem 1.5rem; margin:2rem 0; background:rgba(169,150,57,0.06); }
.post-content blockquote p { font-family:'Cormorant Garamond',serif; font-size:1.25rem; font-style:italic; color:var(--purple-deeper); margin-bottom:0; }
.post-content .callout { background:var(--purple-deeper); padding:2rem 2.5rem; margin:2.5rem 0; }
.post-content .callout-label { font-family:'DM Mono',monospace; font-size:0.6rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:0.6rem; }
.post-content .callout p { color:rgba(245,240,232,0.75); margin-bottom:0; }
.post-content hr { border:none; border-top:1px solid rgba(88,42,114,0.15); margin:3rem 0; }
.post-layout { display:grid; grid-template-columns:1fr 300px; gap:5rem; align-items:start; max-width:1200px; margin:0 auto; }
.post-sidebar { position:sticky; top:7rem; display:flex; flex-direction:column; gap:2rem; }
.sidebar-card { background:var(--cream); padding:2rem; border:1px solid rgba(88,42,114,0.1); }
.sidebar-card-title { font-family:'DM Mono',monospace; font-size:0.62rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; }
.related-post-link { display:flex; flex-direction:column; gap:0.3rem; text-decoration:none; padding:0.8rem 0; border-bottom:1px solid rgba(88,42,114,0.08); }
.related-post-link:last-child { border-bottom:none; }
.related-post-tag { font-family:'DM Mono',monospace; font-size:0.55rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); }
.related-post-title { font-family:'Cormorant Garamond',serif; font-size:1.05rem; font-weight:700; color:var(--purple-deeper); line-height:1.2; }
.related-post-title:hover { color:var(--purple); }

/* ── PAGE: PRIVACY ── */
.policy-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
}
.policy-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.policy-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.policy-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--purple-deeper);
  margin-bottom: 0.6rem;
}
.policy-meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  opacity: 0.55;
  margin-bottom: 2.5rem;
}
.policy-intro {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(88,42,114,0.1);
}
.policy-attorney-note {
  background: rgba(169,150,57,0.07);
  border: 1px solid rgba(169,150,57,0.2);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin-bottom: 3rem;
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
}
.policy-attorney-note strong { font-weight: 600; color: var(--text-dark); }
.policy-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(88,42,114,0.08);
}
.policy-section:last-of-type {
  border-bottom: none;
}
.policy-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-deeper);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.policy-section h2 .section-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.policy-section p {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section strong { font-weight: 600; color: var(--text-dark); }
.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.policy-section li {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
  padding-left: 1.3rem;
  position: relative;
}
.policy-section li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: 'DM Mono', monospace;
}
.policy-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--purple-deeper);
  margin: 1.5rem 0 0.5rem;
}
.policy-contact-box {
  background: var(--cream);
  border: 1px solid rgba(88,42,114,0.1);
  padding: 2rem 2.5rem;
  margin-top: 1rem;
}
.policy-contact-box p {
  margin-bottom: 0.4rem !important;
}
.policy-contact-box a {
  color: var(--purple);
  text-decoration: none;
}
.policy-contact-box a:hover {
  color: var(--gold);
}

/* ── PAGE: RESOURCES ── */
.resource-hub-grid { display:grid; grid-template-columns:1fr 1fr; gap:2px; background:rgba(88,42,114,0.08); margin-bottom:5rem; }
.resource-hub-card { background:var(--off-white); padding:3rem; text-decoration:none; display:flex; flex-direction:column; gap:1rem; transition:background 0.2s; border:2px solid transparent; }
.resource-hub-card:hover { background:var(--cream); border-color:var(--purple); }
.resource-hub-icon { font-size:2.5rem; }
.resource-hub-label { font-family:'DM Mono',monospace; font-size:0.6rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); }
.resource-hub-title { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:700; color:var(--purple-deeper); line-height:1.1; }
.resource-hub-desc { font-size:0.9rem; font-weight:300; line-height:1.7; color:var(--text-mid); }
.resource-hub-cta { font-family:'DM Mono',monospace; font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--purple); margin-top:0.5rem; }
.tool-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:rgba(169,150,57,0.15); }
.tool-card { background:var(--purple-deeper); padding:2.5rem; text-decoration:none; display:flex; flex-direction:column; gap:0.8rem; transition:background 0.2s; }
.tool-card:hover { background:var(--purple-dark); }
.tool-icon { font-size:2rem; }
.tool-label { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); }
.tool-title { font-family:'Outfit',sans-serif; font-size:1.05rem; font-weight:600; color:var(--cream); }
.tool-desc { font-size:0.82rem; font-weight:300; line-height:1.6; color:rgba(245,240,232,0.6); }
.tool-link { font-family:'DM Mono',monospace; font-size:0.65rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold-light); margin-top:0.5rem; }

/* ── PAGE: SERVICES ── */
.service-block { display:grid; grid-template-columns:280px 1fr; gap:4rem; padding:4rem 0; border-bottom:1px solid rgba(88,42,114,0.1); align-items:start; }
.service-body { font-size:1rem; line-height:1.9; font-weight:300; color:var(--text-mid); margin-bottom:1rem; }
.tags-wrap { display:flex; flex-wrap:wrap; gap:0.2rem; margin-top:1.2rem; }
.industry-tile { background:var(--green-dark); padding:2rem; text-decoration:none; display:flex; flex-direction:column; gap:0.5rem; transition:background 0.2s; }
.industry-tile:hover { background:rgba(34,57,21,0.6); }
.industry-tile-icon { font-size:1.5rem; }
.industry-tile-name { font-family:'Outfit',sans-serif; font-size:0.95rem; font-weight:600; color:var(--cream); }
.industry-tile-desc { font-size:0.8rem; font-weight:300; color:rgba(245,240,232,0.45); }

/* ── PAGE: TERMS ── */
.policy-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
}
.policy-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.policy-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.policy-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--purple-deeper);
  margin-bottom: 0.6rem;
}
.policy-meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  opacity: 0.55;
  margin-bottom: 2.5rem;
}
.policy-intro {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(88,42,114,0.1);
}
.policy-attorney-note {
  background: rgba(169,150,57,0.07);
  border: 1px solid rgba(169,150,57,0.2);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin-bottom: 3rem;
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
}
.policy-attorney-note strong { font-weight: 600; color: var(--text-dark); }
.policy-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(88,42,114,0.08);
}
.policy-section:last-of-type { border-bottom: none; }
.policy-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-deeper);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.policy-section h2 .section-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.policy-section p {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section strong { font-weight: 600; color: var(--text-dark); }
.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.policy-section li {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
  padding-left: 1.3rem;
  position: relative;
}
.policy-section li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: 'DM Mono', monospace;
}
.policy-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--purple-deeper);
  margin: 1.5rem 0 0.5rem;
}
.policy-contact-box {
  background: var(--cream);
  border: 1px solid rgba(88,42,114,0.1);
  padding: 2rem 2.5rem;
  margin-top: 1rem;
}
.policy-contact-box p { margin-bottom: 0.4rem !important; }
.policy-contact-box a { color: var(--purple); text-decoration: none; }
.policy-contact-box a:hover { color: var(--gold); }
.highlight-box {
  background: rgba(88,42,114,0.05);
  border: 1px solid rgba(88,42,114,0.12);
  border-left: 3px solid var(--purple);
  padding: 1.2rem 1.5rem;
  margin: 1rem 0;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
}
.highlight-box strong { font-weight: 600; color: var(--purple-deeper); }

/* ── PAGE: VIDEOS ── */
.featured-video { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; margin-bottom:5rem; }
.video-embed-area { background:var(--purple-deeper); aspect-ratio:16/9; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; border:1px solid rgba(169,150,57,0.2); }
.video-play-placeholder { text-align:center; }
.video-play-btn { width:64px; height:64px; background:var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; font-size:1.4rem; cursor:pointer; transition:background 0.2s; }
.video-play-btn:hover { background:var(--gold-light); }
.featured-label { font-family:'DM Mono',monospace; font-size:0.6rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:0.6rem; }
.featured-title { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:700; color:var(--purple-deeper); line-height:1.2; margin-bottom:1rem; }
.featured-desc { font-size:0.95rem; font-weight:300; line-height:1.8; color:var(--text-mid); margin-bottom:1rem; }
.featured-meta { font-family:'DM Mono',monospace; font-size:0.62rem; letter-spacing:0.1em; color:rgba(61,48,32,0.45); text-transform:uppercase; margin-bottom:1.5rem; }
.featured-watch { display:inline-flex; align-items:center; gap:0.6rem; font-family:'DM Mono',monospace; font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--purple); text-decoration:none; border-bottom:1px solid rgba(88,42,114,0.3); padding-bottom:0.2rem; transition:color 0.2s; }
.featured-watch:hover { color:var(--gold); border-color:var(--gold); }
.videos-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:rgba(88,42,114,0.08); }
.video-card { background:var(--off-white); display:flex; flex-direction:column; transition:background 0.2s; }
.video-card:hover { background:var(--cream); }
.video-thumb-area { background:var(--purple-deeper); aspect-ratio:16/9; display:flex; align-items:center; justify-content:center; position:relative; }
.video-thumb-play { width:44px; height:44px; background:rgba(169,150,57,0.85); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1rem; }
.video-card-body { padding:1.8rem; display:flex; flex-direction:column; gap:0.7rem; flex:1; }
.video-tag { display:inline-block; font-family:'DM Mono',monospace; font-size:0.56rem; letter-spacing:0.15em; text-transform:uppercase; padding:0.25rem 0.65rem; background:rgba(88,42,114,0.08); color:var(--purple); border:1px solid rgba(88,42,114,0.15); align-self:flex-start; }
.video-title { font-family:'Cormorant Garamond',serif; font-size:1.3rem; font-weight:700; color:var(--purple-deeper); line-height:1.2; }
.video-desc { font-size:0.83rem; font-weight:300; line-height:1.7; color:var(--text-mid); flex:1; }
.video-footer { display:flex; justify-content:space-between; align-items:center; margin-top:0.5rem; }
.video-date { font-family:'DM Mono',monospace; font-size:0.58rem; letter-spacing:0.1em; color:rgba(61,48,32,0.4); text-transform:uppercase; }
.video-watch-link { font-family:'DM Mono',monospace; font-size:0.62rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--purple); text-decoration:none; }
.video-watch-link:hover { color:var(--gold); }

/* ── ABOUT PAGE: RESPONSIVE GRID OVERRIDES ── */
@media (max-width: 900px) {
  .credential-grid { grid-template-columns: 1fr 1fr; }
  .geo-grid { grid-template-columns: 1fr 1fr; }
  .community-grid { grid-template-columns: 1fr 1fr; }
  .partner-card { padding: 1.5rem; }
}
@media (max-width: 600px) {
  .credential-grid { grid-template-columns: 1fr; }
  .geo-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
}

/* ── ACF: VIDEO ARCHIVE GRID ── */
.video-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .video-archive-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .video-archive-grid { grid-template-columns: 1fr; }
}

/* ── ACF: GUIDE COMING SOON STATE ── */
.guide-coming-soon { opacity: 0.72; }
.guide-download-soon {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(88,42,114,0.4);
  cursor: default;
  margin-top: auto;
}

/* ── HUBSPOT FORM STYLING ────────────────────────────────────────────────── */
/* Uses hbspt.forms.create() legacy API — renders into page DOM, CSS works  */

.pirum-hs-wrap { width: 100%; position: relative; z-index: 1; }
.pirum-hs-wrap .hs-form-frame,
.pirum-hs-wrap .hs-form-frame iframe { width: 100% !important; }

.pirum-hs-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pirum-hs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 0.25rem;
}
.pirum-hs-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.4);
  margin: 0 0 1.2rem;
}

/* Remove HubSpot's outer form padding/margin */
.pirum-hs-wrap .hs-form { margin: 0 !important; padding: 0 !important; }
.pirum-hs-wrap fieldset { max-width: none !important; margin: 0 0 0.6rem !important; padding: 0 !important; border: none !important; }

/* Field wrapper */
.pirum-hs-wrap .hs-form-field { margin-bottom: 0.6rem !important; }

/* Labels */
.pirum-hs-wrap .hs-form-field > label {
  font-family: 'DM Mono', monospace !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(245,240,232,0.45) !important;
  margin-bottom: 0.25rem !important;
  display: block !important;
  font-weight: 400 !important;
}

/* All inputs */
.pirum-hs-wrap .hs-input,
.pirum-hs-wrap input[type="text"],
.pirum-hs-wrap input[type="email"],
.pirum-hs-wrap input[type="tel"],
.pirum-hs-wrap input[type="number"],
.pirum-hs-wrap select,
.pirum-hs-wrap textarea {
  width: 100% !important;
  box-sizing: border-box !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(169,150,57,0.25) !important;
  border-radius: 2px !important;
  color: #f5f0e8 !important;
  padding: 0.6rem 0.8rem !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.88rem !important;
  outline: none !important;
  transition: border-color 0.2s, background 0.2s !important;
  margin: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.pirum-hs-wrap .hs-input:focus,
.pirum-hs-wrap input:focus,
.pirum-hs-wrap select:focus,
.pirum-hs-wrap textarea:focus {
  border-color: rgba(169,150,57,0.6) !important;
  background: rgba(255,255,255,0.09) !important;
}
.pirum-hs-wrap input::placeholder,
.pirum-hs-wrap textarea::placeholder { color: rgba(245,240,232,0.2) !important; }

/* Select arrow */
.pirum-hs-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(169,150,57,0.5)'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.8rem center !important;
  padding-right: 2rem !important;
}
.pirum-hs-wrap select option { background: #1e0c2a; color: #f5f0e8; }
.pirum-hs-wrap textarea { min-height: 80px !important; resize: vertical !important; }

/* Two-column rows */
.pirum-hs-wrap .form-columns-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.6rem !important;
}
.pirum-hs-wrap .form-columns-2 .hs-form-field { float: none !important; width: auto !important; }
.pirum-hs-wrap .form-columns-1 { width: 100% !important; }

/* Submit button */
.pirum-hs-wrap .hs-submit { margin-top: 0.4rem !important; }
.pirum-hs-wrap .hs-button,
.pirum-hs-wrap input[type="submit"] {
  width: 100% !important;
  padding: 0.85rem !important;
  background: #a99639 !important;
  color: #1e0c2a !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.pirum-hs-wrap .hs-button:hover,
.pirum-hs-wrap input[type="submit"]:hover { background: #c4b050 !important; }

/* Errors */
.pirum-hs-wrap .hs-error-msgs {
  list-style: none !important;
  padding: 0 !important;
  margin: 0.2rem 0 0 !important;
}
.pirum-hs-wrap .hs-error-msgs li label {
  font-size: 0.62rem !important;
  color: #e07070 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  font-weight: 400 !important;
}

/* Success */
.pirum-hs-wrap .submitted-message {
  font-family: 'DM Mono', monospace !important;
  font-size: 0.85rem !important;
  color: #f5f0e8 !important;
  padding: 1.5rem !important;
  border: 1px solid rgba(169,150,57,0.4) !important;
  border-radius: 2px !important;
  text-align: center !important;
  background: transparent !important;
}

/* GDPR / legal */
.pirum-hs-wrap .legal-consent-container,
.pirum-hs-wrap .hs-richtext {
  font-family: 'DM Mono', monospace !important;
  font-size: 0.6rem !important;
  color: rgba(245,240,232,0.3) !important;
  line-height: 1.6 !important;
  margin-top: 0.6rem !important;
}
.pirum-hs-wrap .legal-consent-container a { color: rgba(169,150,57,0.6) !important; }

/* Calendly link */
.hs-calendly {
  text-align: center;
  margin-top: 0.9rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.06em;
}
.hs-calendly a { color: var(--gold-light); text-decoration: none; }
.hs-calendly a:hover { text-decoration: underline; }

/* Hide HubSpot branding */
.pirum-hs-wrap .hs-form-boilerplate { display: none !important; }

@media (max-width: 600px) {
  .pirum-hs-wrap .form-columns-2 { grid-template-columns: 1fr !important; }
}
