:root {
  --background: #f7f3ec;
  --cream: #f3eee7;
  --sand: #e1d8ca;
  --ink: #1e2a37;
  --ink-soft: rgb(30 42 55 / 75%);
  --navy: #172234;
  --burgundy: #8b2d2a;
  --white: #fffaf1;
  --sage: #9db4a0;
  --border: rgb(30 42 55 / 10%);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(100% - 80px, 1185px);
  margin: 0 auto;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: 80px;
  border-bottom: 1px solid rgb(255 250 241 / 4%);
  background: rgb(15 20 26 / 2%);
  color: rgb(255 250 241 / 88%);
  backdrop-filter: blur(6px);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.header.header-light {
  color: rgb(255 250 241 / 88%);
}

.header.header-scrolled {
  border-color: rgb(255 250 241 / 12%);
  background: rgb(15 20 26 / 74%);
  box-shadow: 0 18px 48px rgb(15 20 26 / 22%);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: grid;
  grid-template-columns: 40px auto;
  gap: 10px;
  align-items: center;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: var(--sage);
  color: var(--white);
}

.brand-mark svg {
  width: 21px;
  height: 21px;
}

.brand-name {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.brand-sub {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav a {
  color: rgb(255 250 241 / 78%);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: color 180ms ease;
}

.header-light .nav a {
  color: rgb(255 250 241 / 78%);
}

.nav a:hover,
.nav a.active {
  color: var(--burgundy);
}

.header-light .nav a:hover,
.header-light .nav a.active {
  color: var(--white);
}

#home,
#services,
#about,
#story,
#before-after,
#contact {
  scroll-margin-top: 96px;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-left: 32px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  box-shadow: 0 12px 28px rgb(23 34 52 / 18%);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgb(255 250 241 / 68%);
  color: currentColor;
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
}

.hero,
.image-hero {
  position: relative;
  min-height: 662px;
  color: var(--white);
}

.hero-img,
.image-hero img,
.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after,
.image-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(15 20 26 / 76%), rgb(15 20 26 / 18%) 66%),
    linear-gradient(180deg, rgb(15 20 26 / 22%), rgb(15 20 26 / 32%));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(672px, 100%);
  padding-top: 168px;
}

.eyebrow {
  display: inline-block;
  color: var(--burgundy);
  font-size: 12px;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.hero .eyebrow,
.image-hero .eyebrow {
  color: rgb(255 250 241 / 76%);
}

h1,
h2,
h3,
h4,
p,
blockquote {
  margin: 0;
}

.display,
h1,
h2,
h3,
.brand-name {
  font-family: "Playfair Display", Georgia, serif;
}

h1,
.display {
  font-size: clamp(48px, 5.7vw, 72px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 em,
h2 em {
  font-style: italic;
}

.hero p {
  width: min(576px, 100%);
  margin-top: 24px;
  color: rgb(255 250 241 / 85%);
  font-size: 20px;
  line-height: 1.625;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

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

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  border-color: rgb(255 250 241 / 28%);
  color: var(--white);
}

.arrow {
  margin-left: 9px;
}

.section {
  padding: 128px 0;
}

.section-muted {
  background: var(--sand);
}

.section-title {
  max-width: 672px;
}

.section-title.center {
  margin: 0 auto;
  text-align: center;
}

h2 {
  margin-top: 16px;
  color: var(--navy);
  font-size: clamp(38px, 4.2vw, 48px);
  font-weight: 500;
  line-height: 1.25;
}

.lead {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.625;
}

.promise-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.promise-copy p + p,
.story-copy p + p {
  margin-top: 20px;
}

.story-copy h2 {
  margin-bottom: 30px;
}

.story-socials {
  margin-top: 28px;
}

.story-socials a {
  width: 48px;
  height: 48px;
  border-color: rgb(30 42 55 / 12%);
  background: var(--white);
  color: var(--navy);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.story-socials a:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.story-socials svg {
  width: 22px;
  height: 22px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  box-shadow:
    0 2px 4px rgb(23 34 52 / 4%),
    0 14px 24px -18px rgb(23 34 52 / 32%);
  transition:
    box-shadow 280ms ease,
    transform 280ms ease,
    border-color 280ms ease;
}

.service-extra {
  animation: service-in 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--delay, 0ms);
}

.service-card:hover {
  border-color: rgb(30 42 55 / 16%);
  box-shadow:
    0 4px 8px rgb(23 34 52 / 5%),
    0 22px 34px -14px rgb(23 34 52 / 36%),
    0 44px 58px -36px rgb(23 34 52 / 28%);
  transform: translateY(-6px);
}

.service-media {
  display: block;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  background: var(--cream);
}

.service-modal-trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: inherit;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  transition: transform 520ms ease;
}

.service-card:hover img {
  transform: scale(1.07);
}

.service-body {
  padding: 34px 32px 32px;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
}

.service-body h3 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.service-body p {
  margin-top: 8px;
  color: rgb(30 42 55 / 70%);
  font-size: 14px;
  line-height: 1.625;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 48px;
  border: 0;
  background: transparent;
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 300;
}

.center-link {
  display: flex;
  justify-content: center;
}

.story-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.before-after-section {
  background: var(--background);
}

.before-after-title {
  max-width: 760px;
}

.before-after-title p {
  width: min(720px, 100%);
  margin-top: 24px;
  color: rgb(30 42 55 / 62%);
  font-size: 16px;
  line-height: 1.65;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 24px;
  margin-top: 64px;
}

.before-after-item {
  margin: 0;
  animation: before-after-in 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--delay, 0ms);
}

.comparison-slider {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: var(--sand);
  box-shadow: 0 12px 26px -20px rgb(23 34 52 / 45%);
  cursor: pointer;
  isolation: isolate;
  touch-action: none;
}

.comparison-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.comparison-before {
  filter: saturate(0.92);
}

.comparison-before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--position, 50%)) 0 0);
}

