:root {
  --white: #ffffff;
  --ivory: #fffaf5;
  --paper: #fffdfa;
  --mist: #f5f3ef;
  --sand: #efe8df;
  --charcoal: #1d2329;
  --slate: #56616b;
  --line: rgba(29, 35, 41, 0.1);
  --orange: #f26b1d;
  --orange-deep: #d65410;
  --orange-soft: rgba(242, 107, 29, 0.12);
  --shadow: 0 24px 70px rgba(26, 31, 36, 0.1);
  --shadow-tight: 0 16px 36px rgba(26, 31, 36, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
  --header-h: 86px;
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(242, 107, 29, 0.12), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

p,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 28px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
  max-width: 45rem;
}

.section-head-center {
  margin-inline: auto;
  text-align: center;
}

.section-head p,
.copy,
.card p,
.metric span,
.faq-intro,
.footer-panel p,
.service-summary p,
.review-card p,
.contact-panel p,
.estimate-panel p {
  color: var(--slate);
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(29, 35, 41, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--orange-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 18px 34px rgba(214, 84, 16, 0.28);
}

.btn-secondary {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(29, 35, 41, 0.12);
}

.btn-ghost {
  color: var(--orange-deep);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(242, 107, 29, 0.22);
}

.btn-dark-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn-light-outline {
  color: var(--orange-deep);
  background: transparent;
  border-color: rgba(242, 107, 29, 0.3);
}

.btn-inline {
  width: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8, 12, 16, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 14px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 122px;
  max-width: 22vw;
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.05;
  color: var(--white);
}

.brand-subtitle {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.header-phone {
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}

.hero {
  padding: 22px 0 18px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.98) 8%, rgba(255, 252, 248, 0.84) 40%, rgba(255, 252, 248, 0.26) 72%),
    var(--hero-image) center/cover;
  box-shadow: var(--shadow);
}

.hero-shell-home {
  background:
    linear-gradient(90deg, rgba(5, 8, 11, 0.94) 0%, rgba(8, 12, 16, 0.84) 42%, rgba(8, 12, 16, 0.42) 66%, rgba(8, 12, 16, 0.18) 100%),
    var(--hero-image) center/cover;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: auto -60px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 107, 29, 0.16), rgba(242, 107, 29, 0));
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - var(--header-h) - 44px);
  display: grid;
  gap: 28px;
  align-items: end;
  padding: 42px 28px 34px;
}

.hero-copy {
  max-width: 45rem;
  display: grid;
  gap: 18px;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  max-width: 10ch;
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.72;
  max-width: 40rem;
}

.hero-shell-home .hero-copy h1,
.hero-shell-home .hero-copy p {
  color: var(--white);
}

.hero-shell-home .hero-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow-dark {
  color: #ff8f54;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.hero-inline-proof {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.proof-stars {
  color: #ffbf47;
  letter-spacing: 0.12em;
}

.hero-proofs {
  display: grid;
  gap: 12px;
}

