:root {
  --navy: #071421;
  --navy-2: #0c2235;
  --navy-3: #15344e;
  --gold: #c68d22;
  --gold-rich: #b9780b;
  --gold-bright: #ebc568;
  --gold-pale: #f6e8bf;
  --ivory: #fcfaf5;
  --cream: #f4efe5;
  --white: #ffffff;
  --ink: #0b1b2a;
  --muted: #66717a;
  --line: rgba(7, 20, 33, 0.14);
  --shadow: 0 28px 80px rgba(7, 20, 33, 0.12);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1240px, calc(100vw - 56px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
  font-family: var(--sans);
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.047em;
  line-height: 0.99;
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.9rem, 5.2vw, 5.25rem);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  padding: 0.8rem 1rem;
  color: var(--navy);
  background: var(--gold-bright);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* Header and brand */
.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  background: rgba(252, 250, 245, 0.97);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(7, 20, 33, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled,
.site-header-solid {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 40px rgba(7, 20, 33, 0.08);
}

.nav-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--navy);
  text-decoration: none;
}

.brand-symbol {
  position: relative;
  width: 54px;
  height: 54px;
  display: block;
  flex: 0 0 54px;
  overflow: hidden;
  background: var(--white);
}

.brand-symbol img {
  position: absolute;
  top: -30px;
  left: -47px;
  width: 150px;
  max-width: none;
  height: auto;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 0.42rem;
  color: var(--gold-rich);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.site-nav a {
  position: relative;
  color: #35414b;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  right: 0;
}

.site-nav .nav-cta {
  padding: 0.78rem 1.15rem;
  color: var(--navy);
  background: var(--gold-bright);
  border: 1px solid var(--gold-bright);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #f4d98e;
  border-color: #f4d98e;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
}

/* Shared type and actions */
.eyebrow {
  margin-bottom: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold-rich);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--gold-bright);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.86rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-gold {
  color: var(--navy);
  background: var(--gold-bright);
  box-shadow: 0 14px 35px rgba(198, 141, 34, 0.2);
}

.button-gold:hover {
  background: #f3d78d;
  box-shadow: 0 18px 44px rgba(198, 141, 34, 0.28);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(7, 20, 33, 0.15);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--gold-bright);
  background: rgba(7, 20, 33, 0.42);
}

.button-navy {
  width: 100%;
  color: var(--white);
  background: var(--navy);
}

.button-navy:hover {
  color: var(--navy);
  background: var(--gold-bright);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--gold-rich);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

/* Home hero */
.hero {
  position: relative;
  min-height: 850px;
  padding-top: 93px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-wash {
  position: absolute;
  inset: 93px 0 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 15, 25, 0.98) 0%, rgba(5, 15, 25, 0.92) 28%, rgba(5, 15, 25, 0.68) 48%, rgba(5, 15, 25, 0.12) 76%, rgba(5, 15, 25, 0.03) 100%),
    linear-gradient(0deg, rgba(5, 15, 25, 0.42), transparent 50%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 7rem;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  margin-bottom: 1.65rem;
  font-size: clamp(4.15rem, 7vw, 7.25rem);
  color: var(--white);
}

.hero h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero-lede {
  max-width: 635px;
  margin-bottom: 2.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
  line-height: 1.72;
}

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

.hero-service-rail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  color: var(--white);
  background: rgba(5, 15, 25, 0.9);
  border-top: 1px solid rgba(235, 197, 104, 0.25);
  backdrop-filter: blur(18px);
}

.rail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.rail-grid a {
  min-height: 107px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: background 180ms ease;
}

.rail-grid a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.rail-grid a:hover {
  background: rgba(198, 141, 34, 0.2);
}

.rail-grid span {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 0.9rem;
}

.rail-grid strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
}

/* Home services */
.section {
  padding: 138px 0;
}

.services-overview {
  background:
    linear-gradient(rgba(198, 141, 34, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 141, 34, 0.035) 1px, transparent 1px),
    var(--ivory);
  background-size: 80px 80px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.5fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: 4.25rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-intro {
  padding-bottom: 0.55rem;
}

.section-intro p {
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(7, 20, 33, 0.14);
  border: 1px solid rgba(7, 20, 33, 0.14);
}

.service-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.8rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 240ms ease, background 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 240ms ease;
}

