:root {
    --cream: #f4ebdd;
    --ivory: #fff9f0;
    --ink: #17283d;
    --blue: #17304e;
    --terra: #b85f48;
    --terra-dark: #713225;
    --muted: #35465b;
    --light-text: #fff9f0;
    --line: rgba(23, 48, 78, 0.24);
    --display: Georgia, "Times New Roman", serif;
    --body: Arial, sans-serif;
  }

  * { box-sizing: border-box; }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
  }

  body {
    margin: 0;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
  }

  a { color: inherit; }

  .skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    transform: translateY(-150%);
    border: 2px solid var(--blue);
    background: var(--ivory);
    color: var(--blue);
    font-weight: 700;
  }

  .skip-link:focus { transform: translateY(0); }

  :focus-visible {
    outline: 3px solid var(--terra-dark);
    outline-offset: 4px;
  }

  .site-header {
    position: relative;
    z-index: 10;
    display: flex;
    width: min(100% - 48px, 1240px);
    min-height: 92px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 1px solid var(--line);
  }

  .brand {
    display: inline-flex;
    max-width: 220px;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-decoration: none;
  }

  .brand strong {
    display: block;
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--terra-dark);
    stroke-linecap: round;
    stroke-width: 2.4;
  }

  nav {
    display: flex;
    align-items: center;
    gap: 34px;
  }

  nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  nav > a:not(.nav-cta) {
    position: relative;
  }

  nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    background: var(--terra-dark);
    transition: transform 180ms ease;
  }

  nav > a:hover::after,
  nav > a:focus-visible::after { transform: scaleX(1); }

  .nav-cta {
    padding: 0 22px;
    background: var(--blue);
    color: var(--ivory);
  }

  .hero {
    display: grid;
    width: min(100% - 48px, 1240px);
    min-height: 680px;
    margin: 0 auto;
    padding: 72px 0 88px;
    grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
    align-items: center;
    gap: clamp(40px, 6vw, 90px);
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    max-width: 740px;
  }

  .eyebrow {
    display: flex;
    margin: 0 0 24px;
    align-items: center;
    gap: 12px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .eyebrow span {
    width: 30px;
    height: 2px;
    background: var(--terra-dark);
  }

  .eyebrow.light { color: var(--light-text); }
  .eyebrow.light span { background: var(--light-text); }

  h1, h2, h3, p { overflow-wrap: break-word; }

  h1, h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.02;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(52px, 6vw, 84px);
  }

  h2 { font-size: clamp(42px, 5vw, 68px); }

  .hero-intro {
    max-width: 610px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.65;
  }

  .hero-actions {
    display: flex;
    margin-top: 38px;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px 30px;
  }

  .button {
    display: inline-flex;
    min-height: 54px;
    padding: 14px 22px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
  }

  .button:hover { transform: translateY(-2px); }

  .button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .button-primary {
    background: var(--terra-dark);
    color: var(--ivory);
  }

  .button-primary:hover { background: var(--blue); }

  .text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border-bottom: 2px solid var(--blue);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
  }

  .hero-art {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--terra);
  }

  .hero-art::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 27%;
    content: "";
    background: var(--blue);
  }

  .hero-art svg {
    position: absolute;
    right: -10%;
    bottom: -4%;
    width: 116%;
    height: 108%;
    overflow: visible;
  }

  .arc {
    fill: none;
    stroke: var(--blue);
    stroke-linecap: round;
    stroke-width: 8;
    stroke-dasharray: 1400;
    animation: draw 1.25s ease-out both;
  }

  .arc-two {
    opacity: 0.72;
    stroke-width: 5;
    animation-delay: 120ms;
  }

  .arc-three {
    opacity: 0.45;
    stroke-width: 3;
    animation-delay: 220ms;
  }

  .art-label {
    position: absolute;
    z-index: 2;
    top: 28px;
    right: 28px;
    color: var(--ivory);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-align: right;
    text-transform: uppercase;
  }

  .art-dot {
    position: absolute;
    z-index: 2;
    top: 45%;
    left: 48%;
    width: 16px;
    height: 16px;
    border: 4px solid var(--ivory);
    border-radius: 50%;
    background: var(--terra-dark);
  }

  .art-caption {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 20px;
    padding: 8px 12px;
    background: var(--cream);
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  @keyframes draw {
    from { stroke-dashoffset: 1400; }
    to { stroke-dashoffset: 0; }
  }

  .services {
    padding: clamp(72px, 10vw, 128px) max(24px, calc((100vw - 1240px) / 2));
    overflow: hidden;
    background: var(--blue);
    color: var(--ivory);
  }

  .section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(250px, 0.6fr);
    gap: 30px 70px;
    align-items: end;
  }

  .section-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .section-heading h2 { max-width: 780px; }

  .section-heading > p:last-child {
    max-width: 370px;
    margin: 0 0 4px;
    color: var(--light-text);
  }

  .service-track {
    display: grid;
    margin-top: 68px;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 249, 240, 0.5);
  }

  .service-card {
    display: flex;
    min-height: 245px;
    margin: 0;
    padding: 30px 28px 28px;
    flex-direction: column;
    justify-content: space-between;
    gap: 48px;
    border-right: 1px solid rgba(255, 249, 240, 0.5);
  }

  .service-card:nth-child(2) { background: rgba(255, 249, 240, 0.08); }
  .service-card:nth-child(4) { background: var(--terra-dark); }

  .service-number {
    color: var(--light-text);
    font-family: var(--display);
    font-size: 15px;
  }

  .service-card h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(25px, 2.4vw, 32px);
    font-weight: 400;
    line-height: 1.12;
  }

  .clarity {
    display: grid;
    width: min(100% - 48px, 1120px);
    margin: 0 auto;
    padding: clamp(80px, 11vw, 140px) 0;
    grid-template-columns: minmax(0, 0.95fr) minmax(350px, 1fr);
    gap: clamp(70px, 10vw, 140px);
    align-items: start;
  }

  .clarity-heading {
    position: sticky;
    top: 120px;
  }

  .clarity-heading h2 { font-size: clamp(44px, 5vw, 64px); }

  .clarity-heading > p:last-child {
    max-width: 540px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 18px;
  }

  .clarity-notes {
    display: grid;
    gap: 0;
    border-top: 2px solid var(--terra-dark);
  }

  .clarity-notes article {
    display: grid;
    min-height: 220px;
    padding: 34px 0;
    grid-template-columns: 48px 1fr;
    align-content: start;
    column-gap: 24px;
    border-bottom: 1px solid var(--line);
  }

  .clarity-notes span {
    grid-row: span 2;
    color: var(--terra-dark);
    font-family: var(--display);
    font-size: 14px;
  }

  .clarity-notes h3 {
    margin: 0 0 14px;
    color: var(--blue);
    font-family: var(--display);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
  }

  .clarity-notes p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
  }

  .location {
    display: grid;
    grid-template-columns: minmax(300px, 5fr) minmax(0, 7fr);
    background: var(--terra-dark);
    color: var(--ivory);
  }

  .location-art {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--cream);
    color: var(--blue);
  }

  .location-art svg {
    position: absolute;
    bottom: -35px;
    left: 50%;
    width: 90%;
    transform: translateX(-50%);
  }

  .location-art path {
    fill: none;
    stroke: var(--blue);
    stroke-linecap: round;
    stroke-width: 5;
  }

  .location-art path + path {
    opacity: 0.5;
    stroke-width: 3;
  }

  .location-art span {
    position: absolute;
    top: 46px;
    left: 48px;
    font-family: var(--display);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 0.98;
  }

  .location-copy {
    padding: clamp(70px, 8vw, 112px) max(24px, calc((100vw - 1240px) / 2));
    padding-left: clamp(40px, 8vw, 120px);
  }

  .location-copy h2 { max-width: 650px; }

  .location-copy > p:not(.eyebrow) {
    max-width: 600px;
    margin: 30px 0 36px;
    font-size: 18px;
  }

  .button-light {
    background: var(--ivory);
    color: var(--blue);
  }

  .button-light:hover {
    background: var(--blue);
    color: var(--ivory);
  }

  footer {
    display: grid;
    min-height: 190px;
    padding: 50px max(24px, calc((100vw - 1240px) / 2));
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 32px;
    background: var(--blue);
    color: var(--ivory);
  }

  .footer-brand { color: var(--ivory); }

  footer > p {
    margin: 0;
    color: var(--light-text);
    font-size: 13px;
    text-align: center;
  }

  .footer-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-self: end;
    border-bottom: 2px solid var(--ivory);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }

  @media (max-width: 900px) {
    .site-header { min-height: 80px; }
    nav > a:not(.nav-cta) { display: none; }

    .hero {
      min-height: auto;
      grid-template-columns: 1fr;
      padding: 58px 0 64px;
    }

    .hero-art { min-height: 470px; }

    .section-heading { grid-template-columns: 1fr; }
    .section-heading > p:last-child { max-width: 540px; }

    .service-track {
      width: calc(100% + 24px);
      display: flex;
      padding-right: 24px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-color: var(--ivory) var(--blue);
    }

    .service-card {
      min-width: min(78vw, 320px);
      scroll-snap-align: start;
    }

    .clarity {
      grid-template-columns: 1fr;
      gap: 46px;
    }

    .clarity-heading { position: static; }
    .location { grid-template-columns: minmax(240px, 0.7fr) 1fr; }
    footer { grid-template-columns: 1fr; }
    footer > p { text-align: left; }
    .footer-link { justify-self: start; }
  }

  @media (max-width: 640px) {
    .site-header, .hero, .clarity { width: min(100% - 32px, 1240px); }
    .site-header { gap: 12px; }

    .brand {
      max-width: 170px;
      font-size: 10px;
    }

    .brand strong { font-size: 18px; }

    .brand-mark {
      width: 32px;
      height: 32px;
    }

    .nav-cta {
      padding: 0 14px;
      font-size: 12px;
    }

    .hero {
      gap: 48px;
      padding-top: 48px;
    }

    h1 { font-size: clamp(45px, 13.5vw, 62px); }
    h2 { font-size: clamp(40px, 12vw, 54px); }
    .hero-intro { margin-top: 24px; }

    .hero-actions {
      align-items: stretch;
      flex-direction: column;
    }

    .button, .text-link { width: 100%; }

    .text-link {
      justify-content: center;
      padding: 8px;
      text-align: center;
    }

    .hero-art { min-height: 390px; }

    .services {
      padding-right: 16px;
      padding-left: 16px;
    }

    .section-heading h2 { font-size: clamp(39px, 11.5vw, 52px); }
    .service-track { margin-top: 48px; }

    .service-card {
      min-width: 82vw;
      min-height: 230px;
    }

    .clarity { padding: 76px 0; }
    .clarity-heading > p:last-child { font-size: 17px; }

    .clarity-notes article {
      min-height: 190px;
      grid-template-columns: 38px 1fr;
      column-gap: 16px;
    }

    .clarity-notes h3 { font-size: 27px; }
    .location { grid-template-columns: 1fr; }
    .location-art { min-height: 330px; }

    .location-art span {
      top: 32px;
      left: 24px;
    }

    .location-copy { padding: 64px 16px 72px; }
    footer { padding: 48px 16px; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }