:root {
  --hero-charcoal: #111315;
  --section-charcoal: #292c30;
  --white: #f7f7f5;
  --gold: #c99b3e;
  --gold-soft: #e0b558;
  --gold-on-light: #906018;
  --red: #c41919;
  --red-hover: #e02922;
  --line: rgba(201, 155, 62, 0.36);
  --header-h: 78px;
  --shell: min(1440px, calc(100% - 72px));
  --font: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--hero-charcoal);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  color: #000;
  background: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  pointer-events: none;
}

.header-inner {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 22px;
  width: 100%;
  height: 100%;
  padding: 0 clamp(24px, 3vw, 54px);
  background: rgba(10, 11, 12, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 112px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.012em;
  text-transform: uppercase;
}

.primary-nav > a,
.nav-group-button {
  color: #fff;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.primary-nav > a:hover,
.nav-group-button:hover {
  color: var(--gold-soft);
}

.nav-group {
  position: relative;
}

.nav-group-button {
  padding: 20px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 400;
  text-transform: uppercase;
}

.nav-group-button span {
  margin-left: 5px;
  color: currentColor;
}

.nav-dropdown {
  position: absolute;
  top: 56px;
  left: 50%;
  width: 225px;
  padding: 10px;
  background: rgba(16, 18, 20, 0.97);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown a {
  display: block;
  padding: 9px 12px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.nav-dropdown a:hover {
  color: var(--gold-soft);
  background: #151719;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  padding-right: 8px;
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.button-red {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.button-red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-1px);
}

.button-outline {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.button-outline:hover {
  color: #080808;
  background: var(--gold);
}

.header-appointment {
  min-height: 46px;
  padding-inline: 18px;
  font-size: 16px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--hero-charcoal);
  border-bottom: 1px solid rgba(201, 155, 62, 0.55);
}

.hero-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--hero-charcoal);
}

.hero-visual picture {
  width: 100%;
  height: 100%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  filter: saturate(1.02) contrast(1.02) brightness(0.98);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #111315 0%, #111315 31%, rgba(17, 19, 21, 0.88) 39%, rgba(17, 19, 21, 0.30) 65%, rgba(17, 19, 21, 0.06) 100%),
    linear-gradient(0deg, rgba(10, 11, 12, 0.34) 0%, transparent 42%);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 70px);
  padding-bottom: 170px;
}

.hero-copy {
  width: min(760px, 55%);
  margin-top: 18px;
  transform: translateY(-20px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 790px;
  margin: 0;
  color: #fff;
  font-family: var(--font);
  font-size: clamp(56px, 5.35vw, 88px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.006em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-rule {
  width: 82px;
  height: 4px;
  margin: 25px 0 20px;
  background: var(--red);
}

.hero-lede {
  max-width: 590px;
  margin: 0;
  color: #e1e2e3;
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.brand-rail {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.brand-rail img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
  object-position: center;
}

.brand-rail picture {
  display: block;
  width: 100%;
}

.trust-bar,
.section-dark,
.reviews-section,
.final-cta,
.site-footer {
  background: var(--section-charcoal);
}

.trust-bar {
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 17px;
  min-height: 138px;
  padding: 25px 26px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--gold-soft);
}

.icon-box svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item h2 {
  margin: 0 0 3px;
  font-family: var(--font);
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.trust-item p {
  margin: 0;
  color: #bcbec1;
  font-size: 13px;
  line-height: 1.45;
}

.trust-item-bbb {
  color: inherit;
  transition: background 0.2s ease;
}

.trust-item-bbb:hover {
  background: rgba(255, 255, 255, 0.045);
}

.section {
  padding: 96px 0;
}

.section-light {
  color: #141414;
  background: #f3f1ec;
}

.section-dark {
  color: #fff;
}

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

.section-heading h2,
.heritage-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  max-width: 690px;
  margin: 13px 0 0;
  color: #606267;
}

.section-dark .section-heading > p:last-child {
  color: #c0c2c6;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: end;
  gap: 60px;
}

.centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.centered > p:last-child {
  margin-inline: auto;
}

.brand-carousel {
  position: relative;
}

.brand-carousel-button {
  display: none;
}

.brand-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.brand-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dedbd3;
  box-shadow: 0 12px 40px rgba(20, 20, 20, 0.04);
}

.brand-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: '';
}

.brand-logo-wrap {
  display: grid;
  place-items: center;
  width: 60px;
  height: 43px;
}

.brand-logo-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-card:nth-child(5) .brand-logo-svg {
  width: 50px;
}

.brand-card:nth-child(6) .brand-logo-svg {
  width: 45px;
}

.brand-card h3 {
  margin: 18px 0 8px;
  font-family: var(--font);
  font-size: 29px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-card p {
  margin: 0 0 18px;
  color: #63656a;
  font-size: 15px;
}

.brand-card a,
.text-link {
  color: #8d5e14;
  font-weight: 700;
}

.brand-card a:hover,
.text-link:hover {
  color: #b31a18;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 290px;
  padding: 34px;
  background: linear-gradient(180deg, #202328, #191b1f);
  border-right: 1px solid var(--line);
}

.service-card:last-child {
  border-right: 0;
}

.service-card > span {
  color: var(--gold);
  font-family: var(--font);
  font-size: 18px;
  letter-spacing: 0.15em;
}

.service-card h3 {
  margin: 50px 0 15px;
  font-family: var(--font);
  font-size: 29px;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: #c2c4c8;
  font-size: 14px;
}

.heritage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  padding: 0;
  color: #111;
  background: #ebe8e1;
}

.heritage-image {
  position: relative;
  display: block;
  min-height: 680px;
  overflow: hidden;
  background: #151719;
}

.heritage-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent);
  content: '';
  pointer-events: none;
}

.heritage-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.65);
}