.service-card:hover {
  z-index: 1;
  color: var(--white);
  background: var(--navy-2);
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-number {
  color: var(--gold-rich);
  font-family: var(--display);
  font-size: 0.88rem;
}

.service-icon {
  width: 58px;
  height: 58px;
  margin: 4rem 0 2rem;
  display: grid;
  place-items: center;
  color: var(--gold-rich);
  border: 1px solid rgba(198, 141, 34, 0.45);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 0.85rem;
  font-family: var(--display);
  font-size: 2.05rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 240ms ease;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.card-action {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding-top: 1.25rem;
  color: currentColor;
  border-top: 1px solid rgba(7, 20, 33, 0.12);
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card:hover .card-action {
  border-color: rgba(255, 255, 255, 0.15);
}

.card-action b {
  color: var(--gold-bright);
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

.service-card:hover .card-action b {
  transform: translateX(5px);
}

/* Brand promise */
.precision {
  padding: 138px 0;
  background: var(--cream);
}

.precision-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  box-shadow: var(--shadow);
}

.precision-panel {
  position: relative;
  min-height: 610px;
  padding: clamp(2.4rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: var(--navy);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.46), transparent 24%),
    linear-gradient(145deg, #f0cf79 0%, #c48a1e 58%, #a96806 100%);
}

.precision-panel::before,
.precision-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(7, 20, 33, 0.16);
  border-radius: 50%;
}

.precision-panel::before {
  width: 440px;
  height: 440px;
  right: -245px;
  bottom: -150px;
}

.precision-panel::after {
  width: 285px;
  height: 285px;
  right: -150px;
  bottom: -72px;
}

.precision-panel .eyebrow {
  color: var(--navy);
}

.precision-panel blockquote {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  font-family: var(--display);
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.gold-rule {
  position: relative;
  z-index: 1;
  width: 90px;
  height: 1px;
  background: var(--navy);
}

.precision-copy {
  padding: clamp(3rem, 7vw, 6.4rem);
  background: var(--white);
}

.precision-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.02rem;
}

.principle-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.principle-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.principle-list span {
  color: var(--gold-rich);
  font-family: var(--display);
  font-size: 0.86rem;
}

.principle-list p {
  margin: 0;
}

.principle-list strong,
.principle-list small {
  display: block;
}

.principle-list strong {
  margin-bottom: 0.25rem;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
}

.principle-list small {
  color: var(--muted);
  font-size: 0.84rem;
}

/* Approach */
.approach {
  background: var(--white);
}

.approach-heading {
  max-width: 880px;
  margin-bottom: 4rem;
}

.approach-heading > p:last-child {
  max-width: 620px;
  color: var(--muted);
}

.approach-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-steps li {
  min-height: 330px;
  padding: 2rem clamp(1.5rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.approach-steps li:first-child {
  padding-left: 0;
}

.approach-steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.approach-steps > li > span {
  color: var(--gold-rich);
  font-family: var(--display);
  font-size: 3.7rem;
  line-height: 1;
}

.approach-steps div {
  margin-top: auto;
}

.approach-steps h3 {
  margin-bottom: 0.6rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.approach-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Contact */
.contact {
  position: relative;
  padding: 138px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 80%, rgba(198, 141, 34, 0.2), transparent 30%),
    var(--navy-2);
}

.contact::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -240px;
  top: -250px;
  border: 1px solid rgba(235, 197, 104, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(235, 197, 104, 0.025), 0 0 0 148px rgba(235, 197, 104, 0.018);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.72fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: start;
}

.contact-copy {
  padding-top: 1.25rem;
}

.contact-copy h2 {
  font-size: clamp(3.4rem, 6vw, 6rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.66);
}

.contact-email {
  margin-top: 1.4rem;
  display: inline-flex;
  gap: 0.7rem;
  color: var(--gold-bright);
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid rgba(235, 197, 104, 0.5);
}

.contact-form {
  padding: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--ink);
  background: var(--ivory);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.27);
}

.form-head {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.25rem;
}

.form-head b {
  color: var(--gold-rich);
  font-family: var(--sans);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
}

.contact-form label {
  margin-bottom: 1.05rem;
  display: grid;
  gap: 0.45rem;
}

.contact-form label > span {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.84rem 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid rgba(7, 20, 33, 0.28);
  border-radius: 0;
  background: transparent;
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold-rich);
  box-shadow: 0 2px 0 var(--gold-rich);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.73rem;
  text-align: center;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.6);
  background: #030b12;
}

