:root {
  --navy: #0d3034;
  --navy-deep: #082529;
  --navy-soft: #17484c;
  --ivory: #f8f3e9;
  --ivory-deep: #efe6d7;
  --paper: #fffdf8;
  --sea: #89c8bf;
  --sea-light: #dcefe9;
  --brownstone: #a85f3b;
  --brownstone-light: #d79b77;
  --ink: #1d2a2b;
  --muted: #667271;
  --line: rgba(13, 48, 52, 0.14);
  --white-line: rgba(255, 255, 255, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(13, 48, 52, 0.13);
  --radius-large: 2rem;
  --radius-medium: 1.25rem;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
a,
input,
select,
textarea,
summary {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--brownstone-light);
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.35rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.45rem, 4.6vw, 4.5rem);
}

h3 {
  font-size: 1.55rem;
}

.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: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--paper);
  color: var(--navy);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.section-shell,
.header-shell,
.hero-shell,
.hero-proof {
  width: min(100% - 2.5rem, 1240px);
  margin-inline: auto;
}

.section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.eyebrow {
  margin-bottom: 1.4rem;
  color: var(--brownstone);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: var(--navy);
  color: white;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--navy-soft);
  border-color: var(--navy-soft);
}

.button-small {
  min-height: 2.75rem;
  padding-inline: 1.15rem;
  font-size: 0.73rem;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: white;
}

.button-ghost:hover {
  border-color: white;
  background: white;
  color: var(--navy);
}

.button-light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--navy);
}

.button-light:hover {
  border-color: white;
  background: white;
  color: var(--navy);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  color: white;
}

.button-outline-light:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.button-ghost-dark {
  border-color: var(--line);
  background: transparent;
  color: var(--navy);
}

.button-ghost-dark:hover {
  border-color: var(--navy);
  background: var(--ivory);
}

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

.text-link span,
.service-card a span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.service-card a:hover span {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  color: white;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 8px 30px rgba(13, 48, 52, 0.07);
  color: var(--navy);
  backdrop-filter: blur(14px);
}

.header-shell {
  display: grid;
  min-height: 5.75rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 4rem;
  height: 3.85rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0.45rem;
  background: white;
  box-shadow: 0 4px 14px rgba(2, 20, 22, 0.12);
  object-fit: contain;
}

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

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 0.25rem;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.4vw, 2.3rem);
}

.primary-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 700;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header:not(.is-scrolled) .header-cta {
  border-color: white;
  background: white;
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  width: 1rem;
  height: 1.5px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  padding: 10.5rem 0 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(137, 200, 191, 0.12), transparent 28%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 52%, #124348);
  color: white;
}

.hero::before {
  position: absolute;
  width: 31rem;
  height: 31rem;
  right: -11rem;
  top: -16rem;
  border-radius: 50%;
  background: var(--sea);
  content: "";
  opacity: 0.93;
}