.heritage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 92px clamp(50px, 7vw, 110px);
}

.heritage-copy .lead {
  color: #292929;
  font-size: 20px;
  line-height: 1.55;
}

.heritage-copy > p:not(.eyebrow):not(.lead) {
  color: #5d5f62;
}

.heritage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
  padding: 27px 0;
  border-top: 1px solid #cbc6bb;
  border-bottom: 1px solid #cbc6bb;
}

.heritage-stats strong {
  display: block;
  color: var(--gold-on-light);
  font-family: var(--font);
  font-size: 38px;
  line-height: 1;
}

.heritage-stats span {
  display: block;
  margin-top: 6px;
  color: #696a6d;
  font-size: 12px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.city-card {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid #d8d4ca;
}

.city-pin {
  display: block;
  width: 34px;
  height: 34px;
  color: var(--gold-on-light);
}

.city-pin svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.city-card h3 {
  margin: 26px 0 8px;
  font-family: var(--font);
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
}

.city-card p {
  margin: 0;
  color: #66686d;
  font-size: 14px;
}

.city-service-label {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold-on-light);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}

.reviews-intro h2 {
  margin: 0;
  font-family: var(--font);
  font-size: 52px;
  line-height: 0.98;
  text-transform: uppercase;
}

.reviews-intro p:not(.eyebrow) {
  color: #c2c4c8;
}

.review-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.review-card {
  padding: 34px;
  background: #1b1e22;
  border: 1px solid var(--line);
}

.review-card .stars {
  color: var(--gold-soft);
  letter-spacing: 0.2em;
}

.review-card p {
  color: #eee;
  font-size: 18px;
  line-height: 1.55;
}

.review-card span {
  color: #b9bbc0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-list details {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-list summary {
  position: relative;
  padding: 22px 45px 22px 0;
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 4px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 300;
  content: '+';
}

.faq-list details[open] summary::after {
  content: '–';
}

.faq-list details p {
  margin: 0;
  padding: 0 40px 24px 0;
  color: #c0c2c6;
}

.final-cta {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  font-size: 46px;
}

