
  :root {
    --navy: #00205B;
    --navy-soft: #1E3A6E;
    --red: #BF0D3E;
    --royal: #0044C2;
    --white: #FFFFFF;
    --paper: #EEF0F2;
    --steel: #5B6472;
    --steel-light: #8B95A5;
    --hairline: rgba(255,255,255,0.14);
    --hairline-dark: rgba(0,32,91,0.12);

    --display: 'Zilla Slab', Georgia, serif;
    --display-impact: 'Anton', 'Zilla Slab', Georgia, serif;
    --body: 'Inter', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', 'Courier New', monospace;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--body);
    color: var(--navy);
    background: var(--paper);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
  }
  a { color: inherit; text-decoration: none; }
  .container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

  /* ===== BUNTING DIVIDER (signature motif) ===== */
  .bunting {
    height: 10px;
    width: 100%;
    background-repeat: repeat-x;
    background-size: 16px 10px;
    background-position: center;
    opacity: 0.85;
  }
  .bunting-red-on-navy { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpolygon%20points%3D%220%2C0%2020%2C0%2010%2C18%22%20fill%3D%22%23CC2936%22/%3E%3C/svg%3E"); background-color: var(--navy); }
  .bunting-navy-on-red { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpolygon%20points%3D%220%2C0%2020%2C0%2010%2C18%22%20fill%3D%22%230A1628%22/%3E%3C/svg%3E"); background-color: var(--red); }
  .bunting-navy-on-paper { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpolygon%20points%3D%220%2C0%2020%2C0%2010%2C18%22%20fill%3D%22%230A1628%22/%3E%3C/svg%3E"); background-color: var(--paper); }
  .bunting-paper-on-navy { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpolygon%20points%3D%220%2C0%2020%2C0%2010%2C18%22%20fill%3D%22%23EEF0F2%22/%3E%3C/svg%3E"); background-color: var(--navy); }

  /* ===== NAV ===== */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--navy);
    border-bottom: 3px solid var(--red);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    max-width: 1180px;
    margin: 0 auto;
  }
  .brand-lockup { display: flex; align-items: center; gap: 12px; }
  .mark { display: block; }
  .mark-nav { height: 38px; width: auto; }
  .mark-footer { height: 44px; width: auto; }
  .wordmark {
    font-family: var(--display);
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 0.01em;
    text-transform: uppercase;
  }
  .wordmark span { color: var(--red); }
  .nav-links { display: flex; gap: 34px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
  .nav-links a { color: var(--steel-light); position: relative; padding-bottom: 4px; transition: color 0.2s ease; }
  .nav-links a:hover, .nav-links a:focus-visible { color: var(--white); }
  .nav-links a.active { color: var(--white); }
  .nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 3px;
    background: var(--red);
    clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%);
  }
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-mobile-panel {
    display: none;
    flex-direction: column;
    background: var(--navy-soft);
    border-top: 1px solid var(--hairline);
  }
  .nav-mobile-panel a {
    padding: 16px 32px;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
    border-bottom: 1px solid var(--hairline);
  }
  .nav-mobile-panel a.active { color: var(--white); }
  .nav-mobile-panel a:last-child { border-bottom: none; }
  .nav-mobile-panel.is-open { display: flex; }
  @media (max-width: 760px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
  }

  /* ===== HERO ===== */
  .hero {
    background: var(--navy);
    color: var(--white);
    position: relative;
    padding: 84px 0 0;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 43px, var(--hairline) 43px, var(--hairline) 44px),
      repeating-linear-gradient(90deg, transparent, transparent 43px, var(--hairline) 43px, var(--hairline) 44px);
    opacity: 0.18;
    mask-image: radial-gradient(ellipse 70% 55% at 30% 25%, black 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    min-height: 560px;
  }
  .hero-copy {
    position: relative;
    z-index: 2;
    padding: 40px 0 64px;
  }
  .eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--red); }
  h1 {
    font-family: var(--display-impact);
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 0.96;
    letter-spacing: 0.005em;
    margin-bottom: 30px;
    max-width: 640px;
  }
  h1 em {
    font-style: normal;
    color: var(--red);
  }
  .hero-sub {
    font-size: 17.5px;
    line-height: 1.65;
    color: rgba(255,255,255,0.72);
    max-width: 460px;
    margin-bottom: 38px;
  }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 15px 28px;
    border-radius: 2px;
    transition: all 0.2s ease;
    display: inline-block;
  }
  .btn-primary { background: var(--red); color: var(--white); }
  .btn-primary:hover, .btn-primary:focus-visible { background: #9C0A32; }
  .btn-secondary { border: 1px solid var(--hairline); color: var(--white); }
  .btn-secondary:hover, .btn-secondary:focus-visible { border-color: var(--white); background: rgba(255,255,255,0.06); }

  .hero-mark-wrap {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
  }
  .mark-hero {
    width: 108%;
    max-width: none;
    transform: rotate(0deg) translateX(6%);
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.3));
  }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; min-height: 0; }
    .hero-mark-wrap { justify-content: center; margin-top: -20px; order: -1; }
    .mark-hero { width: 62%; transform: rotate(0deg); }
    .hero-copy { padding-top: 8px; text-align: left; }
    h1 { max-width: 100%; }
  }

  /* ===== MISSION BAND ===== */
  .mission-band {
    background: var(--navy-soft);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    padding: 26px 0;
    text-align: center;
  }
  .mission-line {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.68);
  }

  /* ===== PHILOSOPHY SECTION ===== */
  .philosophy { background: var(--paper); padding: 96px 0 88px; position: relative; overflow: hidden; }
  .phil-watermark {
    position: absolute;
    top: -40px;
    right: -60px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 340px;
    line-height: 1;
    color: rgba(0,32,91,0.035);
    user-select: none;
    pointer-events: none;
    z-index: 0;
  }
  .phil-header { max-width: 680px; margin-bottom: 52px; position: relative; z-index: 1; }
  .phil-header .eyebrow { color: var(--royal); }
  .phil-header .eyebrow::before { background: var(--royal); }
  h2 {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(30px, 4.6vw, 54px);
    line-height: 1.04;
    margin-bottom: 24px;
    color: var(--navy);
  }
  h2 em { font-style: normal; color: var(--red); }
  .phil-body {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--steel);
    max-width: 620px;
    position: relative;
    z-index: 1;
    padding-left: 22px;
    border-left: 3px solid var(--royal);
  }
  .phil-body p + p { margin-top: 16px; }
  .phil-body strong { color: var(--navy); font-weight: 700; }

  /* Lineup list (3 W's — real sequence) */
  .lineup { margin-top: 68px; position: relative; z-index: 1; }
  .lineup-row {
    display: grid;
    grid-template-columns: 130px 200px 1fr;
    gap: 24px;
    padding: 34px 0;
    border-bottom: 1px solid var(--hairline-dark);
    align-items: center;
  }
  .lineup-row:first-child { border-top: 1px solid var(--hairline-dark); }
  .lineup-num {
    font-family: var(--display);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--red);
  }
  .lineup-title {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22px;
    color: var(--navy);
  }
  .lineup-desc { font-size: 15px; line-height: 1.65; color: var(--steel); }
  @media (max-width: 700px) {
    .lineup-row { grid-template-columns: 70px 1fr; }
    .lineup-title { grid-column: 2; }
    .lineup-desc { grid-column: 2; }
    .lineup-num { font-size: 44px; }
    .phil-watermark { display: none; }
  }

  /* ===== PULL QUOTE ===== */
  .pullquote-section { background: var(--navy); padding: 76px 0; }
  .pq-count {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.12em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .pullquote {
    font-family: var(--display);
    font-weight: 600;
    font-style: normal;
    font-size: clamp(24px, 3.4vw, 36px);
    line-height: 1.35;
    color: var(--white);
    max-width: 760px;
  }
  .pullquote em { font-style: normal; color: var(--red); }

  /* ===== FOOTER ===== */
  footer { background: var(--navy); color: var(--white); padding: 60px 0 32px; }
  .footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--hairline);
  }
  .footer-brand .brand-lockup { margin-bottom: 12px; }
  .footer-tagline { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--red); text-transform: uppercase; font-weight: 600; }
  .footer-col-title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel-light); margin-bottom: 14px; }
  .footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(255,255,255,0.78); margin-bottom: 8px; }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
    gap: 12px; padding-top: 24px; font-size: 12.5px; color: var(--steel-light);
  }
  .footer-bottom a { color: var(--steel-light); }
  .footer-bottom a:hover { color: var(--white); }

  /* ===== SOCIAL ICONS ===== */
  .social-icons { display: flex; gap: 12px; margin-top: 4px; }
  .social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--hairline);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .social-icon-btn:hover, .social-icon-btn:focus-visible {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
  }
  .social-icon-btn svg { width: 18px; height: 18px; fill: currentColor; }
  .social-icons-light .social-icon-btn { background: rgba(10,22,40,0.05); border-color: var(--hairline-dark); color: var(--steel); }
  .social-icons-light .social-icon-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }

  /* ===== CORE VALUES (LET'ER RIP) ===== */
  .values-intro { font-size: 16px; line-height: 1.7; color: var(--steel); max-width: 640px; margin-bottom: 12px; }
  .values-intro strong { color: var(--red); font-weight: 700; }
  .values-list { margin-top: 44px; }
  .values-row {
    display: grid;
    grid-template-columns: 46px 52px 230px 1fr;
    gap: 22px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--hairline-dark);
  }
  .values-row:first-child { border-top: 1px solid var(--hairline-dark); }
  .values-letter {
    font-family: var(--display-impact);
    font-weight: 400;
    font-size: 30px;
    color: var(--red);
    line-height: 1;
    text-align: center;
  }
  .values-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .values-title {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16.5px;
    color: var(--navy);
    letter-spacing: 0.01em;
  }
  .values-desc { font-size: 14.5px; line-height: 1.6; color: var(--steel); }
  .values-desc strong { color: var(--red); font-weight: 700; }
  @media (max-width: 720px) {
    .values-row { grid-template-columns: 34px 40px 1fr; }
    .values-desc { grid-column: 1 / -1; padding-left: 74px; margin-top: -6px; }
  }

  .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
  }

  /* ===== INTERIOR PAGE HERO (Philosophy, Teams, Coaches, Lessons, Contact) ===== */
  .page-hero {
    background: var(--navy);
    color: var(--white);
    padding: 64px 0 52px;
    position: relative;
    border-bottom: 3px solid var(--red);
  }
  .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 43px, var(--hairline) 43px, var(--hairline) 44px),
      repeating-linear-gradient(90deg, transparent, transparent 43px, var(--hairline) 43px, var(--hairline) 44px);
    opacity: 0.16;
    mask-image: radial-gradient(ellipse 70% 90% at 20% 20%, black 0%, transparent 70%);
    pointer-events: none;
  }
  .page-hero-inner { position: relative; z-index: 1; max-width: 720px; }
  .page-hero h1 {
    font-family: var(--display);
    font-weight: 700;
    max-width: none;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.005em;
    margin-bottom: 0;
  }
  .page-hero-sub {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
  }

  /* ===== GENERIC SECTION ===== */
  .section { padding: 88px 0; }
  .section-tight { padding: 64px 0; }
  .section-alt { background: var(--white); }

  /* ===== TEAMS ===== */
  .team-card {
    background: var(--white);
    border: 1px solid var(--hairline-dark);
    border-radius: 4px;
    overflow: hidden;
    max-width: 720px;
  }
  .team-card-band {
    background: var(--navy);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .team-card-band h3 {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 26px;
    color: var(--white);
  }
  .team-status {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    padding: 6px 14px;
    border-radius: 2px;
  }
  .team-card-body { padding: 32px; }
  .team-card-body p { font-size: 15.5px; line-height: 1.7; color: var(--steel); margin-bottom: 18px; }
  .team-meta { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--hairline-dark); }
  .team-meta-item .label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel-light); margin-bottom: 6px; }
  .team-meta-item .value { font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--navy); }
  .teams-note {
    margin-top: 36px;
    font-size: 14.5px;
    color: var(--steel);
    max-width: 620px;
    padding: 18px 22px;
    border-left: 3px solid var(--royal);
    background: rgba(0,68,194,0.04);
  }

  /* ===== COACHES ===== */
  .coach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media (max-width: 900px) { .coach-grid { grid-template-columns: 1fr; max-width: 460px; } }
  .coach-card {
    background: var(--white);
    border: 1px solid var(--hairline-dark);
    border-radius: 4px;
    padding: 32px 26px;
  }
  .coach-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
    border: 2px solid var(--red);
  }
  .coach-name { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 4px; }
  .coach-role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
  .coach-bio { font-size: 14.5px; line-height: 1.65; color: var(--steel); }

  /* ===== FULL COACH PROFILE (rich content) ===== */
  .coach-profile {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 44px;
    padding: 48px 0;
    border-bottom: 1px solid var(--hairline-dark);
  }
  .coach-profile:first-of-type { border-top: 1px solid var(--hairline-dark); }
  .coach-profile-photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 4px;
    border: 3px solid var(--red);
  }
  .coach-profile-name { font-family: var(--display); font-weight: 700; font-size: 30px; color: var(--navy); line-height: 1.1; margin-bottom: 6px; }
  .coach-profile-role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); margin-bottom: 28px; }
  .coach-section { margin-bottom: 22px; }
  .coach-section-title {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--steel-light);
    margin-bottom: 8px;
  }
  .coach-section p { font-size: 15px; line-height: 1.7; color: var(--steel); }
  .coach-rapid-fire {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 28px 0;
    padding: 20px 24px;
    background: var(--paper);
    border-radius: 4px;
  }
  .rapid-fire-item .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel-light); margin-bottom: 4px; }
  .rapid-fire-item .value { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--navy); }
  .coach-final-thought {
    font-family: var(--display);
    font-weight: 500;
    font-size: 17px;
    line-height: 1.6;
    color: var(--navy);
    border-left: 3px solid var(--royal);
    padding-left: 20px;
    margin-top: 8px;
  }
  @media (max-width: 720px) {
    .coach-profile { grid-template-columns: 1fr; }
    .coach-profile-photo { max-width: 260px; }
  }

  /* ===== PRIVATE LESSONS ===== */
  .lesson-intro { max-width: 640px; font-size: 16.5px; line-height: 1.75; color: var(--steel); margin-bottom: 48px; }
  .lesson-intro strong { color: var(--navy); }
  .instructor-row {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 26px 0;
    border-bottom: 1px solid var(--hairline-dark);
  }
  .instructor-row:first-of-type { border-top: 1px solid var(--hairline-dark); }
  .instructor-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--navy); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display); font-weight: 700; font-size: 20px;
    border: 2px solid var(--royal);
  }
  .instructor-name { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--navy); }
  .instructor-focus { font-size: 14px; color: var(--steel); margin-top: 4px; }
  @media (max-width: 640px) {
    .instructor-row { grid-template-columns: 60px 1fr; }
    .instructor-row .btn { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }
  }

  /* ===== CONTACT ===== */
  .contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
  @media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 8px;
  }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    font-family: var(--body);
    font-size: 15px;
    padding: 13px 14px;
    border: 1px solid var(--hairline-dark);
    border-radius: 2px;
    background: var(--white);
    color: var(--navy);
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--royal);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
  .form-note { font-size: 13.5px; color: var(--steel-light); margin-top: 4px; }
  .contact-side { background: var(--navy); color: var(--white); padding: 36px 32px; border-radius: 4px; height: fit-content; }
  .contact-side .footer-col-title { color: var(--steel-light); }
  .contact-side a { display: block; font-size: 15px; color: var(--white); margin-bottom: 10px; }
  .contact-side p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 24px; line-height: 1.6; }
  .btn-block { display: block; text-align: center; width: 100%; }