.booking-panel {
  max-width: 430px;
  margin-left: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.booking-panel-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.booking-panel-head h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.booking-panel-head p:last-child {
  color: var(--slate);
  line-height: 1.6;
}

.booking-kicker {
  color: var(--orange-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.booking-step {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #7b858e;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.booking-step::before {
  content: counter(step);
}

.booking-step {
  counter-increment: step;
}

.booking-steps {
  counter-reset: step;
}

.booking-step::before {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(29, 35, 41, 0.14);
  background: #f3f5f7;
}

.booking-step span {
  display: block;
}

.booking-step.is-active::before {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}

.booking-summary {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.summary-row {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(29, 35, 41, 0.08);
  border-radius: 18px;
  background: #fbfbfc;
}

.summary-row strong {
  font-size: 0.8rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.summary-row span {
  font-weight: 800;
}

.booking-actions {
  display: grid;
  gap: 10px;
}

.metric,
.card,
.review-card,
.estimate-panel,
.contact-panel,
.footer-panel,
.service-summary,
.faq-card {
  border: 1px solid rgba(29, 35, 41, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-tight);
}

.metric {
  padding: 18px;
  backdrop-filter: blur(14px);
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.22rem;
}

.grid-3,
.grid-4,
.services-grid,
.review-grid,
.footer-grid,
.contact-grid,
.gallery-grid,
.detail-grid,
.related-grid {
  display: grid;
  gap: 18px;
}

.trust-grid {
  display: grid;
  gap: 16px;
}

.trust-card,
.info-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 241, 234, 0.94));
  border: 1px solid rgba(29, 35, 41, 0.08);
}

.trust-card strong,
.info-card strong {
  display: block;
  margin-bottom: 6px;
}

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

.services-intro-card {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid rgba(29, 35, 41, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(242, 107, 29, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 237, 0.98));
  box-shadow: var(--shadow-tight);
}

.section-head-services {
  margin-bottom: 0;
  max-width: 52rem;
}

.services-quick-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.services-quick-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(29, 35, 41, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: #2a3949;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

.services-quick-nav a:hover,
.services-quick-nav a:focus-visible {
  transform: translateY(-2px);
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 16px 32px rgba(242, 107, 29, 0.2);
}

.services-grid-home {
  gap: 22px;
}

.service-card {
  overflow: hidden;
  display: grid;
  background: var(--white);
  border-radius: 26px;
  border: 1px solid rgba(29, 35, 41, 0.08);
  box-shadow: var(--shadow-tight);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.service-body {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.service-card-home {
  align-content: start;
  min-height: 100%;
  padding: 0;
}

.service-card-home .service-body {
  padding: 22px 22px 24px;
  text-align: left;
}

.service-thumb {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(29, 35, 41, 0.08);
  background-size: cover;
  background-position: center;
  transition: transform 700ms ease;
}

.service-card-home:hover .service-thumb,
.service-card-home:focus-within .service-thumb {
  transform: scale(1.04);
}

.service-tag {
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-body h3,
.gallery-card h3,
.review-card h3,
.faq-card h3,
.service-summary h3 {
  font-size: 2rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--orange-deep);
}

.link-arrow::after {
  content: "→";
}

.gallery-card {
  overflow: hidden;
  display: grid;
  min-height: 100%;
}

.gallery-photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.gallery-copy {
  padding: 22px;
  display: grid;
  gap: 8px;
}

.gallery-grid.gallery-only {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gallery-grid.gallery-only .gallery-card {
  min-height: 240px;
  border-radius: 28px;
  box-shadow: var(--shadow-tight);
}

.gallery-grid.gallery-only .gallery-photo {
  aspect-ratio: 1 / 1;
  transition: transform 700ms ease, filter 300ms ease;
}

.gallery-grid-home .gallery-card {
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.gallery-grid-home .gallery-photo {
  aspect-ratio: 1 / 1.12;
}

.gallery-grid.gallery-only .gallery-card:hover .gallery-photo {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.section-gallery {
  padding-top: 28px;
}

.split {
  display: grid;
  gap: 18px;
}

.split-home {
  align-items: start;
}

.photo-panel {
  min-height: 360px;
  border-radius: 30px;
  border: 1px solid rgba(29, 35, 41, 0.08);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.copy-panel {
  padding: 28px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(29, 35, 41, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-tight);
}

.copy-panel-home {
  min-height: 100%;
}

.photo-panel-tall {
  min-height: 420px;
}

.bullet-list,
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.bullet-list li,
.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--slate);
  line-height: 1.65;
}

.bullet-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}

.review-card,
.faq-card,
.estimate-panel,
.contact-panel,
.service-summary,
.footer-panel {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 248, 0.98));
  color: #243446;
}

.review-card {
  display: grid;
  gap: 14px;
}

.review-carousel {
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.review-spotlight {
  display: grid;
  gap: 16px;
}

.review-spotlight-card {
  padding: 28px;
  border: 1px solid rgba(29, 35, 41, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-tight);
}

.quote-mark {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.7;
}

.review-spotlight-card p {
  color: var(--slate);
  line-height: 1.7;
}

.review-spotlight-meta {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.review-row {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: review-slide-left 34s linear infinite;
}

.review-row.reverse {
  animation-name: review-slide-right;
}

.review-row .review-card {
  width: min(340px, calc(100vw - 48px));
}

.stars {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--slate);
  font-weight: 800;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange-deep);
  background: var(--orange-soft);
}

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

.faq-item {
  border: 1px solid rgba(29, 35, 41, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

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

.faq-item p {
  padding: 0 22px 20px;
  color: var(--slate);
  line-height: 1.7;
}

.estimate-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(29, 35, 41, 0.96), rgba(53, 43, 34, 0.9)),
    linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
}

.estimate-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.estimate-panel p,
.estimate-panel h2 {
  position: relative;
  z-index: 1;
  color: inherit;
}

.estimate-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.estimate-panel p {
  max-width: 40rem;
  margin-bottom: 18px;
}

.estimate-panel .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
}

.contact-grid {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(29, 35, 41, 0.08);
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
}

.form-shell {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(29, 35, 41, 0.08);
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(29, 35, 41, 0.12);
  border-radius: 16px;
  background: var(--white);
  color: var(--charcoal);
}

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

.field.span-2 {
  grid-column: span 2;
}

.scheduler {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(29, 35, 41, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(247, 240, 232, 0.92));
}

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

.time-slot {
  min-height: 46px;
  border: 1px solid rgba(29, 35, 41, 0.1);
  border-radius: 14px;
  background: var(--white);
  font-weight: 800;
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}

.time-slot:hover,
.time-slot:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(242, 107, 29, 0.28);
}

.time-slot.is-selected {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}

.selected-appointment,
.form-status {
  padding: 14px 16px;
  border: 1px solid rgba(29, 35, 41, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--slate);
  line-height: 1.65;
}

.form-status.error {
  border-color: rgba(163, 60, 44, 0.2);
  background: rgba(190, 78, 58, 0.08);
  color: #892f1d;
}

.form-status.success {
  border-color: rgba(59, 125, 83, 0.18);
  background: rgba(59, 125, 83, 0.08);
  color: #1f5a33;
}

.service-hero {
  padding: 22px 0 8px;
}

.service-frame {
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: 40px 28px 32px;
  border-radius: 34px;
  border: 1px solid rgba(29, 35, 41, 0.08);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.97), rgba(255, 252, 248, 0.7) 44%, rgba(255, 252, 248, 0.22) 75%),
    var(--hero-image) center/cover;
  box-shadow: var(--shadow);
}