.final-cta p:not(.eyebrow) {
  margin: 10px 0 0;
  color: #c2c4c8;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.85fr 0.85fr;
  gap: 50px;
  padding-bottom: 45px;
}

.footer-brand img {
  width: 150px;
  height: auto;
}

.footer-brand p {
  max-width: 350px;
  color: #b7b9bd;
  font-size: 14px;
}

.footer-social {
  margin-top: 20px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #e5e5e5;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
  color: var(--gold-soft);
  border-color: var(--gold);
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links svg .svg-fill {
  fill: currentColor;
  stroke: none;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #e2b35a;
  font-family: var(--font);
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #c0c2c6;
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 5px 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  color: #9fa2a7;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 12px;
}

.footer-credit-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-credit-lines a {
  color: #c2c4c8;
}

.footer-credit-lines a:hover {
  color: #fff;
}

.footer-bottom a {
  font-size: 12px;
}

@media (max-width: 1280px) {
  :root {
    --shell: min(1180px, calc(100% - 44px));
  }

  .header-inner {
    grid-template-columns: 130px 1fr auto;
    gap: 14px;
    padding-inline: 24px;
  }

  .primary-nav {
    gap: 14px;
    font-size: 14px;
  }

  .hero-copy {
    width: min(700px, 58%);
  }

  .hero h1 {
    font-size: clamp(50px, 5.1vw, 72px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .trust-item {
    padding-inline: 18px;
  }

  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .service-card:nth-child(2) {
    border-right: 0;
  }

  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 78px;
    --shell: min(100% - 32px, 760px);
  }

  .header-inner {
    grid-template-columns: 120px 1fr auto;
    padding-inline: 18px;
  }

  .brand img {
    width: 104px;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
    gap: 5px;
    padding: 10px;
    background: none;
    border: 0;
  }

  .nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
  }

  .primary-nav {
    position: absolute;
    top: calc(var(--header-h) + 6px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 26px;
    background: rgba(20, 22, 24, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a,
  .nav-group-button {
    display: block;
    width: 100%;
    padding: 12px 0;
    text-align: left;
  }

  .nav-dropdown {
    position: static;
    display: none;
    width: 100%;
    background: #1a1c1f;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-group.is-open .nav-dropdown {
    display: block;
  }

  .header-actions {
    justify-self: end;
  }

  .header-appointment {
    width: 48px;
    padding: 0;
  }

  .header-appointment span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 760px;
    padding-top: calc(var(--header-h) + 58px);
    padding-bottom: 150px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, #111315 0%, rgba(17, 19, 21, 0.96) 48%, rgba(17, 19, 21, 0.55) 100%),
      linear-gradient(0deg, rgba(10, 11, 12, 0.62), transparent);
  }

  .hero-copy {
    width: 78%;
  }

  .hero h1 {
    font-size: 60px;
    letter-spacing: 0.004em;
  }

  .brand-rail {
    bottom: 18px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .heritage-image {
    min-height: 450px;
  }

  .reviews-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-heading {
    position: static;
  }

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

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .header-inner {
    grid-template-columns: 108px 1fr 48px;
    padding-inline: 14px;
  }

  .header-actions {
    grid-column: 3;
  }

  .nav-toggle {
    grid-column: 2;
  }

  .hero-visual {
    inset: 0;
    height: auto;
    align-items: stretch;
    opacity: 0.88;
  }

  .hero-visual picture,
  .hero-visual img {
    width: 100%;
    height: 100%;
  }

  .hero-visual img {
    object-fit: cover;
    object-position: center top;
    filter: saturate(1.03) contrast(1.02) brightness(1.02);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(17, 19, 21, 0.08) 0%, rgba(17, 19, 21, 0.30) 34%, rgba(17, 19, 21, 0.66) 100%),
      linear-gradient(90deg, rgba(17, 19, 21, 0.58) 0%, rgba(17, 19, 21, 0.34) 68%, rgba(17, 19, 21, 0.18) 100%);
  }

  .hero-inner {
    min-height: auto;
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 122px;
  }

  .hero-copy {
    width: 100%;
    margin-top: 0;
    transform: none;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(34px, 9.6vw, 44px);
    line-height: 1.02;
    letter-spacing: 0.004em;
  }

  .hero-lede {
    max-width: 560px;
    font-size: 15px;
  }

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

  .brand-rail {
    bottom: 10px;
    justify-content: flex-start;
    min-height: 78px;
    padding-top: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .brand-rail::-webkit-scrollbar {
    display: none;
  }

  .brand-rail picture {
    flex: 0 0 900px;
    width: 900px;
  }

  .brand-rail img {
    width: 900px;
    max-width: none;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
  }

  .trust-grid,
  .service-grid,
  .city-grid,
  .review-cards {
    grid-template-columns: 1fr;
  }

  .brand-carousel {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .brand-card-grid {
    display: flex;
    gap: 14px;
    padding: 2px 8px 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .brand-card-grid::-webkit-scrollbar {
    display: none;
  }

  .brand-card {
    flex: 0 0 min(84vw, 360px);
    min-height: 235px;
    scroll-snap-align: center;
  }

  .brand-carousel-button {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #fff;
    background: rgba(23, 25, 28, 0.90);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    transform: translateY(-50%);
    cursor: pointer;
  }

  .brand-carousel-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .brand-carousel-prev {
    left: 3px;
  }

  .brand-carousel-next {
    right: 3px;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .service-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .heritage-copy {
    padding: 72px 24px;
  }

  .heritage-stats {
    grid-template-columns: 1fr;
  }

  .reviews-intro h2 {
    font-size: 43px;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .final-cta-actions .button {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 0;
  }
}

@media (max-width: 420px) {
  .hero-inner {
    padding-top: calc(var(--header-h) + 38px);
  }

  .hero h1 {
    font-size: clamp(31px, 9.4vw, 38px);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}

.internal-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: calc(var(--header-h) + 76px) 0 88px;
  background: var(--hero-charcoal);
  border-bottom: 1px solid rgba(201, 155, 62, 0.5);
}

.internal-hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 79% 46%, rgba(201, 155, 62, 0.16), transparent 25%),
    radial-gradient(circle at 68% 72%, rgba(196, 25, 25, 0.08), transparent 24%),
    linear-gradient(110deg, #101214 0%, #15181a 48%, #202326 100%);
}

.internal-hero-backdrop::before,
.internal-hero-backdrop::after {
  position: absolute;
  content: '';
}

.internal-hero-backdrop::before {
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 54%, #000 100%);
}

.internal-hero-backdrop::after {
  top: 0;
  right: 12%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(201, 155, 62, 0.26), transparent);
}

.internal-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: clamp(44px, 6vw, 100px);
}

.internal-hero-copy {
  max-width: 900px;
}

.breadcrumbs {
  margin-bottom: 30px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #aeb0b4;
  font-size: 13px;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
  color: rgba(201, 155, 62, 0.72);
  content: '/';
}

.breadcrumbs a {
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--gold-soft);
}

.internal-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-family: var(--font);
  font-size: clamp(52px, 5.4vw, 82px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.internal-hero-rule {
  width: 76px;
  height: 4px;
  margin: 26px 0 20px;
  background: var(--red);
}

.internal-hero-lede {
  max-width: 760px;
  margin: 0;
  color: #d5d7d9;
  font-size: 19px;
  line-height: 1.65;
}

.internal-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.internal-hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(390px, 100%);
  min-height: 290px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(7, 8, 9, 0.26);
  border: 1px solid rgba(201, 155, 62, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.internal-hero-mark::before {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 3px;
  background: var(--red);
  content: '';
}

.internal-hero-mark::after {
  position: absolute;
  right: -76px;
  bottom: -88px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(201, 155, 62, 0.17), transparent 68%);
  content: '';
}

.internal-hero-mark-glow {
  position: absolute;
  inset: 14%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
}

.internal-hero-mark img {
  position: relative;
  z-index: 1;
  width: 60%;
  max-height: 126px;
  object-fit: contain;
  opacity: 0.88;
  filter: invert(1) sepia(0.15) saturate(0.75) brightness(1.45);
}

.internal-hero-mark-location img {
  width: 104px;
  max-height: 104px;
  color: var(--gold-soft);
  opacity: 1;
  filter: invert(74%) sepia(45%) saturate(780%) hue-rotate(359deg) brightness(94%) contrast(91%);
}

.internal-trust-bar .trust-item {
  min-height: 128px;
}

.internal-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  align-items: start;
  gap: clamp(48px, 7vw, 110px);
}

.internal-prose {
  max-width: 850px;
}

.internal-prose h2,
.internal-side-card h2 {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(38px, 3.7vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.internal-prose p {
  margin: 22px 0 0;
  color: #55585d;
  font-size: 17px;
  line-height: 1.78;
}

.internal-prose .internal-lead {
  margin-top: 27px;
  color: #232528;
  font-size: 21px;
  line-height: 1.62;
}

.internal-side-card {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  padding: 34px 32px;
  background: #fff;
  border-top: 4px solid var(--red);
  box-shadow: 0 18px 55px rgba(18, 20, 22, 0.12);
}

.internal-side-card .eyebrow {
  margin-bottom: 10px;
  font-size: 13px;
}

.internal-side-card h2 {
  font-size: 31px;
}

.internal-side-card dl {
  margin: 26px 0 0;
}

.internal-side-card dl div {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid #dedbd4;
}

.internal-side-card dl div:last-child {
  border-bottom: 1px solid #dedbd4;
}

.internal-side-card dt {
  color: #74777b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.internal-side-card dd {
  margin: 0;
  color: #17191b;
  font-weight: 650;
  line-height: 1.45;
}

.internal-side-cta {
  width: 100%;
  margin-top: 24px;
  font-size: 15px;
}

.internal-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.internal-feature-card {
  min-height: 300px;
  padding: 34px 28px 32px;
  border-right: 1px solid var(--line);
}

.internal-feature-card:last-child {
  border-right: 0;
}

.internal-feature-card > span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.internal-feature-card h3 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 850;
  line-height: 1.08;
  text-transform: uppercase;
}

.internal-feature-card p {
  margin: 17px 0 0;
  color: #c4c6c9;
  font-size: 15px;
  line-height: 1.66;
}

.internal-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.internal-check-panel {
  padding: 38px 40px;
  color: #fff;
  background: #202326;
  border-left: 4px solid var(--gold);
  box-shadow: 0 20px 55px rgba(18, 20, 22, 0.15);
}

.internal-check-panel h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
  text-transform: uppercase;
}

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

.internal-check-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  color: #d7d8da;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.internal-check-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.internal-check-list li::before {
  position: absolute;
  top: 16px;
  left: 0;
  width: 18px;
  height: 18px;
  color: var(--gold-soft);
  font-weight: 900;
  line-height: 18px;
  content: '✓';
}

.internal-related-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.018), transparent 45%),
    #202326;
}

