:root {
  --warm-white: #faf8f2;
  --white: #fffdf8;
  --cream: #f6efe5;
  --soft-stone: #f1ece4;
  --stone: #e1d8ca;
  --porcelain: #f3eee6;
  --mist: #dce7e3;
  --taupe: #918574;
  --charcoal: #242321;
  --muted: #615d55;
  --navy: #172638;
  --navy-soft: #26384b;
  --champagne: #b4935e;
  --line: rgba(36, 35, 33, 0.14);
  --line-soft: rgba(36, 35, 33, 0.08);
  --shadow: 0 24px 70px rgba(35, 31, 25, 0.1);
  --shadow-soft: 0 16px 44px rgba(35, 31, 25, 0.08);
  --radius: 8px;
  --max-width: 1180px;
  --header-height: 74px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  position: fixed;
  inset-inline: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  border: 0;
}

::selection {
  background: var(--mist);
  color: var(--navy);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 30;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(36, 35, 33, 0.08);
  background: rgba(250, 248, 242, 0.88);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 36px rgba(35, 31, 25, 0.06);
}

.header-shell {
  width: min(100%, calc(var(--max-width) + 88px));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 12px 34px;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) auto auto;
  align-items: center;
  gap: clamp(24px, 3vw, 38px);
}

.brand {
  min-width: 0;
  display: inline-grid;
  grid-template-columns: 49px minmax(0, auto);
  align-items: center;
  gap: 15px;
  width: fit-content;
}

.brand-mark {
  width: 49px;
  height: 49px;
  display: block;
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.brand-name {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.08;
}

.brand-line {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.32;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
}

.nav-index,
.nav-panel-rule {
  display: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(180, 147, 94, 0.38);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(35, 31, 25, 0.08);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(180, 147, 94, 0.74);
  outline-offset: 3px;
}

.nav-toggle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 1px;
  background: var(--navy);
  transform-origin: center;
  transition: transform 200ms ease;
}

.nav-toggle-line:first-child {
  transform: translate(-50%, -4px);
}

.nav-toggle-line:last-child {
  transform: translate(-50%, 4px);
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(180, 147, 94, 0.42);
  background: var(--cream);
  box-shadow: 0 10px 30px rgba(23, 38, 56, 0.1);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 18;
  display: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(16, 25, 35, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition:
    opacity 180ms ease,
    visibility 0s linear 180ms;
}

.button {
  --button-bg: var(--navy);
  --button-color: var(--white);
  --button-border: rgba(23, 38, 56, 0.2);
  --button-shadow: none;
  --button-hover-bg: #203247;
  --button-hover-color: var(--white);
  --button-hover-border: rgba(180, 147, 94, 0.28);
  --button-hover-shadow: 0 16px 34px rgba(23, 38, 56, 0.18);
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--button-border);
  border-radius: 999px;
  background: var(--button-bg);
  box-shadow: var(--button-shadow);
  color: var(--button-color);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  opacity: 1;
  padding: 14px 23px;
  text-align: center;
  text-decoration: none;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease,
    color 240ms ease;
}

.button::after {
  content: "";
  width: 0.42em;
  height: 0.42em;
  margin-left: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--button-hover-border);
  background: var(--button-hover-bg);
  color: var(--button-hover-color);
  box-shadow: var(--button-hover-shadow);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(3px) rotate(45deg);
}

.button:focus-visible {
  outline: 2px solid rgba(180, 147, 94, 0.74);
  outline-offset: 3px;
}

.button:active {
  transform: translateY(0);
  border-color: var(--button-hover-border);
  background: var(--button-hover-bg);
  color: var(--button-hover-color);
  box-shadow: 0 8px 18px rgba(23, 38, 56, 0.14);
}