.footer-top {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.brand-footer .brand-symbol {
  background: var(--white);
}

.brand-footer .brand-copy small {
  color: var(--gold-bright);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--display);
  font-size: 1.12rem;
}

.footer-bottom {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem;
}

.footer-links a {
  font-size: 0.79rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-bottom > p {
  margin: 0;
  font-size: 0.76rem;
}

/* Services page */
.page-hero {
  position: relative;
  min-height: 650px;
  padding: 200px 0 110px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, var(--navy) 0%, var(--navy-2) 62%, #173650 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-rich), var(--gold-bright), var(--gold-rich));
}

.page-hero-orbit {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -150px;
  top: 24px;
  border: 1px solid rgba(235, 197, 104, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(235, 197, 104, 0.025), 0 0 0 170px rgba(235, 197, 104, 0.018);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.5fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: end;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(4rem, 7vw, 7.25rem);
}

.page-hero-copy {
  padding-bottom: 0.6rem;
}

.page-hero-copy > span {
  display: block;
  margin-bottom: 2.8rem;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1rem;
}

.page-hero-copy p {
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
}

.service-jump {
  position: sticky;
  z-index: 12;
  top: 93px;
  background: rgba(252, 250, 245, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.service-jump-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  overflow-x: auto;
}

.service-jump span {
  color: var(--gold-rich);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-jump a {
  position: relative;
  white-space: nowrap;
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.service-jump a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.service-jump a:hover::after {
  right: 0;
}

.service-detail {
  scroll-margin-top: 158px;
  background: var(--ivory);
}

.service-detail:nth-of-type(even) {
  background: var(--cream);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(4rem, 9vw, 8rem);
}

.detail-heading {
  position: sticky;
  top: 190px;
  align-self: start;
}

.detail-number {
  display: block;
  margin-bottom: 3.7rem;
  color: var(--gold);
  font-family: var(--display);
  font-size: 4.8rem;
  line-height: 0.8;
  opacity: 0.58;
}

.detail-heading > p:last-child {
  max-width: 510px;
  color: var(--muted);
}

.detail-content {
  margin-top: 3.8rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.detail-content h3 {
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.detail-content > p {
  color: var(--muted);
}

.check-list {
  margin: 2.2rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.check-list li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-rich);
  font-weight: 900;
}

.outcome {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold-rich);
}

.outcome span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-rich);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.outcome p {
  margin: 0;
}

.service-detail-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(198, 141, 34, 0.14), transparent 28%),
    var(--navy) !important;
}

.service-detail-dark .detail-heading > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.service-detail-dark .detail-number {
  color: var(--gold-bright);
}

.tax-grid {
  margin-top: 3.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(235, 197, 104, 0.24);
  border: 1px solid rgba(235, 197, 104, 0.24);
}

.tax-card {
  min-height: 285px;
  padding: 2rem;
  background: var(--navy-2);
  transition: background 200ms ease, transform 200ms ease;
}

.tax-card:hover {
  z-index: 1;
  background: var(--navy-3);
  transform: translateY(-4px);
}

.tax-card span {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 0.82rem;
}

.tax-card h3 {
  margin: 3.6rem 0 0.8rem;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.tax-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.89rem;
}

.service-note {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-note p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

.service-detail-soft {
  background: var(--cream) !important;
}

.services-cta {
  padding: 110px 0;
  color: var(--navy);
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.36), transparent 24%),
    linear-gradient(120deg, #b9780b, #e9c260 56%, #d39b2e);
}

.services-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.5fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: end;
}

.services-cta .eyebrow {
  color: var(--navy);
}

.services-cta h2 {
  margin-bottom: 0;
}

.services-cta-inner > div:last-child p {
  color: rgba(7, 20, 33, 0.74);
}

.services-cta .button-gold {
  color: var(--white);
  background: var(--navy);
  box-shadow: none;
}

.services-cta .button-gold:hover {
  color: var(--navy);
  background: var(--white);
}

/* Motion and focus */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .service-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.75fr);
    gap: 4rem;
  }

  .site-nav {
    gap: 1rem;
  }
}