.internal-related-section .section-heading > p:last-child {
  color: #c4c6c9;
}

.internal-related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.internal-related-card {
  display: flex;
  flex: 1 1 230px;
  flex-direction: column;
  min-width: 0;
  min-height: 235px;
  padding: 27px 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.internal-related-card[href]:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.internal-related-card .city-pin {
  width: 31px;
  height: 31px;
  margin-bottom: 26px;
  color: var(--gold-soft);
}

.internal-related-card .city-pin svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
}

.internal-related-card h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.12;
  text-transform: uppercase;
}

.internal-related-card p {
  margin: 13px 0 0;
  color: #c5c7ca;
  font-size: 14px;
  line-height: 1.6;
}

.internal-related-card strong {
  margin-top: auto;
  padding-top: 23px;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.internal-brand-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.internal-brand-link {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 138px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.internal-brand-link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.internal-brand-link > span {
  display: grid;
  place-items: center;
  width: 88px;
  height: 72px;
  background: #f3f1ec;
}

.internal-brand-link img {
  width: 62px;
  max-height: 45px;
  object-fit: contain;
}

.internal-brand-link h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
}

.internal-brand-link p {
  margin: 7px 0 0;
  color: #bfc1c4;
  font-size: 14px;
  line-height: 1.5;
}

.internal-brand-link b {
  color: var(--gold-soft);
  font-size: 25px;
  font-weight: 400;
}

.internal-faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(50px, 8vw, 110px);
}

