  :root {
    --ink: #1a1410;
    --rose: #8B2635;
    --rose-light: #b5404f;
    --rose-pale: #f5eaea;
    --gold: #b8933a;
    --gold-light: #d4b06a;
    --sage: #4a5e4e;
    --sage-light: #6b8a70;
    --cream: #faf7f2;
    --warm-gray: #e8e2d9;
    --mid-gray: #9a9189;
    --text: #2d2620;
    --text-light: #6b6058;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Libre Franklin', sans-serif;
    background: var(--cream);
    color: var(--text);
    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: 1.25rem 4rem;
    background: rgba(250,247,242,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--warm-gray);
    transition: padding 0.3s;
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--rose);
    letter-spacing: 0.02em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--ink); font-weight: 300; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--rose); }
  .nav-cta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--rose);
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--rose-light); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 6rem 4rem;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 0.25rem;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--rose);
    font-weight: 300;
  }
  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.3;
  }
  .hero-desc {
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 3rem;
    font-weight: 300;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--rose);
    padding: 0.9rem 2rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--rose-light); transform: translateY(-1px); }
  .btn-secondary {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose);
    border: 1.5px solid var(--rose);
    padding: 0.9rem 2rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { background: var(--rose); color: var(--cream); }

  .hero-right {
    position: relative;
    background: var(--ink);
    overflow: hidden;
  }
  .hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
      repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
    background-size: 24px 24px;
  }
  .hero-visual {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
  }
  .hero-emblem {
    width: 180px;
    height: 180px;
    margin-bottom: 3rem;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    width: 100%;
    max-width: 360px;
  }
  .stat-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem;
    text-align: center;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  .stat-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }
  .hero-tagline {
    margin-top: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    text-align: center;
    letter-spacing: 0.03em;
  }

  /* ── SECTION SCAFFOLDING ── */
  section { position: relative; }
  .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
  .section-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.25rem;
  }
  .section-title em { font-style: italic; color: var(--rose); }
  .section-lead {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-light);
    font-weight: 300;
    max-width: 620px;
  }

  /* ── ABOUT / THREAD ── */
  .about-section {
    padding: 7rem 0;
    background: white;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-top: 4rem;
  }
  .about-text p {
    font-size: 0.97rem;
    line-height: 1.9;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 1.25rem;
  }
  .about-text strong { color: var(--text); font-weight: 500; }
  .thread-box {
    background: var(--rose);
    padding: 3rem;
    position: relative;
    overflow: hidden;
  }
  .thread-box::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 10rem;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    font-weight: 300;
  }
  .thread-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: white;
    line-height: 1.45;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  .thread-attribution {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }
  .clients-row {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .client-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    border: 1px solid var(--warm-gray);
    padding: 0.4rem 0.85rem;
    background: var(--cream);
  }

  /* ── PRACTICE AREAS ── */
  .practice-section {
    padding: 7rem 0;
    background: var(--cream);
  }
  .practice-header {
    margin-bottom: 4rem;
  }
  .practice-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .practice-card {
    background: white;
    padding: 2.5rem;
    border-top: 3px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
    cursor: default;
  }
  .practice-card:hover { transform: translateY(-4px); }
  .practice-card.dennis { border-top-color: var(--sage); }
  .practice-card.kathleen { border-top-color: var(--rose); }
  .practice-card.joint { border-top-color: var(--gold); }
  .practice-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .practice-card-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
  }
  .practice-card.dennis .practice-card-label { color: var(--sage); }
  .practice-card.kathleen .practice-card-label { color: var(--rose); }
  .practice-card.joint .practice-card-label { color: var(--gold); }
  .practice-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .practice-card p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 1.5rem;
  }
  .practice-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .practice-list li {
    font-size: 0.78rem;
    color: var(--text-light);
    padding-left: 1rem;
    position: relative;
    font-weight: 400;
  }
  .practice-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--warm-gray);
  }

  /* ── CONSULTANTS ── */
  .consultants-section {
    padding: 7rem 0;
    background: var(--ink);
  }
  .consultants-section .section-title { color: var(--cream); }
  .consultants-section .section-lead { color: rgba(255,255,255,0.45); }
  .consultants-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 4rem;
  }
  .consultant-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .consultant-card:hover { background: rgba(255,255,255,0.05); }
  .consultant-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
  }
  .consultant-card.kathleen::after { background: var(--rose); }
  .consultant-card.dennis::after { background: var(--sage-light); }
  .consultant-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1;
  }
  .consultant-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
  }
  .consultant-card.kathleen .consultant-title { color: var(--rose-light); }
  .consultant-card.dennis .consultant-title { color: var(--sage-light); }
  .consultant-bio {
    font-size: 0.9rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    margin-bottom: 2rem;
  }
  .credential-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .credential-list li {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
  }
  .credential-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    font-size: 0.45rem;
    top: 0.25rem;
  }
  .consultant-card.kathleen .credential-list li::before { color: var(--rose); }
  .consultant-card.dennis .credential-list li::before { color: var(--sage-light); }

  /* ── IMPACT ── */
  .impact-section {
    padding: 7rem 0;
    background: white;
  }
  .impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 4rem;
  }
  .impact-card {
    padding: 2.75rem;
    border: 1px solid var(--warm-gray);
    position: relative;
  }
  .impact-region {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }
  .impact-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1.25;
  }
  .impact-card p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
  }
  .impact-tag {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 0;
  }
  .impact-tag.disability { background: var(--rose-pale); color: var(--rose); }
  .impact-tag.change { background: #eef3ef; color: var(--sage); }
  .impact-tag.joint { background: #fdf6e3; color: var(--gold); }

  /* ── THOUGHT LEADERSHIP ── */
  .thought-section {
    padding: 7rem 0;
    background: var(--cream);
  }
  .thought-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }
  .thought-card {
    background: white;
    padding: 2rem;
    border-bottom: 2px solid var(--warm-gray);
    transition: border-color 0.3s;
  }
  .thought-card:hover { border-bottom-color: var(--rose); }
  .thought-type {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 0.75rem;
  }
  .thought-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 0.75rem;
  }
  .thought-card p {
    font-size: 0.82rem;
    line-height: 1.75;
    color: var(--text-light);
    font-weight: 300;
  }

  /* ── APPROACH / VALUES ── */
  .values-section {
    padding: 7rem 0;
    background: var(--rose);
    overflow: hidden;
    position: relative;
  }
  .values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.03) 0,
      rgba(255,255,255,0.03) 1px,
      transparent 0,
      transparent 50%
    );
    background-size: 20px 20px;
  }
  .values-section .section-label { color: rgba(255,255,255,0.5); }
  .values-section .section-label::before { background: rgba(255,255,255,0.3); }
  .values-section .section-title { color: white; }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 4rem;
  }
  .value-box {
    background: rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 1.75rem;
  }
  .value-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    margin-bottom: 0.75rem;
  }
  .value-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.75rem;
  }
  .value-box p {
    font-size: 0.82rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
  }

  /* ── CONTACT ── */
  .contact-section {
    padding: 7rem 0;
    background: white;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-top: 4rem;
  }
  .contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 1rem;
  }
  .contact-info p {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 1.5rem;
  }
  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .contact-detail-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid-gray);
    min-width: 80px;
    padding-top: 0.1rem;
  }
  .contact-detail-value {
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 400;
  }
  .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-group label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    border: 1px solid var(--warm-gray);
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--rose); }
  .form-group textarea { min-height: 120px; resize: vertical; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--rose-light);
    letter-spacing: 0.02em;
  }
  .footer-logo span { color: rgba(255,255,255,0.3); font-weight: 300; }
  .footer-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    font-weight: 300;
  }
  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .footer-links a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--rose-light); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow { animation: fadeUp 0.6s ease both; }
  .hero h1 { animation: fadeUp 0.6s 0.1s ease both; }
  .hero-sub { animation: fadeUp 0.6s 0.2s ease both; }
  .hero-desc { animation: fadeUp 0.6s 0.3s ease both; }
  .hero-actions { animation: fadeUp 0.6s 0.4s ease both; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 1.25rem 2rem; }
    .nav-links { display: none; }
    .section-inner { padding: 0 2rem; }
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 7rem 2rem 3rem; }
    .hero-right { min-height: 380px; }
    .about-grid,
    .consultants-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .practice-cards { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .thought-grid { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: 1fr; }
    footer { padding: 2rem; flex-direction: column; align-items: flex-start; }
  }

  /* ── SKIP LINK (accessibility) ── */
  .skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--rose);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.2s;
    border-radius: 0 0 4px 4px;
  }
  .skip-link:focus {
    top: 0;
    outline: 3px solid var(--gold);
    outline-offset: 2px;
  }

  /* ── FOCUS STYLES (WCAG 2.4.7 / 2.4.11) ── */
  :focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
  }
  /* Remove default outline only when focus-visible is supported */
  :focus:not(:focus-visible) { outline: none; }

  /* ── LOGO IMAGES ── */
  .nav-logo-img {
    height: 48px;
    width: auto;
    display: block;
  }
  /* Nav is on cream bg so logo shows fine */

  .hero-emblem-img {
    width: 220px;
    height: auto;
    margin-bottom: 3rem;
    border-radius: 8px;
    opacity: 0.18;
    mix-blend-mode: luminosity;
  }

  .footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.55;
  }

  /* ── HIGH CONTRAST / REDUCED MOTION ── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* ── IMPROVED COLOR CONTRAST ── */
  /* Boost mid-gray text to meet WCAG AA 4.5:1 on white/cream */
  .section-lead { color: #5a5249; }
  .about-text p { color: #5a5249; }
  .practice-card p { color: #5a5249; }
  .impact-card p { color: #5a5249; }
  .thought-card p { color: #5a5249; }
  .hero-desc { color: #5a5249; }
  /* stat labels on dark bg - already high contrast */

  /* Improve placeholder contrast */
  ::placeholder { color: #8a8078; opacity: 1; }

  /* ── MINIMUM TOUCH TARGETS (WCAG 2.5.5) ── */
  .nav-links a {
    padding: 0.5rem 0.25rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .btn-primary, .btn-secondary, .nav-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* ── FORM ACCESSIBILITY ── */
  .form-group label {
    color: #4a4038; /* boosted contrast */
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    color: var(--text);
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: 3px solid var(--gold);
    outline-offset: 0;
    border-color: var(--rose);
  }
  /* Required field indicator */
  label[for="fname"]::after,
  label[for="lname"]::after,
  label[for="email"]::after {
    content: ' *';
    color: var(--rose);
    font-weight: 700;
  }

  /* ── PRINT STYLES ── */
  @media print {
    nav, .hero-actions, .contact-form, footer { display: none; }
    .hero { min-height: auto; grid-template-columns: 1fr; }
    .hero-right { display: none; }
    body { background: white; color: black; }
  }