.button:disabled,
.button[aria-disabled="true"] {
  --button-bg: rgba(225, 216, 202, 0.72);
  --button-color: rgba(36, 35, 33, 0.68);
  --button-border: rgba(36, 35, 33, 0.14);
  --button-hover-bg: rgba(225, 216, 202, 0.72);
  --button-hover-color: rgba(36, 35, 33, 0.68);
  --button-hover-border: rgba(36, 35, 33, 0.14);
  --button-hover-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.button-secondary {
  --button-bg: rgba(255, 253, 248, 0.76);
  --button-color: var(--navy);
  --button-border: rgba(180, 147, 94, 0.22);
  --button-hover-bg: rgba(255, 253, 248, 0.96);
  --button-hover-color: var(--navy);
  --button-hover-border: rgba(180, 147, 94, 0.42);
  --button-hover-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.9),
    0 10px 24px rgba(35, 31, 25, 0.075);
  box-shadow: none;
}

.button-secondary::after {
  display: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--button-hover-border);
  background: var(--button-hover-bg);
  color: var(--button-hover-color);
  box-shadow: var(--button-hover-shadow);
}

.button-small {
  min-height: 42px;
  padding: 11px 17px;
  font-size: 0.84rem;
}

.section-pad {
  padding: 88px 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 28px 56px;
  background:
    radial-gradient(circle at 82% 20%, rgba(180, 147, 94, 0.1), rgba(180, 147, 94, 0) 24%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.9), rgba(246, 239, 229, 0.34) 54%, rgba(250, 248, 242, 0.98)),
    linear-gradient(180deg, rgba(246, 239, 229, 0.96), rgba(250, 248, 242, 0.7) 58%, rgba(250, 248, 242, 0) 100%),
    var(--warm-white);
}

.hero::before {
  content: "";
  position: absolute;
  right: max(28px, calc((100vw - var(--max-width)) / 2));
  bottom: 30px;
  width: min(36vw, 420px);
  height: 1px;
  background: linear-gradient(90deg, rgba(180, 147, 94, 0), rgba(180, 147, 94, 0.68));
  pointer-events: none;
}

.hero-shell,
.process-strip-shell,
.about-shell,
.section-heading,
.service-list,
.focus-grid,
.layer-grid,
.trust-list,
.process-grid,
.quote-note,
.contact-grid,
.site-footer {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  align-items: center;
  gap: clamp(36px, 4.5vw, 62px);
}

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

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.hero .eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(180, 147, 94, 0.64);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--champagne);
  font-size: 0.73rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(4.1rem, 6.1vw, 5.65rem);
  line-height: 0.98;
}

.keep-together {
  white-space: nowrap;
}

h2 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: 3.25rem;
  line-height: 1.06;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.32rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 610px;
  margin-bottom: 18px;
  font-size: 1.06rem;
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
  margin-bottom: 0;
}

.hero-actions .button {
  min-height: 48px;
  border-color: rgba(23, 38, 56, 0.16);
  padding-inline: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.2),
    0 12px 26px rgba(23, 38, 56, 0.13);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.hero-actions .button:not(.button-secondary):hover,
.hero-actions .button:not(.button-secondary):focus-visible {
  transform: translateY(-1px);
  background: #203247;
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.24),
    0 16px 32px rgba(23, 38, 56, 0.17);
}

.hero-actions .button-secondary {
  color: var(--navy);
  border-color: rgba(180, 147, 94, 0.22);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: none;
}

.hero-actions .button-secondary:hover,
.hero-actions .button-secondary:focus-visible {
  transform: translateY(-1px);
  color: var(--navy);
  border-color: rgba(180, 147, 94, 0.42);
  background: rgba(255, 253, 248, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.9),
    0 10px 24px rgba(35, 31, 25, 0.075);
}

.hero-service-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
  gap: 4px 9px;
  margin: 0;
  color: rgba(36, 35, 33, 0.74);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.45;
}

.hero-service-line::before {
  content: "";
  flex: 0 0 34px;
  width: 34px;
  height: 1px;
  background: rgba(180, 147, 94, 0.58);
}

.hero-service-line span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  font-weight: 800;
  white-space: nowrap;
}