.internal-faq-heading {
  position: sticky;
  top: calc(var(--header-h) + 36px);
  align-self: start;
}

.internal-final-cta {
  background:
    linear-gradient(90deg, rgba(201, 155, 62, 0.035), transparent 42%),
    var(--section-charcoal);
}

@media (max-width: 1180px) {
  .internal-hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
  }

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

  .internal-feature-card:nth-child(2) {
    border-right: 0;
  }

  .internal-feature-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

}

@media (max-width: 980px) {
  .internal-hero {
    min-height: 0;
    padding: calc(var(--header-h) + 58px) 0 70px;
  }

  .internal-hero-grid,
  .internal-intro-grid,
  .internal-two-column,
  .internal-faq-layout {
    grid-template-columns: 1fr;
  }

  .internal-hero-grid {
    gap: 48px;
  }

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

  .internal-hero-mark {
    justify-self: stretch;
    width: 100%;
    min-height: 190px;
  }

  .internal-hero-mark img {
    width: min(260px, 46%);
    max-height: 96px;
  }

  .internal-hero-mark-location img {
    width: 80px;
    max-height: 80px;
  }

  .internal-side-card,
  .internal-faq-heading {
    position: static;
  }

  .internal-side-card {
    max-width: 720px;
  }

  .internal-brand-link-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 680px) {
  .internal-hero {
    padding: calc(var(--header-h) + 42px) 0 56px;
  }

  .breadcrumbs {
    margin-bottom: 22px;
  }

  .breadcrumbs ol {
    font-size: 11px;
  }

  .internal-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .internal-hero-lede {
    font-size: 16px;
  }

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

  .internal-hero-mark {
    min-height: 150px;
  }

  .internal-trust-bar .trust-grid {
    grid-template-columns: 1fr;
  }

  .internal-prose h2,
  .internal-side-card h2 {
    font-size: 34px;
  }

  .internal-prose .internal-lead {
    font-size: 18px;
  }

  .internal-side-card {
    padding: 28px 24px;
  }

  .internal-side-card dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .internal-feature-grid {
    grid-template-columns: 1fr;
  }

  .internal-related-card {
    flex-basis: 100%;
  }

  .internal-feature-card,
  .internal-feature-card:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .internal-feature-card:last-child {
    border-bottom: 0;
  }

  .internal-feature-card > span {
    margin-bottom: 24px;
  }

  .internal-check-panel {
    padding: 30px 26px;
  }

  .internal-brand-link {
    grid-template-columns: 68px 1fr auto;
    gap: 15px;
    padding: 18px;
  }

  .internal-brand-link > span {
    width: 68px;
    height: 60px;
  }

  .internal-brand-link img {
    width: 48px;
    max-height: 36px;
  }

  .internal-brand-link p {
    display: none;
  }

  .internal-related-card {
    min-height: 200px;
  }
}