.service-frame h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  max-width: 11ch;
}

.service-frame p {
  max-width: 42rem;
  margin-top: 16px;
  color: var(--slate);
  line-height: 1.72;
}

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

.service-summary {
  display: grid;
  gap: 14px;
}

.service-summary strong {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--orange-deep);
  text-transform: uppercase;
}

.related-grid a {
  display: block;
}

.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-strip a {
  padding: 10px 14px;
  border: 1px solid rgba(29, 35, 41, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #243446;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.service-strip a:hover,
.service-strip a:focus-visible,
.service-strip a.is-current {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-color: transparent;
}

.site-footer {
  padding: 12px 0 48px;
  background: #090d12;
  color: rgba(255, 255, 255, 0.82);
}

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

.footer-panel strong {
  display: block;
  margin-bottom: 10px;
  color: #17212c;
}

.footer-panel p,
.footer-panel a {
  color: #41546a;
}

.footer-panel .service-strip a {
  color: #243446;
}

.footer-links,
.utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a,
.utility-links a {
  color: #5a6b7e;
}

.utility-links a:hover,
.utility-links a:focus-visible,
.footer-panel p a:hover,
.footer-panel p a:focus-visible {
  color: var(--orange-deep);
}

.footer-bottom {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.92rem;
}

.advantage-band {
  padding: 30px 0;
  background:
    linear-gradient(180deg, #090d12, #0f141b);
}

.advantage-grid {
  display: grid;
  gap: 16px;
}

.advantage-card {
  padding: 20px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.advantage-card p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes review-slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes review-slide-right {
  from {
    transform: translateX(calc(-50% - 7px));
  }
  to {
    transform: translateX(0);
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(242, 107, 29, 0.35);
  outline-offset: 3px;
}

@media (max-width: 839px) {
  .header-row {
    grid-template-columns: auto 1fr auto auto;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-h) 14px auto;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(8, 12, 16, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition);
  }

  body.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-phone {
    display: none;
  }

  .hero-grid,
  .service-frame {
    min-height: auto;
  }

  .header-row > .btn {
    display: none;
  }

  .booking-panel {
    margin-left: 0;
    max-width: none;
  }
}

@media (max-width: 639px) {
  .section {
    padding: 66px 0;
  }

  .services-intro-card {
    padding: 22px 18px;
  }

  .services-quick-nav {
    justify-content: flex-start;
  }

  .services-quick-nav a {
    min-height: 42px;
    padding: 0 15px;
    font-size: 0.88rem;
  }

  .hero-grid,
  .service-frame {
    padding: 28px 18px 22px;
  }

  .hero-copy h1,
  .service-frame h1 {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .btn-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .btn-inline {
    width: 100%;
  }

  .brand-logo {
    width: 102px;
    max-width: 28vw;
  }

  .brand-lockup {
    display: none;
  }

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

  .time-slots {
    grid-template-columns: 1fr;
  }

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

  .field.span-2 {
    grid-column: auto;
  }
}

@media (min-width: 740px) {
  .grid-3,
  .gallery-grid,
  .contact-grid,
  .detail-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proofs,
  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.16fr 0.84fr;
  }

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

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

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

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

  .split {
    grid-template-columns: 1.02fr 0.98fr;
    align-items: stretch;
  }

  .split-home {
    grid-template-columns: 0.82fr 0.78fr 1fr;
  }

  .detail-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

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

  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

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

  .advantage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