.hero-service-line span:not(:last-child)::after {
  content: "\00b7";
  flex: 0 0 auto;
  color: rgba(180, 147, 94, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.hero-media {
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: visible;
  width: min(100%, 318px);
  justify-self: end;
  padding: 8px;
  border: 1px solid rgba(180, 147, 94, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(246, 239, 229, 0.52)),
    var(--cream);
  box-shadow:
    0 14px 34px rgba(35, 31, 25, 0.055),
    inset 0 1px 0 rgba(255, 253, 248, 0.92);
  transform-origin: center;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 18px -9px -9px 18px;
  z-index: -1;
  border: 1px solid rgba(180, 147, 94, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.3);
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 1;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.34), rgba(255, 253, 248, 0) 42%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.2), rgba(255, 253, 248, 0) 48%, rgba(180, 147, 94, 0.055));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 0.72 / 1;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  object-position: 42% 44%;
  filter: brightness(1.1) saturate(0.82) contrast(0.94) sepia(0.095);
  transition:
    filter 520ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-media:hover img {
  filter: brightness(1.105) saturate(0.84) contrast(0.95) sepia(0.085);
  transform: scale(1.006);
}

.hero-media-rule {
  position: absolute;
  top: -22px;
  right: 28px;
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, rgba(180, 147, 94, 0), rgba(180, 147, 94, 0.7), rgba(180, 147, 94, 0));
}

.process-strip {
  padding: 0 28px 42px;
  background: var(--warm-white);
}

.process-strip-shell {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  margin-block: 0;
  padding: 0;
  border-top: 1px solid rgba(180, 147, 94, 0.24);
  border-bottom: 1px solid rgba(180, 147, 94, 0.18);
}

.process-strip-shell li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 76px;
  border-right: 1px solid rgba(180, 147, 94, 0.16);
  padding: 18px 26px;
}

.process-strip-shell li:last-child {
  border-right: 0;
}

.process-strip-shell span {
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
}

.process-strip-shell strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.18;
}

.about-geo {
  padding-top: 70px;
  padding-bottom: 74px;
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: start;
}

.about-copy p:not(.eyebrow) {
  max-width: 660px;
  font-size: 1.05rem;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
}

.answer-grid article {
  min-height: 176px;
  background: rgba(255, 253, 248, 0.7);
  padding: 24px;
}

.answer-grid h3 {
  font-size: 1.18rem;
}

.answer-grid p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.62;
}

.surface {
  border-block: 1px solid rgba(36, 35, 33, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.56), rgba(255, 253, 248, 0)),
    var(--porcelain);
}

.section-heading {
  margin-bottom: 54px;
}

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

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 27px 0;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.service-row:hover {
  background: rgba(255, 253, 248, 0.34);
  border-bottom-color: rgba(180, 147, 94, 0.28);
}

.service-index {
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.8;
}

.service-row p {
  max-width: 650px;
  margin: 0;
}

.service-meta {
  display: block;
  max-width: 660px;
  margin-top: 8px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 800;
}

.service-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-row h3 a {
  transition: color 180ms ease;
}

.service-row h3 a:hover,
.service-row h3 a:focus-visible {
  color: var(--champagne);
}

.focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.92fr);
  gap: 86px;
  align-items: start;
}

.focus-copy p:not(.eyebrow) {
  max-width: 590px;
  font-size: 1.08rem;
}

.focus-details {
  display: grid;
  border-top: 1px solid var(--line);
}

.focus-details > div {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.focus-details p {
  max-width: 560px;
  margin: 0;
}

.layer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 56px;
}

.layer-panel {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.layer-panel h2 {
  font-size: 2.7rem;
}

.layer-panel p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.layer-muted {
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.trust-list > div {
  min-height: 165px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 32px 28px 0;
}

.trust-list > div:nth-child(2n) {
  border-right: 0;
  padding-left: 32px;
}

.trust-list p {
  max-width: 500px;
  margin: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  background: var(--line-soft);
}

.proof-grid > div {
  min-height: 150px;
  background: rgba(255, 253, 248, 0.72);
  padding: 28px;
}

.proof-grid p {
  margin-bottom: 0;
}

.process-quote {
  display: grid;
  gap: 58px;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: start;
}

.process-copy h2 {
  margin-bottom: 0;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.28;
  padding: 20px 0;
}

.process-list span {
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 0.77rem;
  font-weight: 900;
}

.quote-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px 34px;
  align-items: end;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(180, 147, 94, 0.18), rgba(23, 38, 56, 0) 42%),
    var(--navy);
  padding: 34px;
}

