:root {
  --bg: #f4efe9;
  --bg-secondary: #e8ddd2;
  --text: #1e1e1e;
  --accent: #2c2c2c;
  --accent-hover: #141414;
  --white: #ffffff;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --container: 1200px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

.container {
  width: min(var(--container), 100% - 3rem);
  margin: 0 auto;
}

.section {
  padding: 7.5rem 0;
}

#services,
#quote-section {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

#process {
  scroll-margin-top: 120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgb(244 239 233 / 90%);
  border-bottom: 1px solid rgb(30 30 30 / 8%);
  backdrop-filter: blur(10px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-break-tablet {
  display: none;
}

.brand-space-default {
  display: inline;
}

.brand-line-tablet {
  letter-spacing: inherit;
}

.service-badge-separator {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 22px;
  color: rgb(0 0 0 / 45%);
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 0.68;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-book {
  padding: 0.65rem 1.25rem;
  background: var(--accent);
  color: var(--white);
}

.btn-book:hover,
.btn-book:focus-visible {
  background: var(--accent-hover);
}

.hero {
  padding: 5rem 0 7rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1.15rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-size: clamp(44px, 6vw, 96px);
  font-weight: 700;
  line-height: 0.95;
}

.hero-title .t1 {
  display: block;
  letter-spacing: 0.02em;
}

.hero-title .t2 {
  display: inline-block;
  letter-spacing: 0.25em;
  transform: translateX(3px);
}

.service-badge {
  margin: 3.25rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  width: min(100%, 34rem);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-pill);
  background: var(--bg-secondary);
  font-size: 0.96rem;
  font-weight: 500;
}

.service-badge-item {
  display: inline-flex;
  align-items: center;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.8rem;
  width: min(100%, 34rem);
  max-width: min(100%, 34rem);
}

.hero-actions .btn {
  flex: 1 1 0;
  min-width: 0;
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary,
.btn-secondary {
  padding: 0.85rem 1.5rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-hover);
}

.btn-secondary {
  border: 1px solid rgb(30 30 30 / 18%);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgb(232 221 210 / 55%);
}

.service-area {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  opacity: 0.82;
}

.hero-media {
  min-height: 560px;
  border-radius: var(--radius-lg);
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 20%;
}

.services-section {
  --svc-top: #fbf7f0;
  --svc-mid: #f3ede4;
  --svc-bot: #ede4d9;
  --svc-light: rgb(255 255 255 / 70%);
  --svc-floor: rgb(0 0 0 / 6%);
  padding-top: 6rem;
  border-top: 1px solid rgb(30 30 30 / 8%);
}

.services-heading {
  margin-bottom: 2.4rem;
}

.services-heading h2 {
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  letter-spacing: 0.12em;
}

.services-heading p {
  margin: 0.8rem 0 0;
  max-width: 42rem;
  color: rgb(30 30 30 / 78%);
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.services-grid .service-card:nth-child(1) {
  --reveal-delay: 0ms;
}

.services-grid .service-card:nth-child(2) {
  --reveal-delay: 80ms;
}

.services-grid .service-card:nth-child(3) {
  --reveal-delay: 160ms;
}

.services-grid .service-card:nth-child(4) {
  --reveal-delay: 240ms;
}

.service-card {
  --card-border: rgb(76 68 62 / 14%);
  min-height: 292px;
  border-radius: 22px;
  border: 1px solid var(--card-border);
  background-image:
    radial-gradient(circle at 55% 8%, var(--svc-light) 0%, rgb(255 255 255 / 0%) 55%),
    radial-gradient(ellipse at 55% 78%, var(--svc-floor) 0%, rgb(0 0 0 / 0%) 62%),
    linear-gradient(180deg, var(--svc-top) 0%, var(--svc-mid) 55%, var(--svc-bot) 100%);
  box-shadow: 0 12px 28px rgb(30 30 30 / 6%);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-media {
  position: absolute;
  right: -12px;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  z-index: 1;
}

.service-media img {
  height: 88%;
  width: auto;
  object-fit: contain;
  display: block;
}

.service-card h3,
.service-card .service-price,
.service-card .service-note,
.service-card .btn-quote {
  position: relative;
  z-index: 2;
}

.service-card h3,
.service-card .service-price,
.service-card .service-note {
  padding-right: clamp(320px, 42%, 520px);
}

.service-card h3 {
  margin: 0.12rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-stretch: normal;
  font-variation-settings: normal;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  transform: none;
}

.service-price {
  margin: 0.1rem 0 0;
  font-weight: 600;
  font-size: 1.05rem;
}

.service-note {
  margin: 0;
  font-size: 0.84rem;
  color: rgb(30 30 30 / 66%);
}

.btn-quote {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.62rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgb(30 30 30 / 16%);
  background: rgb(232 221 210 / 52%);
  color: var(--text);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.section-placeholder {
  min-height: 42vh;
  padding-top: 5rem;
  border-top: 1px solid rgb(30 30 30 / 8%);
}

h2 {
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  letter-spacing: 0.06em;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .service-card:focus-within {
    transform: translateY(-4px);
    border-color: rgb(30 30 30 / 22%);
    box-shadow: 0 16px 32px rgb(30 30 30 / 10%);
  }

  .service-card:hover .btn-quote,
  .service-card:focus-within .btn-quote {
    background: rgb(232 221 210 / 78%);
  }
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .hero-content {
    align-self: center;
  }

  .hero-media {
    height: clamp(420px, 55vh, 620px);
    min-height: 0;
    width: 100%;
    justify-self: end;
  }
}

@media (min-width: 1024px) {
  .hero-headline-wrap {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
  }

  .hero-headline-wrap .hero-title {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-left: -4px;
  }

  .hero-headline-wrap .service-badge,
  .hero-headline-wrap .hero-actions {
    width: 98%;
    max-width: none;
  }

  .hero-headline-wrap .service-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.46rem;
    padding-inline: 1rem;
    font-size: 1rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .hero-headline-wrap .service-badge-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  .hero-headline-wrap .hero-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.8rem;
  }

  .hero-headline-wrap .hero-actions .btn {
    flex: 1 1 0;
    min-height: 48px;
    white-space: nowrap;
  }

  .service-area {
    transform: translateX(1px);
  }
}

@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 959px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    width: 100%;
    max-width: min(94vw, 560px);
    margin-left: auto;
    margin-right: auto;
    transform: translateX(-3px);
    font-size: clamp(44px, 12.4vw, 58px);
    line-height: 0.95;
    text-align: left;
  }

  .hero-title .t1 {
    letter-spacing: 1.4px;
  }

  .hero-title .t2 {
    display: inline-block;
    transform: translateX(0);
    letter-spacing: calc(0.26em + 0.4px);
  }

  .hero-media {
    min-height: 360px;
    order: -1;
  }
}

@media (max-width: 900px) {
  .site-nav,
  .nav-links {
    gap: 18px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .hero-media,
  .hero-copy,
  .hero-content {
    max-width: min(94vw, 560px);
    margin-inline: auto;
  }

  .hero-title {
    font-size: clamp(44px, 12.4vw, 58px);
    line-height: 0.95;
  }

  .hero-title .t2 {
    display: inline-block;
    transform: translateX(0);
    letter-spacing: calc(0.26em + 0.4px);
  }
}

@media (max-width: 768px) {
  .hero .hero-content .hero-title .hero-title__line--1 {
    letter-spacing: 1.5px;
  }

  .hero-title .t2 {
    letter-spacing: calc(0.287em + 0.4px);
  }

  .service-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0.88rem;
  }

  .service-badge-item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    white-space: nowrap;
  }

  .service-badge-separator {
    width: 16px;
    color: rgb(30 30 30 / 65%);
  }
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    padding: 0.85rem 0;
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    row-gap: 0.85rem;
  }

  .brand {
    display: block;
    letter-spacing: 0.16em;
    order: 1;
    width: 100%;
  }

  .site-nav {
    order: 2;
    width: 100%;
    margin-top: 0;
    gap: 18px;
  }

  .btn-book {
    order: 3;
    width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .section {
    padding: 5.5rem 0;
  }

  .container {
    width: min(var(--container), 100% - 2rem);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-heading {
    margin-bottom: 1.6rem;
  }

  .service-card {
    min-height: auto;
    padding: 1.2rem;
    gap: 0.35rem;
  }

  .service-card h3 {
    order: 1;
    margin: 0;
  }

  .service-card .service-price {
    order: 2;
    margin: 0;
  }

  .service-card .service-note {
    order: 3;
    margin: 0;
    line-height: 1.35;
  }

  .service-media {
    order: 4;
    position: static;
    right: auto;
    bottom: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    transform: scale(1.15) translateX(-16%);
    transform-origin: center;
  }

  .service-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .service-card h3,
  .service-card .service-price,
  .service-card .service-note {
    padding-right: 0;
  }

  .service-card .btn-quote {
    order: 5;
    margin-top: 0.2rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-title .hero-title__line--1 {
    letter-spacing: 3px !important;
  }
}

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

  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn,
  .service-card {
    transition: none !important;
  }
}

.before-after-section {
  padding-top: 6rem;
  border-top: 1px solid rgb(30 30 30 / 8%);
}

.before-after-heading {
  margin-bottom: 2rem;
}

.before-after-heading h2 {
  letter-spacing: 0.12em;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.before-after-grid .comparison-card:nth-child(1) {
  --reveal-delay: 0ms;
}

.before-after-grid .comparison-card:nth-child(2) {
  --reveal-delay: 100ms;
}

.comparison-card {
  border-radius: 22px;
  border: 1px solid rgb(30 30 30 / 12%);
  background: #f8f3ec;
  box-shadow: 0 10px 24px rgb(30 30 30 / 7%);
  padding: 1.2rem;
}

.comparison-media {
  position: relative;
  display: flex;
  aspect-ratio: 460 / 300;
  border-radius: 16px;
  overflow: hidden;
  background: #eee4d8;
}

.comparison-half {
  width: 50%;
  height: 100%;
}

.comparison-half img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.comparison-label {
  position: absolute;
  top: 0.7rem;
  z-index: 2;
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
  background: rgb(248 243 236 / 88%);
  border: 1px solid rgb(30 30 30 / 10%);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.comparison-label--before {
  left: 0.7rem;
}

.comparison-label--after {
  right: 0.7rem;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-0.5px);
  background: rgb(30 30 30 / 20%);
  z-index: 2;
}

.comparison-card h3 {
  margin: 0.95rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-showcase-section {
  margin-top: -4.5rem;
  padding: 0 0 0;
}

.video-showcase-frame {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  line-height: 0;
  background: transparent;
  box-shadow: 0 14px 32px rgb(30 30 30 / 9%);
}

.video-showcase-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  margin: 0;
  padding: 0;
  vertical-align: top;
  background: transparent;
}

.quote-section {
  padding-top: 5.5rem;
}

.quote-shell {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: 22px;
  border: 1px solid rgb(76 68 62 / 14%);
  background-image: linear-gradient(180deg, #fbf7f0 0%, #f3ede4 100%);
  box-shadow: 0 12px 28px rgb(30 30 30 / 6%);
}

.quote-heading {
  margin-bottom: 1.6rem;
}

.quote-heading h2 {
  letter-spacing: 0.12em;
}

.quote-heading p {
  margin: 0.8rem 0 0;
  color: rgb(30 30 30 / 74%);
  font-size: clamp(0.98rem, 1.2vw, 1.05rem);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quote-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.quote-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.quote-field--full {
  grid-column: 1 / -1;
}

.quote-field label {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  border: 1px solid rgb(76 68 62 / 16%);
  border-radius: 16px;
  background: rgb(255 252 247 / 78%);
  color: var(--text);
  padding: 0.9rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

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

.quote-upload {
  border: 1px dashed rgb(76 68 62 / 18%);
  border-radius: 16px;
  background: rgb(255 252 247 / 48%);
  padding: 1rem;
}

.quote-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.quote-upload__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgb(76 68 62 / 16%);
  background: rgb(232 221 210 / 52%);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.quote-upload__button:hover,
.quote-upload__button:focus-visible {
  background: rgb(232 221 210 / 78%);
  border-color: rgb(30 30 30 / 22%);
  transform: translateY(-1px);
}

.quote-upload__input:focus-visible + .quote-upload__button {
  box-shadow: 0 0 0 4px rgb(232 221 210 / 55%);
}

.quote-upload__status {
  margin: 0.75rem 0 0;
  color: rgb(30 30 30 / 68%);
  font-size: 0.9rem;
}

.quote-upload__help {
  margin: 0.55rem 0 0;
  color: rgb(30 30 30 / 62%);
  font-size: 0.88rem;
}

.quote-upload__list {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quote-upload__item {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgb(232 221 210 / 62%);
  border: 1px solid rgb(76 68 62 / 12%);
  font-size: 0.84rem;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
  color: rgb(30 30 30 / 42%);
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  border-color: rgb(76 68 62 / 28%);
  background: #fffdf9;
  box-shadow: 0 0 0 4px rgb(232 221 210 / 55%);
}

.quote-submit {
  align-self: flex-start;
  min-width: 220px;
}

.sms-link {
  color: #1a73e8 !important;
  text-decoration: none !important;
  font-weight: 600;
  cursor: pointer;
}

.sms-link:hover {
  color: #0b57d0 !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .brand-break-tablet {
    display: inline;
  }

  .brand-space-default {
    display: none;
  }

  .brand-line-tablet {
    letter-spacing: calc(0.18em + 0.18px);
  }

  .header-inner {
    gap: 1rem;
    flex-wrap: nowrap;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
    font-size: 1rem;
    letter-spacing: 0.06em;
  }

  .site-nav,
  .nav-links {
    flex: 1 1 auto;
    justify-content: center;
    gap: 1rem;
    min-width: 0;
    overflow: visible;
  }

  .site-nav a {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .btn-book {
    flex: 0 0 auto;
    padding: 0.6rem 1rem;
    white-space: nowrap;
  }

  .hero {
    padding: 4.5rem 0 6.25rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(1.75rem, 3vw, 2.75rem);
    align-items: center;
  }

  .hero-content,
  .hero-media,
  .hero-copy {
    max-width: none;
    margin-inline: 0;
  }

  .hero-media {
    order: 0;
    min-height: 0;
    height: clamp(400px, 48vw, 540px);
  }

  .hero-title {
    max-width: none;
    margin-inline: 0;
    transform: none;
    font-size: clamp(3rem, 5.7vw, 4.6rem);
  }

  .service-badge,
  .hero-actions {
    width: min(100%, 35rem);
    max-width: 100%;
  }

  .service-badge {
    margin-top: 2.4rem;
    padding: 0.8rem 1rem;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-size: 0.84rem;
  }

  .service-badge-item {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .service-badge-separator {
    width: 14px;
  }

  .hero-actions {
    margin-top: 1.6rem;
    gap: 0.7rem;
  }

  .hero-actions .btn {
    min-height: 46px;
  }

  .services-section {
    padding-top: 5.5rem;
  }

  .services-grid {
    gap: 1.1rem;
  }

  .service-card {
    min-height: 272px;
    padding: 1.25rem;
  }

  .service-media {
    right: -28px;
  }

  .service-media img {
    height: 78%;
  }

  .service-card h3,
  .service-card .service-price,
  .service-card .service-note {
    padding-right: clamp(180px, 32%, 240px);
  }

  .service-card h3 {
    font-size: clamp(0.86rem, 1.05vw, 0.95rem);
    line-height: 1.2;
    white-space: nowrap;
  }

  .service-price {
    font-size: 1rem;
  }

  .service-note {
    line-height: 1.4;
  }

  .before-after-section {
    padding-top: 5.5rem;
  }

  .before-after-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.2rem;
  }

  .comparison-card {
    padding: 1.1rem;
  }

  .comparison-card h3 {
    margin-top: 0.85rem;
  }

  .video-showcase-section {
    margin-top: -2.5rem;
    padding-bottom: 0.5rem;
  }

  .video-showcase-frame {
    max-width: 860px;
  }

  .quote-section {
    padding-top: 5rem;
  }

  .quote-shell {
    width: min(100%, 760px);
    padding: 1.75rem;
  }

  .quote-heading {
    margin-bottom: 1.35rem;
  }

  .quote-form__grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .quote-submit {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quote-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  .service-card h3 {
    font-size: 0.92rem;
    letter-spacing: 0.075em;
    white-space: nowrap;
  }
}
