:root {
  color-scheme: light;
  --bg: #f4fbff;
  --surface: #ffffff;
  --surface-soft: #e8f7ff;
  --surface-strong: #d8f0ff;
  --text: #122f4a;
  --muted: #557184;
  --accent: #0b8fdc;
  --accent-strong: #05649a;
  --accent-soft: #dff3ff;
  --spark: #ffb703;
  --contrast: #ffffff;
  --line: rgba(18, 47, 74, 0.14);
  --shadow: 0 24px 70px rgba(11, 143, 220, 0.18);
  --radius: 8px;
  --radius-lg: 18px;
  --max: 1180px;
  --font: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: linear-gradient(145deg, var(--bg) 0%, var(--surface-soft) 52%, var(--bg) 100%);
  color: var(--text);
  letter-spacing: 0;
  transition: background-color 220ms ease, color 220ms ease;
}

body.is-lightbox-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 68%);
}

.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

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

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 188px;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--accent), var(--spark));
  color: var(--contrast);
}

.brand-mark img,
.brand-mark svg {
  width: 48px;
  height: 48px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 800;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  min-height: 40px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--surface-soft);
  color: var(--text);
  outline: none;
}

.is-hidden {
  display: none !important;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.header-cta {
  padding: 0 16px;
  background: var(--text);
  color: var(--surface);
}

.header-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

main {
  overflow: hidden;
}

.hero,
.reminder-section,
.updates-section,
.service-section,
.process-section,
.results-section,
.gallery-section,
.faq-section,
.contact-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  align-items: center;
  min-height: min(760px, calc(100vh - 42px));
  gap: clamp(28px, 6vw, 78px);
  padding: clamp(54px, 8vw, 98px) 0 60px;
}

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

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

h1 {
  font-family: var(--display);
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.92;
}

.hero-copy p {
  max-width: 58ch;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  padding: 0 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 76%, var(--spark)));
  color: var(--contrast);
  box-shadow: 0 16px 38px color-mix(in srgb, var(--accent) 34%, transparent);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.button.tertiary {
  border: 1px solid var(--line);
  background: var(--text);
  color: var(--surface);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}

.hero-stats dt {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 850;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, color-mix(in srgb, var(--text) 42%, transparent));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.service-ticket {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: min(270px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  color: #173f35;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.service-ticket span,
.service-ticket small {
  display: block;
  color: #60736c;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-ticket strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 1.1rem;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading.compact {
  margin: 0;
  text-align: left;
}

.section-heading span,
.contact-copy span,
.price-head span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-heading h2,
.contact-copy h2 {
  font-family: var(--display);
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.section-heading p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.service-section,
.updates-section,
.process-section,
.results-section,
.gallery-section,
.faq-section,
.contact-section {
  padding: clamp(72px, 10vw, 120px) 0 0;
}

.reminder-section {
  margin-top: -18px;
}

.reminder-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  box-shadow: 0 18px 52px rgba(11, 143, 220, 0.12);
}

.reminder-strip div {
  min-height: 98px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.reminder-strip div:last-child {
  border-right: 0;
}

.reminder-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reminder-strip strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.04;
}

.updates-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.updates-head {
  position: sticky;
  top: 118px;
}

.updates-head span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.updates-head h2 {
  font-family: var(--display);
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.updates-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.updates-board article {
  min-height: 228px;
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: 0 16px 44px rgba(11, 143, 220, 0.08);
}

.updates-board .updates-primary {
  grid-row: span 2;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 88%, var(--spark)), color-mix(in srgb, var(--text) 72%, var(--accent)));
  color: var(--surface);
}

.updates-board span {
  display: block;
  margin-bottom: 30px;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.updates-board .updates-primary span {
  color: color-mix(in srgb, var(--surface) 78%, transparent);
}

.updates-board h3 {
  font-family: var(--display);
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.02;
}

.updates-board p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.updates-board .updates-primary p {
  color: color-mix(in srgb, var(--surface) 82%, transparent);
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 22px;
}

.service-panel,
.price-card,
.process-list li,
.faq-list details,
.results-notes article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
}

.main-service {
  display: grid;
  align-content: center;
  min-height: 460px;
  padding: clamp(28px, 5vw, 54px);
}

.panel-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--accent), color-mix(in srgb, var(--accent) 64%, var(--spark)));
  color: var(--contrast);
}