.quote-note p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.04rem;
}

.quote-note p + p {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.34;
}

.quote-note .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  --button-bg: var(--white);
  --button-color: var(--navy);
  --button-border: rgba(255, 253, 248, 0.72);
  --button-shadow: none;
  --button-hover-bg: var(--white);
  --button-hover-color: var(--navy);
  --button-hover-border: rgba(180, 147, 94, 0.68);
  --button-hover-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.95),
    0 14px 30px rgba(0, 0, 0, 0.18);
}

.faq-list {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.25;
  list-style: none;
  padding: 18px 0;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 1.22rem;
  font-weight: 600;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 760px;
  margin-bottom: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(380px, 1fr);
  gap: 82px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.contact-copy p:not(.eyebrow) {
  max-width: 520px;
  font-size: 1.05rem;
}

.contact-assurance {
  display: grid;
  gap: 0;
  max-width: 430px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.contact-assurance span {
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.2;
  padding: 16px 0;
}

.contact-methods {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.contact-methods a {
  width: fit-content;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(180, 147, 94, 0.42);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.quote-form {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(36, 35, 33, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow-soft);
  padding: 34px;
}

.form-group {
  display: grid;
  gap: 16px;
  margin: 0;
  border: 0;
  padding: 0;
}

.form-group legend {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.25;
  padding: 0;
}

.field-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.field-note a {
  color: var(--navy);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.form-note {
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 2px;
  padding-bottom: 18px;
  max-width: 620px;
  margin: 0 0 2px;
  font-size: 0.94rem;
}

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.check-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.check-option input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
  accent-color: var(--navy);
}

label {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(36, 35, 33, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  outline: 0;
  padding: 12px 13px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(36, 35, 33, 0.26);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(180, 147, 94, 0.72);
  background: #fffefa;
  box-shadow: 0 0 0 4px rgba(180, 147, 94, 0.14);
}

.consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.consent input {
  min-height: auto;
  margin-top: 5px;
  accent-color: var(--navy);
}

.consent a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-submit {
  width: fit-content;
  margin-top: 2px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.form-status.is-success,
.form-status.is-error,
.form-status.is-pending {
  border: 1px solid rgba(180, 147, 94, 0.24);
  border-radius: var(--radius);
  background: rgba(180, 147, 94, 0.1);
  color: var(--navy);
  font-size: 0.94rem;
  line-height: 1.55;
  padding: 14px 16px;
}

.form-status.is-error {
  border-color: rgba(124, 72, 55, 0.24);
  background: rgba(124, 72, 55, 0.075);
  color: #5f332a;
}

.form-status.is-pending {
  border-color: rgba(36, 35, 33, 0.12);
  background: rgba(255, 253, 248, 0.72);
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 30px 28px 44px;
}

.site-footer p {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.16rem;
}

.site-footer span,
.site-footer a {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer > div {
  display: grid;
  gap: 3px;
}

.footer-links {
  display: flex;
  max-width: 560px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--navy);
}

.content-page h1 {
  max-width: 880px;
}

.page-hero {
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(246, 239, 229, 0.78), rgba(250, 248, 242, 0) 62%),
    var(--warm-white);
}

.page-hero > * {
  width: min(100%, var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.84rem;
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(97, 93, 85, 0.5);
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--navy);
}

.page-intro {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: 1.12rem;
}

.service-summary {
  max-width: 820px;
  margin-bottom: 28px;
  border-left: 2px solid var(--champagne);
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.64;
  padding-left: 18px;
}

.page-grid,
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
}

.page-panel,
.area-item {
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.7), rgba(255, 253, 248, 0.35)),
    var(--porcelain);
  padding: clamp(28px, 4vw, 42px);
}

.page-panel h2,
.area-item h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.page-panel p:last-child,
.area-item p:last-child {
  max-width: 560px;
  margin-bottom: 0;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--champagne);
  border-right: 1px solid var(--champagne);
  transform: rotate(45deg);
}

.page-links {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.page-links > * {
  min-width: 0;
}

.related-links {
  display: grid;
  border-top: 1px solid var(--line);
}

.related-links a {
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.36rem;
  line-height: 1.2;
  padding: 18px 0;
  transition: color 180ms ease;
}

.related-links a:hover,
.related-links a:focus-visible {
  color: var(--champagne);
}

.page-cta {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.page-cta p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.05rem;
}

.policy-copy {
  width: min(100%, 860px);
  margin: 0 auto;
}

.policy-copy h2 {
  margin-top: 44px;
  font-size: 2.08rem;
}

.policy-copy h2:first-child {
  margin-top: 0;
}

.policy-copy p,
.policy-copy li {
  color: var(--muted);
}

.policy-copy ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding-left: 20px;
}

.policy-note {
  border-left: 2px solid var(--champagne);
  color: var(--navy);
  padding-left: 18px;
}

.area-item {
  min-height: 230px;
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 480ms ease,
    transform 480ms ease;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal,
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .header-shell {
    gap: 18px;
  }

  .site-nav {
    gap: 15px;
    font-size: 0.84rem;
  }

  .hero-shell,
  .about-shell,
  .focus-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.9rem;
  }

  .hero-media {
    width: min(100%, 560px);
    justify-self: start;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-inline: 22px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .brand-line {
    max-width: 300px;
    font-size: 0.62rem;
  }

  .nav-toggle {
    display: grid;
    z-index: 24;
  }

  .nav-backdrop {
    display: block;
  }

  .nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 12px);
    right: 18px;
    left: auto;
    z-index: 23;
    display: grid;
    width: min(420px, calc(100vw - 36px));
    max-height: calc(100dvh - var(--header-height) - 30px);
    gap: 0;
    overflow-y: auto;
    border: 1px solid rgba(180, 147, 94, 0.28);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow:
      0 32px 80px rgba(17, 27, 38, 0.2),
      0 4px 14px rgba(35, 31, 25, 0.08);
    opacity: 0;
    padding: 10px 18px 14px;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transform-origin: top right;
    overscroll-behavior: contain;
    transition:
      opacity 180ms ease,
      transform 200ms ease,
      visibility 0s linear 200ms;
  }

  .nav-panel-rule {
    display: block;
    width: 34px;
    height: 1px;
    margin: 2px auto 8px;
    background: rgba(180, 147, 94, 0.72);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    border-bottom: 1px solid var(--line-soft);
    padding: 16px 2px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.22rem;
    line-height: 1.2;
    transition: color 160ms ease;
  }

  .nav-index {
    display: block;
    color: var(--champagne);
    font-family: var(--sans);
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"] {
    color: var(--champagne);
  }

  .site-nav a:focus-visible {
    outline: 1px solid rgba(180, 147, 94, 0.58);
    outline-offset: -4px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

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

  .header-cta {
    display: none;
  }

  .section-pad {
    padding: 78px 22px;
  }

  .about-geo {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero {
    padding: 58px 22px 36px;
  }

  h1 {
    font-size: 2.95rem;
  }

  h2 {
    font-size: 2.46rem;
  }

  .about-copy h2 {
    font-size: 2.12rem;
  }

  .process-strip-shell {
    grid-template-columns: 1fr;
  }

  .process-strip-shell li {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid rgba(180, 147, 94, 0.14);
    padding: 16px 0;
  }

  .process-strip-shell li:last-child {
    border-bottom: 0;
  }

  .layer-grid,
  .answer-grid,
  .trust-list,
  .proof-grid,
  .quote-note,
  .page-grid,
  .area-grid,
  .page-links {
    grid-template-columns: 1fr;
  }

  .answer-grid article {
    min-height: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    padding: 16px 0;
  }

  .answer-grid article:last-child {
    border-bottom: 0;
  }

  .answer-grid {
    border-top: 1px solid var(--line);
    background: transparent;
  }

  .answer-grid h3 {
    margin-bottom: 6px;
    font-size: 1.05rem;
  }

  .answer-grid p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .service-row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }

  .layer-panel h2 {
    font-size: 2.28rem;
  }

  .layer-muted {
    border-left: 0;
    padding-left: 0;
  }

  .trust-list > div,
  .trust-list > div:nth-child(2n) {
    border-right: 0;
    padding: 26px 0;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    background: transparent;
    border-top: 1px solid var(--line);
  }

  .proof-grid > div {
    min-height: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    padding: 22px 0;
  }

  .quote-note .button {
    grid-column: auto;
    grid-row: auto;
    width: fit-content;
  }

}