.utility-hero {
  position: relative;
  padding: calc(var(--header-h) + 86px) 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 25%, rgba(201, 155, 62, 0.12), transparent 31%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 48%),
    #181b1e;
  border-bottom: 1px solid var(--line);
}

.utility-hero::after {
  position: absolute;
  right: -80px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(201, 155, 62, 0.14);
  border-radius: 50%;
  content: '';
}

.utility-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.utility-breadcrumbs {
  margin-bottom: 28px;
}

.utility-hero h1 {
  max-width: 980px;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(50px, 6.5vw, 92px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.utility-hero-lede {
  max-width: 830px;
  margin: 26px 0 0;
  color: #d5d6d8;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.65;
}

.utility-content-grid,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: start;
  gap: clamp(46px, 7vw, 100px);
}

.utility-contact-card {
  padding: 34px 32px;
  background: #fff;
  border-top: 4px solid var(--gold);
  box-shadow: 0 18px 55px rgba(18, 20, 22, 0.12);
}

.utility-contact-card h2 {
  margin-top: 7px;
  color: #17191b;
  font-size: 32px;
}

.utility-contact-card p {
  color: #56595d;
  line-height: 1.65;
}

.utility-contact-card a:hover {
  color: var(--gold-on-light);
}

.utility-phone {
  color: #17191b;
  font-size: 25px;
  font-weight: 800;
}

.utility-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-dark {
  color: #fff;
  background: #202326;
  border-color: #202326;
}

.button-dark:hover {
  color: #fff;
  background: #34383c;
  border-color: #34383c;
}

.service-link-grid .service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.service-link-grid .service-card strong {
  margin-top: auto;
  padding-top: 26px;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-link-grid .service-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.appointment-section {
  overflow: visible;
}

.appointment-notice,
.contact-form-intro {
  margin-bottom: 34px;
}

.appointment-notice h2,
.contact-form-intro h2 {
  color: #17191b;
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.04;
}

.appointment-notice ul {
  display: grid;
  gap: 13px;
  margin: 25px 0 0;
  padding-left: 22px;
  color: #4d5054;
}

.appointment-notice a,
.contact-form-intro a,
.form-privacy-note a,
.legal-copy a {
  color: var(--gold-on-light);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.site-form {
  position: relative;
  padding: clamp(26px, 4vw, 44px);
  background: #fff;
  border: 1px solid #d9d5cc;
  box-shadow: 0 18px 55px rgba(18, 20, 22, 0.1);
}

.form-grid {
  display: grid;
  gap: 22px;
}

.form-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  min-width: 0;
  margin-bottom: 22px;
}

.form-grid .form-field {
  margin-bottom: 0;
}

.form-field label,
.form-field legend {
  display: block;
  margin-bottom: 8px;
  color: #24272a;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: #16181a;
  background: #f9f8f5;
  border: 1px solid #c9c5bc;
  border-radius: 0;
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: #fff;
  border-color: var(--gold-on-light);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(201, 155, 62, 0.16);
}

.form-field small {
  display: block;
  margin-top: 7px;
  color: #6b6e72;
  font-size: 12px;
}

.service-checkboxes {
  margin: 30px 0 0;
  padding: 0;
  border: 0;
}

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

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin: 0;
  padding: 10px 12px;
  background: #f5f3ee;
  border: 1px solid #dedbd4;
  cursor: pointer;
}

.checkbox-grid input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--red);
}