.panel-icon svg {
  width: 34px;
  height: 34px;
}

.main-service h3,
.price-card h3 {
  font-family: var(--display);
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
}

.main-service p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.main-service ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.main-service li {
  position: relative;
  padding-left: 22px;
  font-weight: 780;
}

.main-service li::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--spark);
  content: "";
}

.price-card {
  padding: 24px;
}

.price-head h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.price-head p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.price-updated {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin: 0 0 16px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.price-list li:first-child {
  border-top: 1px solid var(--line);
}

.price-list span {
  display: grid;
  gap: 4px;
}

.price-list span strong {
  color: var(--text);
  font-size: 0.97rem;
  font-weight: 900;
}

.price-list span small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 760;
  line-height: 1.35;
}

.price-list > li > strong {
  color: var(--text);
  font-weight: 900;
  white-space: nowrap;
}

.price-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--spark) 16%, var(--surface));
  color: color-mix(in srgb, var(--text) 76%, var(--muted));
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.5;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 228px;
  padding: 22px;
}

.process-list span {
  display: block;
  margin-bottom: 44px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 900;
}

.process-list h3 {
  font-family: var(--display);
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.results-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.results-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.results-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 16px;
  align-items: stretch;
}

.gallery-feature {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  margin: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.gallery-feature img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.gallery-feature figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  color: #173f35;
  font-size: 0.84rem;
  font-weight: 850;
  backdrop-filter: blur(16px);
}

.results-notes {
  display: grid;
  gap: 14px;
}

.results-notes article {
  display: grid;
  align-content: end;
  min-height: 158px;
  padding: 20px;
}

.results-notes strong {
  margin-bottom: 8px;
  font-size: 1rem;
}

.results-notes p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.gallery-section[hidden] {
  display: none;
}

.gallery-section {
  overflow-x: clip;
}

.customer-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 210px));
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}

.customer-gallery figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(11, 143, 220, 0.1);
  cursor: zoom-in;
}

.customer-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.customer-gallery figure:hover img {
  transform: scale(1.035);
}

.gallery-controls {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 47, 74, 0.82);
  backdrop-filter: blur(14px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1080px, 100%);
  max-height: min(760px, calc(100vh - 92px));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  right: 20px;
  top: 20px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  cursor: pointer;
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
}

.faq-section {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  padding: 0 20px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 20px;
  font-weight: 850;
  cursor: pointer;
}

.faq-list summary::after {
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg) translate(-3px, -2px);
}

.faq-list p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding-bottom: 92px;
}

.contact-copy {
  position: sticky;
  top: 118px;
}

.location-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  gap: 18px;
}

.map-visual,
.visit-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow);
}

.map-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: var(--surface-soft);
}

.map-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(18, 47, 74, 0.14));
  pointer-events: none;
}

.map-visual iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: saturate(1.05);
}