@media (max-width: 680px) {
  body {
    font-size: 15.5px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-line {
    max-width: 235px;
    font-size: 0.57rem;
  }

  .brand {
    grid-template-columns: 38px minmax(0, auto);
    gap: 10px;
  }

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

  .site-nav {
    top: calc(var(--header-height) + 10px);
    right: 12px;
    width: calc(100vw - 24px);
    padding-inline: 16px;
  }

  h1 {
    max-width: 360px;
    font-size: 2.36rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2.02rem;
    line-height: 1.1;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 18px;
  }

  .hero-subtitle,
  .focus-copy p:not(.eyebrow),
  .layer-panel p:last-child,
  .contact-copy p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: stretch;
    max-width: 360px;
    gap: 10px;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    margin-bottom: 20px;
    line-height: 1.54;
  }

  .hero-service-line {
    display: flex;
    width: 100%;
    max-width: 360px;
    flex-wrap: wrap;
    gap: 5px 12px;
    font-size: 0.72rem;
    line-height: 1.42;
    white-space: normal;
  }

  .hero-service-line::before {
    width: 20px;
    flex: 0 0 20px;
  }

  .hero-service-line span {
    gap: 0;
  }

  .hero-shell {
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 46px;
    padding: 10px 9px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .hero-actions .button:first-child {
    flex-grow: 1.58;
  }

  .hero-actions .button::after {
    width: 0.38em;
    height: 0.38em;
    margin-left: 7px;
  }

  .button.form-submit,
  .quote-note .button {
    width: 100%;
  }

  .hero-media {
    margin-inline: 0;
    justify-self: start;
    width: min(100%, 232px);
    padding: 8px;
    border-radius: 18px;
  }

  .hero-media::before {
    inset: 14px -7px -7px 14px;
    border-radius: 18px;
  }

  .hero-media::after {
    inset: 8px;
    border-radius: 12px;
  }

  .hero-media img {
    aspect-ratio: 0.78 / 1;
    height: auto;
    object-fit: cover;
    object-position: 44% 45%;
    border-radius: 12px;
  }

  .hero-media-rule {
    top: -16px;
    right: 24px;
    height: 38px;
  }

  .process-strip {
    padding-inline: 22px;
    padding-bottom: 34px;
  }

  .process-strip-shell li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    min-height: 58px;
    padding: 14px 0;
  }

  .process-strip-shell span {
    font-size: 0.64rem;
  }

  .process-strip-shell strong {
    font-size: 1.05rem;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .service-row {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 24px 0;
  }

  .service-row:hover {
    padding-inline: 0;
  }

  .service-index {
    line-height: 1.55;
  }

  .process-list li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    font-size: 1.14rem;
  }

  .quote-note {
    padding: 24px;
  }

  .quote-note p + p {
    font-size: 1.24rem;
  }

  summary {
    min-height: 68px;
    font-size: 1.14rem;
    padding: 17px 0;
  }

  .contact-assurance span {
    font-size: 1.24rem;
  }

  .quote-form {
    padding: 22px;
  }

  .form-split {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    padding-inline: 22px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .breadcrumb {
    margin-bottom: 24px;
  }

  .page-intro {
    font-size: 1rem;
  }

  .page-panel,
  .area-item {
    min-height: auto;
    padding: 26px 0;
    background: transparent;
  }

  .page-grid,
  .area-grid {
    gap: 0;
    background: transparent;
    border-top: 1px solid var(--line);
  }

  .page-panel,
  .area-item {
    border-bottom: 1px solid var(--line);
  }

  .page-panel h2,
  .area-item h2 {
    font-size: 1.52rem;
  }

  .related-links a {
    font-size: 1.18rem;
  }
}

@media (max-width: 380px) {
  .brand-line {
    max-width: 190px;
  }

  h1 {
    font-size: 2.06rem;
    line-height: 1.03;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 14px;
  }

  .hero-subtitle {
    margin-bottom: 16px;
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .hero-service-line {
    font-size: 0.68rem;
    line-height: 1.32;
  }

  .hero-media {
    width: min(100%, 216px);
    padding: 7px;
  }

}

@media (max-width: 340px) {
  .hero-actions {
    flex-direction: column;
    max-width: 340px;
  }

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

/* === Mobile navigation repair patch: single consistent premium menu === */
@media (max-width: 920px) {
  body.nav-open {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }

  .site-header {
    z-index: 1000;
  }

  .nav-toggle {
    display: grid !important;
    z-index: 1002;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 998;
    display: block !important;
    background: rgba(16, 25, 35, 0.34);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: opacity 220ms ease, visibility 0s linear 220ms;
  }

  .nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .site-nav[data-nav] {
    position: fixed !important;
    top: calc(var(--header-height) + 12px) !important;
    right: 14px !important;
    left: auto !important;
    z-index: 1001 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
    width: min(430px, calc(100vw - 28px)) !important;
    max-height: calc(100dvh - var(--header-height) - 28px) !important;
    gap: 0 !important;
    overflow-y: auto !important;
    padding: 14px 18px 16px !important;
    border: 1px solid rgba(180, 147, 94, 0.32) !important;
    border-radius: 24px !important;
    background: rgba(255, 252, 247, 0.98) !important;
    box-shadow: 0 34px 90px rgba(17, 27, 38, 0.24), 0 8px 24px rgba(35, 31, 25, 0.1) !important;
    color: var(--navy) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-10px) scale(0.985) !important;
    transform-origin: top right !important;
    transition: opacity 220ms ease, transform 240ms ease, visibility 0s linear 240ms !important;
    overscroll-behavior: contain !important;
  }

  .site-nav[data-nav].is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
    transition-delay: 0s !important;
  }

  .site-nav[data-nav] .nav-panel-rule {
    display: block !important;
    width: 38px !important;
    height: 1px !important;
    margin: 4px auto 10px !important;
    background: rgba(180, 147, 94, 0.74) !important;
  }

  .site-nav[data-nav] a {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 17px 4px !important;
    border-bottom: 1px solid rgba(180, 147, 94, 0.16) !important;
    color: var(--navy) !important;
    font-family: var(--serif) !important;
    font-size: 1.18rem !important;
    line-height: 1.16 !important;
    text-decoration: none !important;
  }

  .site-nav[data-nav] a:last-child {
    border-bottom: 0 !important;
  }

  .site-nav[data-nav] .nav-index {
    display: block !important;
    color: var(--champagne) !important;
    font-family: var(--sans) !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;
  }

  .site-nav[data-nav] .nav-label {
    display: block !important;
    min-width: 0 !important;
  }

  .site-nav[data-nav] a:hover,
  .site-nav[data-nav] a:focus-visible,
  .site-nav[data-nav] a[aria-current="page"] {
    color: var(--champagne) !important;
  }

  .site-nav[data-nav] a::after {
    display: none !important;
  }
}

@media (min-width: 921px) {
  .site-nav[data-nav] .nav-index,
  .site-nav[data-nav] .nav-panel-rule {
    display: none !important;
  }
}