.form-privacy-note {
  margin: 27px 0 0;
  color: #6b6e72;
  font-size: 12px;
  line-height: 1.6;
}

.form-submit {
  margin-top: 24px;
}

.form-message {
  margin: 0 0 24px;
  padding: 18px 20px;
  color: #24272a;
  border-left: 4px solid;
}

.form-message strong {
  display: block;
  margin-bottom: 4px;
}

.form-message ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.form-success {
  background: #edf6ec;
  border-color: #4e8a4a;
}

.form-error {
  background: #fff0ef;
  border-color: var(--red);
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.dark-link {
  color: var(--gold-on-light);
}

.job-apply-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.job-apply-panel h3 {
  margin-top: 0;
  color: #fff;
  font-size: 34px;
}

.job-apply-panel p {
  color: #d2d3d5;
}

.job-email {
  color: var(--gold-soft);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
}

.legal-section {
  padding-top: 78px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 900px);
  justify-content: center;
  align-items: start;
  gap: clamp(42px, 7vw, 90px);
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 30px);
  padding: 25px 0;
  border-top: 3px solid var(--gold-on-light);
}

.legal-toc nav {
  display: grid;
}

.legal-toc a {
  padding: 9px 0;
  color: #595c60;
  font-size: 13px;
  border-bottom: 1px solid #dedbd4;
}