.comparison-before {
  width: 100%;
  height: 100%;
  max-width: none;
}

.comparison-after {
  width: 100%;
}

.comparison-label {
  position: absolute;
  z-index: 1;
  top: 10px;
  padding: 5px 9px;
  border-radius: 3px;
  background: rgb(255 250 241 / 92%);
  color: var(--burgundy);
  font-size: 9px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.comparison-label-before {
  left: 10px;
  z-index: 3;
}

.comparison-label-after {
  right: 10px;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position, 50%);
  z-index: 4;
  width: 2px;
  background: rgb(255 250 241 / 92%);
  box-shadow: 0 0 16px rgb(23 34 52 / 34%);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 38px;
  height: 38px;
  border: 1px solid rgb(30 42 55 / 12%);
  border-radius: 999px;
  background: rgb(255 250 241 / 94%);
  box-shadow: 0 10px 24px rgb(23 34 52 / 24%);
  color: var(--burgundy);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.comparison-divider span::before,
.comparison-divider span::after {
  display: block;
}

.comparison-divider span::before {
  content: "<";
}

.comparison-divider span::after {
  content: ">";
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}

.comparison-slider:has(.comparison-range:focus-visible) {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}

.before-after-item figcaption {
  margin-top: 14px;
  color: rgb(30 42 55 / 46%);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.quote {
  min-height: 252px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
}

.quote blockquote {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.45;
}

.quote figcaption {
  margin-top: 28px;
  color: rgb(30 42 55 / 65%);
  font-size: 14px;
}

.cta-band {
  position: relative;
  min-height: 526px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.cta-band::after {
  position: absolute;
  inset: 0;
  background: rgb(247 243 236 / 88%);
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  width: min(688px, calc(100% - 40px));
}

.cta-inner p {
  margin-top: 24px;
}

.cta-inner .btn {
  margin-top: 40px;
  padding: 0 32px;
}

.page-hero {
  padding: 192px 0 112px;
  background: var(--sand);
}

.page-hero .container {
  max-width: 775px;
}

.page-hero p {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.625;
}

.image-hero {
  min-height: 437px;
}

.image-hero .hero-content {
  padding-top: 154px;
}

.service-list {
  display: grid;
  gap: 64px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-row:nth-child(even) .service-row-media {
  order: 2;
}

.service-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.service-row h2 {
  margin: 0;
}

.service-row p {
  margin-top: 20px;
}

.rates {
  margin-top: 96px;
  padding: 56px;
  border-radius: 6px;
  background: var(--sand);
  text-align: center;
}

.rates p {
  width: min(620px, 100%);
  margin: 20px auto 0;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
}

.value-card h3 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 500;
}

.value-card p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.esther-note {
  margin-top: 64px;
  padding: 48px;
  border-left: 1px solid var(--burgundy);
  background: var(--sand);
}

.esther-note p:first-child {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.35;
}

.esther-note p:last-child {
  margin-top: 16px;
  color: rgb(30 42 55 / 65%);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--cream);
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 21px 24px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

.faq-question span {
  margin-left: 16px;
  transition: transform 180ms ease;
}

.faq-item.open .faq-question span {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  color: var(--ink-soft);
  line-height: 1.625;
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-card {
  align-self: start;
}

.contact-section {
  background: var(--background);
}

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

.contact-list li {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.contact-list p:first-child {
  color: rgb(30 42 55 / 55%);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-list p:last-child {
  margin-top: 6px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.soft-quote {
  margin-top: 40px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1.35;
}

.form-card {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--cream);
}

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

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: rgb(30 42 55 / 65%);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.field input {
  height: 48px;
  padding: 0 14px;
}

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

.form-card .btn {
  width: 100%;
  margin-top: 24px;
}

.form-card .btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.privacy-note {
  margin-top: 16px;
  color: rgb(30 42 55 / 55%);
  font-size: 12px;
  text-align: center;
}

.footer {
  margin-top: 96px;
  padding: 64px 0 32px;
  background: var(--navy);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.35fr;
  gap: 80px;
}

.footer-slim {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
}

.footer-logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
}

.footer p {
  color: rgb(255 250 241 / 72%);
}

.footer-intro {
  width: min(384px, 100%);
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.625;
}

.footer h4 {
  margin-bottom: 18px;
  color: rgb(255 250 241 / 88%);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.footer a {
  color: rgb(255 250 241 / 80%);
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgb(255 250 241 / 14%);
  border-radius: 999px;
}

.socials svg {
  width: 18px;
  height: 18px;
}

.handle {
  margin-top: 16px;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgb(255 250 241 / 12%);
  font-size: 12px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgb(23 34 52 / 54%);
  backdrop-filter: blur(8px);
}

.service-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  width: min(940px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow:
    0 22px 34px -14px rgb(23 34 52 / 36%),
    0 44px 58px -36px rgb(23 34 52 / 28%);
}

.service-modal img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: var(--cream);
  object-fit: contain;
}

.comparison-modal {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 48px);
  padding: 56px;
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow:
    0 22px 34px -14px rgb(23 34 52 / 36%),
    0 44px 58px -36px rgb(23 34 52 / 28%);
}

.comparison-modal h2 {
  margin: 0 56px 28px 0;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 44px);
}

.comparison-slider-large {
  width: min(100%, 54vh, 585px);
  aspect-ratio: 3 / 4;
  margin: 0 auto;
}

.comparison-slider-large .comparison-img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

.modal-copy {
  padding: 48px;
}

.modal-copy h2 {
  margin-top: 0;
}

.modal-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.modal-copy .btn {
  margin-top: 32px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgb(255 250 241 / 90%);
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

@keyframes service-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes before-after-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-bottom .italic {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 40px, 1185px);
  }

  .mobile-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 80px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--cream);
    box-shadow: 0 20px 60px rgb(23 34 52 / 20%);
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 13px 14px;
    color: var(--ink) !important;
  }

  .nav .quote-btn {
    margin: 12px 0 0;
    color: var(--white) !important;
  }

  .hero,
  .image-hero {
    min-height: 640px;
  }

  .hero-content,
  .image-hero .hero-content {
    padding-top: 170px;
  }

  .promise-grid,
  .about-grid,
  .contact-grid,
  .service-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-row:nth-child(even) .service-row-media {
    order: 0;
  }

  .services-grid,
  .before-after-grid,
  .testimonials,
  .values,
  .footer-grid,
  .footer-slim {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-slim {
    gap: 40px;
  }

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

  .comparison-modal {
    padding: 40px 24px 28px;
  }

  .comparison-modal h2 {
    margin-right: 44px;
  }

  .service-modal img {
    min-height: 280px;
    max-height: 360px;
  }

  .before-after-grid {
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .brand-name {
    font-size: 17px;
  }

  .brand-sub {
    font-size: 8px;
  }

  .section,
  .page-hero {
    padding: 88px 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero p,
  .page-hero p {
    font-size: 18px;
  }

  .actions,
  .actions .btn,
  .cta-inner .btn {
    width: 100%;
  }

  .service-body {
    padding-top: 32px;
  }

  .rates,
  .form-card,
  .esther-note,
  .quote,
  .modal-copy {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