.map-label,
.map-search {
  position: absolute;
  left: 28px;
  right: 28px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.map-label {
  bottom: 28px;
  padding: 20px;
}

.map-label strong,
.map-label span,
.map-search strong,
.map-search span {
  display: block;
}

.map-label strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.map-label span,
.map-search span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.map-search {
  top: 28px;
  right: auto;
  max-width: 330px;
  padding: 14px 16px;
}

.map-search span {
  margin-top: 0;
  margin-bottom: 4px;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.map-search strong {
  font-size: 0.98rem;
}

.visit-panel {
  display: grid;
  align-content: space-between;
  min-height: 520px;
  padding: clamp(24px, 4vw, 34px);
}

.visit-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.visit-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.visit-list dt {
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.visit-list dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 650;
  line-height: 1.08;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--text);
}

.site-footer a {
  color: var(--text);
  font-weight: 850;
}

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

.mobile-action-bar {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-top: 8px;
  }

  .hero,
  .updates-section,
  .service-grid,
  .results-section,
  .contact-section,
  .location-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-gallery {
    grid-template-columns: 1fr;
  }

  .results-notes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .customer-gallery {
    grid-template-columns: repeat(3, minmax(0, 190px));
  }

  .contact-copy {
    position: static;
  }

  .updates-head {
    position: static;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .site-header,
  .hero,
  .reminder-section,
  .updates-section,
  .service-section,
  .process-section,
  .results-section,
  .gallery-section,
  .faq-section,
  .contact-section,
  .site-footer {
    width: min(var(--max), calc(100% - 24px));
  }

  .site-header {
    position: sticky;
    top: 8px;
    margin-top: 12px;
    padding: 7px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    box-shadow: 0 12px 32px rgba(11, 143, 220, 0.14);
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-cta {
    display: none;
  }

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

  .brand-mark img,
  .brand-mark svg {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .nav-links {
    gap: 4px;
    padding-top: 5px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    min-height: 30px;
    padding: 7px 9px;
    font-size: 0.74rem;
    white-space: nowrap;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.1rem);
  }

  .hero-stats,
  .updates-board,
  .process-list,
  .results-notes,
  .location-showcase {
    grid-template-columns: 1fr;
  }

  .reminder-section {
    margin-top: 0;
  }

  .reminder-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reminder-strip div {
    min-height: 0;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .reminder-strip div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .updates-board .updates-primary {
    grid-row: auto;
  }

  .updates-board article {
    min-height: 0;
  }

  .customer-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: none;
    justify-items: center;
    margin: 0 auto;
    overflow: hidden;
  }

  .customer-gallery figure {
    display: none;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
  }

  .customer-gallery figure.is-active {
    display: block;
  }

  .gallery-controls:not([hidden]) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    gap: 14px;
    margin-top: 14px;
  }

  .gallery-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--text);
    box-shadow: 0 10px 24px rgba(11, 143, 220, 0.12);
  }

  .gallery-button svg {
    width: 20px;
    height: 20px;
  }

  #galleryCounter {
    min-width: 54px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 850;
    text-align: center;
  }

  .hero-media,
  .hero-media img,
  .gallery-feature,
  .gallery-feature img {
    min-height: 360px;
  }

  .service-ticket {
    left: 16px;
    right: 16px;
    width: auto;
  }

  .main-service {
    min-height: 0;
  }

  .results-notes article,
  .process-list li {
    min-height: 0;
  }

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

  .mobile-action-bar {
    position: fixed;
    left: 50%;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(420px, calc(100% - 24px));
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface) 95%, transparent);
    box-shadow: 0 18px 48px rgba(11, 143, 220, 0.22);
    transform: translateX(-50%);
    backdrop-filter: blur(18px);
  }

  .mobile-action-bar a {
    display: flex;
    flex: 1 1 0;
    min-width: 0;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 9px;
    border-radius: 999px;
    color: var(--text);
    font-size: 0.76rem;
    font-weight: 900;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  }

  .mobile-action-bar a:first-child {
    flex-grow: 1.15;
    background: var(--text);
    color: var(--surface);
  }

  .mobile-action-bar a:hover,
  .mobile-action-bar a:focus-visible {
    background: var(--accent-soft);
    color: var(--text);
    outline: none;
  }

  .mobile-action-bar a:first-child:hover,
  .mobile-action-bar a:first-child:focus-visible {
    background: var(--accent);
    color: var(--contrast);
  }

  .mobile-action-bar a:active {
    transform: translateY(1px);
  }

  .mobile-action-icon {
    display: grid;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: rgba(11, 143, 220, 0.11);
  }

  .mobile-action-bar a:first-child .mobile-action-icon {
    background: rgba(255, 255, 255, 0.16);
  }

  .mobile-action-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-action-bar svg {
    width: 18px;
    height: 18px;
  }
}

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