.legal-toc a:hover {
  color: var(--gold-on-light);
}

.legal-copy {
  color: #4a4d51;
  font-size: 16px;
  line-height: 1.78;
}

.legal-copy h2 {
  scroll-margin-top: calc(var(--header-h) + 30px);
  margin: 54px 0 16px;
  color: #181a1c;
  font-size: 31px;
  line-height: 1.15;
}

.legal-copy h2:first-of-type {
  margin-top: 30px;
}

.legal-copy h3 {
  margin: 28px 0 10px;
  color: #25282b;
  font-size: 20px;
}

.legal-copy ul {
  padding-left: 23px;
}

.legal-copy li {
  margin-bottom: 9px;
}

.legal-copy address {
  color: #3c3f43;
  font-style: normal;
}

.legal-callout,
.legal-warning {
  padding: 20px 22px;
  background: #ece9e2;
  border-left: 4px solid var(--gold-on-light);
}

.legal-warning {
  margin: 24px 0;
  background: #fff0ef;
  border-color: var(--red);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 980px) {
  .utility-content-grid,
  .form-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .form-sidebar,
  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }
}

@media (max-width: 680px) {
  .utility-hero {
    padding: calc(var(--header-h) + 48px) 0 55px;
  }

  .utility-hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .utility-hero-lede {
    font-size: 16px;
  }

  .form-grid.two-column,
  .checkbox-grid,
  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .site-form,
  .utility-contact-card,
  .job-apply-panel {
    padding: 25px 21px;
  }

  .form-submit {
    width: 100%;
  }

  .legal-copy {
    font-size: 15px;
  }

  .legal-copy h2 {
    font-size: 27px;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .72fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.calculator-copy > h2 {
  margin-top: 0;
}

.calculator-results {
  position: sticky;
  top: 110px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(154, 107, 31, .25);
  background: #fff;
  box-shadow: 0 18px 45px rgba(16, 18, 20, .08);
}

.calculator-results h2 {
  margin-top: 0;
}

.calculator-results dl {
  margin: 24px 0 0;
}

.calculator-results dl > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(18, 20, 22, .1);
}

.calculator-results dt {
  color: #52565a;
}

.calculator-results dd {
  margin: 0;
  font-weight: 700;
  color: #17191b;
  text-align: right;
}

.calculator-results .calculator-total {
  margin-top: 8px;
  padding-top: 18px;
  border-bottom: 0;
  font-size: 1.08rem;
}

.calculator-total dt,
.calculator-total dd {
  color: var(--gold);
  font-weight: 800;
}

.calculator-notes-section {
  padding-block: clamp(64px, 8vw, 104px);
}

@media (max-width: 900px) {
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .calculator-results {
    position: static;
  }
}

/* Appointment form: conditional "Other" details and success confirmation modal. */
.other-service-field {
  margin-top: 18px;
}

.other-service-field[hidden] {
  display: none;
}

.other-service-field textarea {
  min-height: 140px;
}

.form-success-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(11, 13, 14, 0.72);
  cursor: pointer;
}

.form-success-modal[hidden] {
  display: none;
}

.form-success-modal__dialog {
  width: min(620px, 100%);
  padding: clamp(30px, 6vw, 48px);
  color: #fff;
  background: #4e8a4a;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  text-align: center;
  cursor: pointer;
}

.form-success-modal__dialog strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.05;
}

.form-success-modal__dialog p {
  margin: 0 auto;
  max-width: 520px;
  color: #fff;
  font-size: 17px;
  line-height: 1.65;
}

.form-success-modal__dialog span {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