@media (max-width: 920px) {
  :root {
    --container: min(100% - 36px, 760px);
  }

  .nav-wrap {
    min-height: 84px;
  }

  .menu-button {
    display: grid;
    gap: 5px;
    padding: 0.7rem;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    width: 25px;
    height: 2px;
    background: var(--navy);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    inset: 84px 18px auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.85rem;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 0.35rem;
    text-align: center;
  }

  .hero {
    min-height: 800px;
    padding-top: 87px;
  }

  .hero-media,
  .hero-wash {
    inset: 87px 0 0;
  }

  .hero-media img {
    object-position: 64% top;
  }

  .hero-wash {
    background: linear-gradient(90deg, rgba(5, 15, 25, 0.98) 0%, rgba(5, 15, 25, 0.86) 52%, rgba(5, 15, 25, 0.35) 100%);
  }

  .hero-inner {
    min-height: 610px;
    padding-bottom: 9rem;
  }

  .section-heading,
  .precision-grid,
  .contact-grid,
  .page-hero-grid,
  .detail-grid,
  .services-cta-inner {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .page-hero-grid,
  .services-cta-inner {
    gap: 1.6rem;
  }

  .precision-panel {
    min-height: 430px;
  }

  .approach-steps {
    grid-template-columns: 1fr;
  }

  .approach-steps li {
    min-height: auto;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-steps li:last-child {
    border-bottom: 0;
  }

  .approach-steps div {
    margin-top: 0;
  }

  .page-hero {
    padding-top: 170px;
  }

  .page-hero-copy > span {
    margin-bottom: 1rem;
  }

  .service-jump {
    top: 87px;
  }

  .detail-heading {
    position: static;
  }

  .detail-number {
    margin-bottom: 2.5rem;
  }

  .detail-content,
  .tax-grid {
    margin-top: 0;
  }

  .contact-grid {
    gap: 3.5rem;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 30px, 620px);
  }

  h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .section,
  .precision,
  .contact {
    padding: 92px 0;
  }

  .brand-symbol {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-symbol img {
    top: -27px;
    left: -42px;
    width: 134px;
  }

  .brand-copy strong {
    font-size: 1.1rem;
  }

  .brand-copy small {
    font-size: 0.49rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media img {
    object-position: 68% top;
  }

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(5, 15, 25, 0.97), rgba(5, 15, 25, 0.68)),
      linear-gradient(0deg, rgba(5, 15, 25, 0.65), transparent 60%);
  }

  .hero-inner {
    min-height: 575px;
    align-items: flex-end;
    padding-top: 5rem;
    padding-bottom: 10rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
  }

  .hero-lede {
    font-size: 0.98rem;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .rail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rail-grid a {
    min-height: 70px;
    padding: 0.75rem 0.85rem;
  }

  .rail-grid a:nth-child(3),
  .rail-grid a:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .rail-grid strong {
    font-size: 1rem;
  }

  .service-card-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 400px;
  }

  .precision-copy {
    padding: 3rem 1.7rem;
  }

  .approach-steps li {
    grid-template-columns: 70px 1fr;
  }

  .approach-steps > li > span {
    font-size: 2.9rem;
  }

  .form-row,
  .tax-grid {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-bottom {
    padding: 2rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    min-height: 160px;
  }

  .footer-bottom {
    min-height: 125px;
  }

  .page-hero {
    min-height: 590px;
    padding: 165px 0 90px;
  }

  .page-hero h1 {
    font-size: clamp(3.25rem, 14vw, 5rem);
  }

  .page-hero-orbit {
    width: 360px;
    height: 360px;
    right: -190px;
    top: 145px;
  }

  .service-jump-inner {
    gap: 1.2rem;
  }

  .service-detail {
    scroll-margin-top: 150px;
  }

  .detail-content {
    padding: 1.7rem;
  }

  .tax-card {
    min-height: 240px;
  }

  .services-cta {
    padding: 90px 0;
  }
}
