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

  :root {
    --aegean:   #0B3D6D;
    --slate:    #1E293B;
    --green:    #7AC143;
    --strait:   #1A78A5;
    --teal:     #0FA3A1;
    --white:    #FFFFFF;
    --off:      #F7F8F9;
    --rule:     #E2E6EA;
    --text:     #1E293B;
    --nav-h:    72px;
  }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
  }

  img { max-width: 100%; display: block; }

  /* ── NAV ── */
  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: var(--slate);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    z-index: 100;
  }

  .nav-mark img { height: 36px; width: auto; }

  .nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    white-space: nowrap;
  }

  .nav-links a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover,
  .nav-links a.active { color: var(--green); }

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: white;
  }

  section { scroll-margin-top: var(--nav-h); }

  /* ── HERO ── */
  #home {
    min-height: 100vh;
    background: var(--slate);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-h) + 3rem) 4rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-lockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
  }

  .hero-mark-img {
    width: 260px;
    height: auto;
    margin-bottom: 1.75rem;
  }

  .hero-practice-name {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: white;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
  }

  .hero-lockup-rule {
    width: 48px;
    height: 0.5px;
    background: rgba(255,255,255,0.2);
    margin: 0.75rem auto 0.75rem;
  }

  .hero-descriptor {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
  }

  .hero-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto 3rem;
  }

  .hero-display {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 200;
    color: white;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 0.15em;
  }

  .hero-display-2 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 200;
    color: var(--green);
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
  }

  .hero-body {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 2.5rem;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    background: var(--green);
    color: var(--slate);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2.5rem;
    border-radius: 2px;
    transition: background 0.2s;
  }

  .hero-cta:hover { background: white; }

  /* ── INTRO BAND ── */
  .intro-band {
    background: var(--aegean);
    padding: 5rem 4rem;
  }

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

  .intro-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    padding-top: 0.4rem;
    line-height: 1.4;
  }

  .intro-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: white;
    line-height: 1.7;
  }

  .intro-text strong {
    font-weight: 500;
    color: var(--green);
  }

  /* ── SHARED SECTION STYLES ── */
  .section-light  { background: var(--white); padding: 6rem 4rem; }
  .section-off    { background: var(--off);   padding: 6rem 4rem; }
  .section-dark   { background: var(--slate); padding: 6rem 4rem; }
  .section-aegean { background: var(--aegean);padding: 6rem 4rem; }

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
    display: block;
  }

  .section-eyebrow-blue {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--strait);
    margin-bottom: 1rem;
    display: block;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
  }

  .section-title-white {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
  }

  .section-intro {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 3rem;
    opacity: 0.85;
  }

  .section-intro-white {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 3rem;
  }

  .section-rule {
    width: 48px;
    height: 1px;
    background: var(--green);
    margin-bottom: 2.5rem;
  }

  /* ── SERVICES ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .service-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-top: 3px solid var(--green);
    padding: 2rem;
  }

  .service-number {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
    display: block;
  }

  .service-name {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .service-desc {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.7;
    opacity: 0.75;
  }

  /* ── THINKING BAND ── */
  .thinking-band {
    background: var(--off);
    padding: 4rem;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .thinking-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
  }

  .thinking-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--strait);
    flex-shrink: 0;
  }

  .thinking-statement {
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.6;
    flex: 1;
  }

  .thinking-statement strong {
    font-weight: 500;
    color: var(--aegean);
  }

  /* ── ABOUT ── */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .bio-name {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.25rem;
  }

  .bio-role {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--strait);
    margin-bottom: 1.25rem;
    display: block;
  }

  .bio-rule {
    width: 32px;
    height: 1px;
    background: var(--green);
    margin-bottom: 1.25rem;
  }

  .bio-text {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.75;
    opacity: 0.82;
  }

  .stream-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--rule);
  }

  .stream-pill {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--aegean);
    background: var(--white);
    border: 1px solid var(--rule);
    padding: 0.55rem 1.1rem;
  }

  /* ── PROJECTS ── */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .project-card {
    background: var(--off);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--aegean);
    padding: 2rem;
  }

  .project-type {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--strait);
    margin-bottom: 0.75rem;
    display: block;
  }

  .project-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .project-desc {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.65;
    opacity: 0.75;
  }

  .project-placeholder {
    background: var(--off);
    border: 1px dashed var(--rule);
    padding: 4rem 2rem;
    text-align: center;
    grid-column: 1 / -1;
  }

  .project-placeholder p {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text);
    opacity: 0.5;
    line-height: 1.7;
  }

  /* ── CTA BAND ── */
  .cta-band {
    background: var(--aegean);
    padding: 5rem 4rem;
    text-align: center;
  }

  .cta-inner { max-width: 640px; margin: 0 auto; }

  .cta-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 300;
    color: white;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .cta-sub {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin-bottom: 2rem;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--green);
    color: var(--slate);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2.5rem;
    border-radius: 2px;
    transition: background 0.2s;
  }

  .cta-btn:hover { background: white; }

  /* ── CONTACT ── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
  }

  .contact-label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.4rem;
    display: block;
    margin-top: 1.5rem;
  }

  .contact-label:first-child { margin-top: 0; }

  .contact-value {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
  }

  .contact-value a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
  }

  .contact-value a:hover { color: var(--green); }

  .form-field { margin-bottom: 1.1rem; }

  .form-field label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 0.4rem;
  }

  .form-field input,
  .form-field textarea {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.8rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: white;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
  }

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

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

  .form-submit {
    background: var(--green);
    color: var(--slate);
    border: none;
    padding: 0.85rem 2.25rem;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }

  .form-submit:hover { background: white; }

  /* ── FOOTER ── */
  footer {
    background: var(--aegean);
    padding: 3.5rem 4rem 0;
    margin: 0;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .footer-mark img { height: 38px; width: auto; margin-bottom: 1rem; }

  .footer-name {
    font-size: 13px;
    font-weight: 400;
    color: white;
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
  }

  .footer-descriptor {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
  }

  .footer-nav-label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1rem;
    display: block;
  }

  .footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

  .footer-nav a {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-nav a:hover { color: var(--green); }

  .footer-location {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
  }

  .footer-location strong {
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    display: block;
    margin-bottom: 0.2rem;
  }

  .footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .footer-copy {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.3);
  }

  .footer-tagline {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.06em;
  }

  /* Swoosh flush to bottom edge, no gap, transparent */
  .footer-swoosh {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
  }

  .footer-swoosh svg {
    display: block;
    width: 100%;
    height: auto;
  }

  /* ── MOBILE ── */
  @media (max-width: 600px) {
    .site-nav { padding: 0 1.5rem; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--slate); padding: 1.5rem 2rem; gap: 1.25rem; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    #home { padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem; }
    .hero-mark-img { width: 130px; }
    .hero-display, .hero-display-2 { font-size: clamp(2.5rem, 12vw, 4rem); }
    .intro-inner { grid-template-columns: 1fr; gap: 1rem; }
    .intro-band, .section-light, .section-off, .section-dark, .section-aegean, .thinking-band, .cta-band { padding: 3rem 1.5rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    footer { padding: 3rem 1.5rem 0; }
    .footer-inner { flex-direction: column; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .thinking-inner { flex-direction: column; gap: 1rem; }
  }

  /* ── ACCESSIBILITY ── */
  :focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
  }