.hero::after {
  position: absolute;
  width: 24rem;
  height: 24rem;
  bottom: 6rem;
  left: -15rem;
  border: 1px solid rgba(137, 200, 191, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(137, 200, 191, 0.04), 0 0 0 8rem rgba(137, 200, 191, 0.025);
  content: "";
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 595px;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}

.hero-copy {
  padding-bottom: 6rem;
}

.hero .eyebrow {
  color: var(--sea);
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 1.8rem;
  color: white;
}

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

.hero-lede {
  max-width: 650px;
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

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

.hero-actions .button:first-child {
  border-color: var(--sea);
  background: var(--sea);
  color: var(--navy);
}

.hero-actions .button:first-child:hover {
  border-color: #a7dcd4;
  background: #a7dcd4;
}

.confirmation-note {
  display: flex;
  margin-top: 1.6rem;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.confirmation-note span {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(137, 200, 191, 0.62);
  border-radius: 50%;
  color: var(--sea);
  font-size: 0.7rem;
}

.hero-brand-panel {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 1.7rem;
  align-items: center;
  gap: 1.15rem;
  padding: 0.65rem 1.35rem 0.65rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 38px rgba(2, 20, 22, 0.18);
  backdrop-filter: blur(8px);
}

.hero-brand-panel img {
  width: 8rem;
  height: 7.75rem;
  flex: 0 0 auto;
  border-radius: 0.55rem;
  background: white;
  object-fit: contain;
}

.hero-brand-panel div {
  display: grid;
  gap: 0.35rem;
}

.hero-brand-panel span {
  color: var(--sea);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-brand-panel strong {
  max-width: 12rem;
  color: white;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.18;
}

.hero-visual {
  position: relative;
  height: 510px;
  align-self: end;
}

.hero-car {
  position: absolute;
  z-index: 3;
  width: 118%;
  max-width: none;
  right: -14%;
  bottom: 8%;
  filter: drop-shadow(0 28px 35px rgba(2, 20, 22, 0.45));
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
}

.hero-orbit-one {
  width: 430px;
  height: 430px;
  right: 4%;
  bottom: 8%;
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-orbit-two {
  width: 340px;
  height: 340px;
  right: 13%;
  bottom: 17%;
  background: rgba(137, 200, 191, 0.08);
}

.hero-proof {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: 132px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid var(--white-line);
}

.hero-proof div {
  display: grid;
  min-height: 74px;
  align-content: center;
  padding: 0 1.8rem;
  border-right: 1px solid var(--white-line);
}

.hero-proof div:first-child {
  padding-left: 0;
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  color: var(--sea);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.73rem;
}

.service-intro {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 4rem;
}

.section-heading h2 {
  max-width: 770px;
  margin-bottom: 0;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 4rem;
}

.split-heading > p {
  max-width: 470px;
  margin-bottom: 0.6rem;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 340px;
  grid-column: span 2;
  flex-direction: column;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: white;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card:hover {
  border-color: rgba(13, 48, 52, 0.28);
  box-shadow: 0 20px 50px rgba(13, 48, 52, 0.09);
  transform: translateY(-4px);
}

.service-card-featured {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

.service-card-featured h3,
.service-card-featured a {
  color: white;
}

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

.card-number {
  position: absolute;
  top: 1.25rem;
  right: 1.4rem;
  color: var(--brownstone-light);
  font-family: var(--serif);
  font-size: 0.8rem;
}

.service-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: auto;
  place-items: center;
  border-radius: 50%;
  background: var(--sea-light);
  color: var(--navy);
}

.service-card-featured .service-icon {
  background: var(--sea);
}

.service-icon svg {
  width: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-card h3 {
  margin: 2rem 0 0.85rem;
}

.service-card p {
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-card a {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--navy);
  font-size: 0.81rem;
  font-weight: 800;
}

.care-section {
  background: var(--ivory);
}

.care-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.care-copy h2 {
  margin-bottom: 1.5rem;
}

.care-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}

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

.check-list li::before {
  position: absolute;
  top: 1rem;
  left: 0;
  display: grid;
  width: 1.15rem;
  height: 1.15rem;
  place-items: center;
  border-radius: 50%;
  background: var(--sea);
  color: var(--navy);
  content: "✓";
  font-size: 0.65rem;
  font-weight: 900;
}

.add-on-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2.25rem, 5vw, 4rem);
  border-radius: var(--radius-large);
  background: var(--navy);
  box-shadow: var(--shadow);
  color: white;
}

.add-on-card::after {
  position: absolute;
  width: 15rem;
  height: 15rem;
  right: -6rem;
  bottom: -7rem;
  border: 1px solid rgba(137, 200, 191, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(137, 200, 191, 0.05);
  content: "";
}

.add-on-card .eyebrow {
  color: var(--sea);
}

.add-on-card h3 {
  max-width: 400px;
  margin-bottom: 2rem;
  color: white;
  font-size: clamp(2rem, 3vw, 3rem);
}

.add-on-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.add-on-tags span {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
}

.fine-print {
  position: relative;
  z-index: 2;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.79rem;
}

.process-section {
  background: var(--paper);
}

.centered-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  z-index: 0;
  top: 2rem;
  right: 16%;
  left: 16%;
  border-top: 1px dashed rgba(13, 48, 52, 0.24);
  content: "";
}

.process-grid li {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  text-align: center;
}

.process-number {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--brownstone);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.process-grid h3 {
  margin-bottom: 0.8rem;
}

.process-grid p {
  color: var(--muted);
  font-size: 0.93rem;
}

.owner-section {
  overflow: hidden;
  background: var(--sea-light);
}

.owner-shell {
  display: grid;
  grid-template-columns: minmax(350px, 0.82fr) 1.18fr;
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
}

.owner-photo-wrap {
  position: relative;
  width: min(100%, 470px);
  margin-inline: auto;
}

.owner-photo-accent {
  position: absolute;
  width: 85%;
  height: 100%;
  top: 7%;
  left: -8%;
  border-radius: 48% 48% 1.5rem 1.5rem;
  background: var(--brownstone-light);
  transform: rotate(-4deg);
}

.owner-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.78;
  border-radius: 48% 48% 1.5rem 1.5rem;
  object-fit: cover;
  object-position: 50% 49%;
  box-shadow: var(--shadow);
}

.owner-caption {
  position: absolute;
  z-index: 3;
  right: -2rem;
  bottom: 2rem;
  display: grid;
  min-width: 230px;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(13, 48, 52, 0.18);
}

.owner-caption strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.owner-caption span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-copy {
  max-width: 670px;
}

.owner-copy h2 {
  margin-bottom: 1.5rem;
}

.owner-copy p:not(.eyebrow) {
  color: #4f6563;
}

.owner-lede {
  color: var(--navy) !important;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.35;
}

.owner-copy .text-link {
  margin-top: 1rem;
}

.proof-section {
  background: var(--paper);
}

.proof-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.proof-copy h2 {
  margin-bottom: 1.5rem;
}

.proof-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.google-rating {
  display: flex;
  margin: 2rem 0 1.5rem;
  align-items: center;
  gap: 1rem;
}

.google-g {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: #4285f4;
  font-family: var(--sans);
  font-size: 1.55rem;
  font-weight: 900;
}

.google-rating > div {
  display: grid;
}

.google-rating strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.2;
}

.google-rating strong span {
  margin-left: 0.35rem;
  color: #e19a2a;
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.google-rating small {
  color: var(--muted);
  font-size: 0.72rem;
}

.profile-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.profile-photo {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  margin: 0;
  border-radius: 1.2rem;
  background: var(--ivory-deep);
}

.profile-photo-large {
  min-height: 430px;
  grid-row: span 2;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-photo figcaption {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  left: 0.7rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(8, 37, 41, 0.78);
  color: white;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.areas-section {
  background: var(--navy);
  color: white;
}

.areas-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.areas-section .eyebrow {
  color: var(--sea);
}

.areas-section h2 {
  color: white;
}

.areas-copy > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.65);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  position: relative;
  padding: 0.75rem 0.5rem 0.75rem 1.25rem;
  border-bottom: 1px solid var(--white-line);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.area-list li::before {
  position: absolute;
  top: 1.35rem;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brownstone-light);
  content: "";
}

.area-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-weight: 800;
}

.area-list a span {
  color: var(--sea);
  font-size: 0.75rem;
}

.area-list a:hover {
  color: var(--sea);
}

.request-section {
  background: var(--ivory);
}

.request-shell {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.request-intro {
  position: sticky;
  top: 7.5rem;
}

.request-intro h2 {
  margin-bottom: 1.4rem;
}

.request-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.pending-card {
  display: flex;
  margin: 2rem 0;
  padding: 1rem;
  align-items: flex-start;
  gap: 0.9rem;
  border: 1px solid rgba(168, 95, 59, 0.24);
  border-radius: 1rem;
  background: rgba(255, 253, 248, 0.7);
}

.pending-dot {
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.4rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brownstone);
  box-shadow: 0 0 0 5px rgba(168, 95, 59, 0.12);
}

.pending-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.87rem;
}

.pending-card p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.contact-list {
  margin: 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 4rem 1fr;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.request-form-card {
  min-height: 650px;
  padding: clamp(1.5rem, 4vw, 3.4rem);
  border: 1px solid rgba(13, 48, 52, 0.1);
  border-radius: var(--radius-large);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-progress {
  margin-bottom: 2.6rem;
}

.progress-track {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--ivory-deep);
}

.progress-track span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: var(--brownstone);
  transition: width 250ms ease;
}

.form-progress p {
  display: flex;
  margin: 0.8rem 0 0;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.form-progress strong {
  color: var(--navy);
}

.form-step h3,
.request-success h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.form-help {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-card {
  position: relative;
  cursor: pointer;
}

.choice-card-wide {
  grid-column: 1 / -1;
}

.choice-card input {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-card > span {
  display: grid;
  min-height: 92px;
  align-content: center;
  padding: 1rem 3rem 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: white;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.choice-card > span::after {
  position: absolute;
  top: 50%;
  right: 1.15rem;
  display: grid;
  width: 1.2rem;
  height: 1.2rem;
  place-items: center;
  border: 1px solid rgba(13, 48, 52, 0.3);
  border-radius: 50%;
  color: white;
  content: "";
  font-size: 0.66rem;
  transform: translateY(-50%);
}

.choice-card input:checked + span {
  border-color: var(--navy);
  background: var(--sea-light);
  box-shadow: inset 0 0 0 1px var(--navy);
}

.choice-card input:checked + span::after {
  border-color: var(--navy);
  background: var(--navy);
  content: "✓";
}

.choice-card input:focus-visible + span {
  outline: 3px solid var(--brownstone-light);
  outline-offset: 3px;
}

.choice-card strong {
  color: var(--navy);
  font-size: 0.9rem;
}

.choice-card small {
  color: var(--muted);
  font-size: 0.74rem;
}

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

.field {
  display: grid;
  margin-bottom: 1rem;
  gap: 0.45rem;
}

.field > span,
.add-on-options legend {
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(13, 48, 52, 0.19);
  border-radius: 0.75rem;
  background: white;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(137, 200, 191, 0.25);
  outline: none;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.consent-row input[aria-invalid="true"] {
  border-color: #ad3c33;
}

.add-on-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  gap: 0.55rem 1rem;
}

.add-on-options legend {
  grid-column: 1 / -1;
  margin-bottom: 0.3rem;
}

.add-on-options label,
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.add-on-options input,
.consent-row input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.19rem;
  accent-color: var(--navy);
}

.consent-row {
  margin: 0.5rem 0 1rem;
}

.field-error {
  min-height: 1.25rem;
  margin: 0.55rem 0 0;
  color: #9b2f28;
  font-size: 0.77rem;
  font-weight: 700;
}

.form-actions {
  display: flex;
  margin-top: 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-actions-end {
  justify-content: flex-end;
}

.request-success {
  display: grid;
  min-height: 530px;
  align-content: center;
  justify-items: start;
}

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

.success-icon {
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--sea);
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
}

.request-success .eyebrow {
  margin-bottom: 0.7rem;
}

.preview-warning {
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--brownstone);
  background: var(--ivory);
  color: var(--muted);
  font-size: 0.82rem;
}

.request-summary {
  display: grid;
  width: 100%;
  margin: 1rem 0 1.5rem;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.request-summary div {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.request-summary span,
.request-summary strong {
  display: block;
}

.request-summary span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.request-summary strong {
  margin-top: 0.2rem;
  color: var(--navy);
  font-size: 0.86rem;
}

.faq-section {
  background: var(--paper);
}

.faq-shell {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-heading {
  position: sticky;
  top: 7.5rem;
}

.faq-heading p:not(.eyebrow) {
  color: var(--muted);
}

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

.accordion summary {
  position: relative;
  padding: 1.6rem 3rem 1.6rem 0;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  list-style: none;
}

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

.accordion summary::after {
  position: absolute;
  top: 1.5rem;
  right: 0;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
}

.accordion details[open] summary::after {
  content: "–";
}

.accordion details p {
  max-width: 700px;
  padding: 0 3rem 1.5rem 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.closing-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--brownstone);
  color: white;
  text-align: center;
}

.closing-section .eyebrow {
  color: #f5ceb5;
}

.closing-section h2 {
  max-width: 840px;
  margin: 0 auto 2rem;
  color: white;
}

.closing-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.site-footer {
  padding: 4rem 0 1.5rem;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.64);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr 1fr 1fr;
  padding-bottom: 3rem;
  gap: clamp(2rem, 5vw, 5rem);
}

.brand-light {
  color: white;
}

.footer-brand > p {
  max-width: 330px;
  margin: 1.25rem 0 0;
  font-size: 0.84rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-grid h3 {
  margin-bottom: 0.5rem;
  color: white;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  font-size: 0.82rem;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  padding-top: 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--white-line);
  font-size: 0.73rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 1.5rem;
}

.mobile-cta {
  display: none;
}

.legal-page {
  min-height: 100vh;
  padding: 9rem 0 5rem;
  background: var(--ivory);
}

.legal-card {
  width: min(100% - 2.5rem, 820px);
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 4.5rem);
  border-radius: var(--radius-large);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.location-hero {
  position: relative;
  overflow: hidden;
  padding: 10.5rem 0 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(137, 200, 191, 0.16), transparent 24rem),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: white;
}

.location-hero::after {
  position: absolute;
  width: 25rem;
  height: 25rem;
  right: -10rem;
  bottom: -14rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(137, 200, 191, 0.04);
  content: "";
}

.location-hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 560px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.breadcrumbs {
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.breadcrumbs a:hover {
  color: white;
}

.location-hero .eyebrow {
  color: var(--sea);
}

.location-hero h1 {
  margin-bottom: 1.6rem;
  color: white;
  font-size: clamp(3.3rem, 6.2vw, 6.2rem);
}

.location-hero-copy > p:not(.eyebrow):not(.breadcrumbs) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.location-hero-actions {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.location-hero-actions .button:first-child {
  border-color: var(--sea);
  background: var(--sea);
  color: var(--navy);
}

.location-visual {
  position: relative;
  min-height: 470px;
}

.location-visual::before {
  position: absolute;
  width: 84%;
  height: 92%;
  top: 1rem;
  left: -1.25rem;
  border-radius: 48% 48% 1.75rem 1.75rem;
  background: var(--brownstone-light);
  content: "";
  transform: rotate(-3deg);
}

.location-visual img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  inset: 0;
  border-radius: 48% 48% 1.75rem 1.75rem;
  box-shadow: 0 28px 70px rgba(2, 20, 22, 0.4);
  object-fit: cover;
}

.location-photo-badge {
  position: absolute;
  z-index: 3;
  right: -1.25rem;
  bottom: 1.5rem;
  display: grid;
  min-width: 220px;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--navy);
}

.location-photo-badge strong {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.location-photo-badge span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.location-proof-bar {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 118px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--white-line);
}

.location-proof-bar div {
  display: grid;
  align-content: center;
  padding: 1.25rem 1.75rem;
  border-right: 1px solid var(--white-line);
}

.location-proof-bar div:first-child {
  padding-left: 0;
}

.location-proof-bar div:last-child {
  border-right: 0;
}

.location-proof-bar strong {
  color: var(--sea);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
}

.location-proof-bar span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.location-intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.location-intro-copy {
  position: sticky;
  top: 7.5rem;
}

.location-intro-copy h2 {
  margin-bottom: 1.4rem;
}

.location-intro-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.location-service-cards {
  display: grid;
  gap: 1rem;
}

.location-card {
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: white;
  gap: 1.25rem;
}

.location-card-number {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 50%;
  background: var(--sea-light);
  color: var(--navy);
  font-family: var(--serif);
}

.location-card h3 {
  margin-bottom: 0.55rem;
}

.location-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.local-details-section {
  background: var(--ivory);
}

.local-details-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.local-details-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.detail-list {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}

.detail-list strong {
  color: var(--navy);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.detail-list span {
  color: var(--muted);
  font-size: 0.88rem;
}

.review-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2.3rem, 5vw, 4rem);
  border-radius: var(--radius-large);
  background: var(--navy);
  box-shadow: var(--shadow);
  color: white;
}

.review-card::after {
  position: absolute;
  width: 12rem;
  height: 12rem;
  right: -5rem;
  bottom: -5rem;
  border: 1px solid rgba(137, 200, 191, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(137, 200, 191, 0.04);
  content: "";
}

.review-card .eyebrow {
  color: var(--sea);
}

.review-stars {
  margin-bottom: 1.25rem;
  color: #f1b74e;
  letter-spacing: 0.1em;
}

.review-card blockquote {
  margin: 0 0 1.5rem;
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
}

.review-card cite {
  display: grid;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
  font-size: 0.75rem;
}

.review-card cite strong {
  color: white;
  font-size: 0.86rem;
}

.review-card a {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--sea);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.location-checklist-section {
  background: var(--paper);
}

.location-checklist-shell {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.location-checklist-heading {
  position: sticky;
  top: 7.5rem;
}

.location-checklist-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.location-checklist-section .check-list {
  margin-top: 0;
}

.nearby-section {
  padding-top: 0;
  background: var(--paper);
}

.nearby-heading {
  display: flex;
  margin-bottom: 2rem;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.nearby-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.nearby-card {
  display: grid;
  min-height: 165px;
  align-content: space-between;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--ivory);
  transition: transform 180ms ease, border-color 180ms ease;
}

.nearby-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
}

.nearby-card span {
  color: var(--brownstone);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nearby-card strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.location-faq-section {
  background: var(--sea-light);
}

.location-faq-shell {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.location-faq-heading {
  position: sticky;
  top: 7.5rem;
  align-self: start;
}

.location-faq-heading > p:not(.eyebrow) {
  color: #4f6563;
}

.location-faq-section .accordion details {
  border-color: rgba(13, 48, 52, 0.18);
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 1.15rem;
  }

  .primary-nav a {
    font-size: 0.75rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  }

  .hero-car {
    width: 130%;
    right: -24%;
  }

  .service-card {
    grid-column: span 3;
  }

  .service-card:nth-child(5) {
    grid-column: 2 / span 4;
  }

  .request-shell,
  .faq-shell {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .location-hero-shell {
    grid-template-columns: 1fr 0.82fr;
  }

  .location-visual {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 5rem;
  }

  .site-header {
    color: var(--navy);
  }

  .site-header:not(.is-scrolled) {
    background: rgba(255, 253, 248, 0.96);
  }

  .header-shell {
    min-height: 5.25rem;
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    position: fixed;
    top: 5.25rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 2rem 1.25rem;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.6rem;
  }

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

  .hero {
    padding-top: 8.5rem;
  }

  .hero::before {
    width: 20rem;
    height: 20rem;
    right: -11rem;
    top: -8rem;
  }

  .hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 1rem;
  }

  .hero h1 {
    max-width: 690px;
  }

  .hero-visual {
    width: min(100%, 580px);
    height: 360px;
    margin: 0 auto;
  }

  .hero-car {
    width: 110%;
    right: -5%;
    bottom: 1rem;
  }

  .hero-orbit-one {
    width: 330px;
    height: 330px;
  }

  .hero-orbit-two {
    width: 260px;
    height: 260px;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof div {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--white-line);
  }

  .hero-proof div:nth-child(2) {
    border-right: 0;
  }

  .split-heading,
  .care-shell,
  .owner-shell,
  .proof-shell,
  .areas-shell,
  .request-shell,
  .faq-shell,
  .location-hero-shell,
  .location-intro-grid,
  .local-details-shell,
  .location-checklist-shell,
  .location-faq-shell {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 1.25rem;
  }

  .owner-photo-wrap {
    width: min(85%, 440px);
  }

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

  .request-intro,
  .faq-heading,
  .location-intro-copy,
  .location-checklist-heading,
  .location-faq-heading {
    position: static;
  }

  .location-visual {
    width: min(100%, 580px);
    min-height: 520px;
    margin-inline: auto;
  }

  .location-proof-bar {
    grid-template-columns: 1fr 1fr;
  }

  .location-proof-bar div:nth-child(2) {
    border-right: 0;
  }

  .location-proof-bar div {
    border-bottom: 1px solid var(--white-line);
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 4.15rem;
    font-size: 15px;
  }

  .section-shell,
  .header-shell,
  .hero-shell,
  .hero-proof {
    width: min(100% - 2rem, 1240px);
  }

  .profile-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .profile-photo,
  .profile-photo-large {
    min-height: 260px;
    grid-row: auto;
  }

  .profile-photo-large {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .section {
    padding: 4.5rem 0;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 7.5rem;
  }

  .hero h1 {
    margin-bottom: 1.35rem;
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    height: 285px;
  }

  .hero-car {
    width: 123%;
    right: -12%;
    bottom: 1.5rem;
  }

  .hero-orbit-one {
    width: 270px;
    height: 270px;
    right: 4%;
  }

  .hero-orbit-two {
    width: 210px;
    height: 210px;
    right: 13%;
  }

  .hero-brand-panel {
    width: 100%;
    padding-right: 1rem;
  }

  .hero-brand-panel img {
    width: 6.6rem;
    height: 6.35rem;
  }

  .hero-proof {
    width: 100%;
    padding: 0 1rem;
  }

  .hero-proof div,
  .hero-proof div:first-child {
    min-height: 90px;
    padding: 1rem;
  }

  .hero-proof strong {
    font-size: 0.95rem;
  }

  .hero-proof span {
    line-height: 1.35;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

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

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    min-height: 300px;
    grid-column: auto;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-grid::before {
    display: none;
  }

  .process-grid li {
    padding: 0;
  }

  .owner-photo-wrap {
    width: 88%;
    margin-left: 0;
  }

  .owner-caption {
    right: -12%;
    bottom: 1.5rem;
    min-width: 190px;
    padding: 1rem;
  }

  .area-list {
    grid-template-columns: 1fr 1fr;
  }

  .location-hero {
    padding-top: 8.25rem;
  }

  .location-hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.7rem);
  }

  .location-hero-actions {
    display: grid;
  }

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

  .location-visual {
    min-height: 360px;
  }

  .location-photo-badge {
    right: -0.5rem;
    min-width: 190px;
  }

  .location-proof-bar {
    width: 100%;
    padding: 0 1rem;
  }

  .location-proof-bar div,
  .location-proof-bar div:first-child {
    min-height: 88px;
    padding: 0.9rem;
  }

  .location-service-cards {
    gap: 0.75rem;
  }

  .location-card {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }

  .detail-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .nearby-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .request-form-card {
    min-height: 0;
    padding: 1.4rem;
    border-radius: 1.25rem;
  }

  .choice-grid,
  .field-row,
  .add-on-options,
  .request-summary {
    grid-template-columns: 1fr;
  }

  .choice-card-wide,
  .add-on-options legend {
    grid-column: auto;
  }

  .form-actions .button {
    min-width: 44%;
  }

  .accordion summary {
    font-size: 1.18rem;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    padding: 0.65rem;
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 -8px 30px rgba(13, 48, 52, 0.08);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    display: grid;
    min-height: 2.85rem;
    place-items: center;
    color: var(--navy);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-cta a:last-child {
    border-radius: 999px;
    background: var(--navy);
    color: white;
  }
}

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