:root {
  --content: 1180px;
  --ink: #201916;
  --muted: #746862;
  --paper: #fffaf6;
  --soft: #f3e8df;
  --glass: rgba(255, 250, 246, 0.7);
  --rose: #b85d72;
  --berry: #783947;
  --sage: #77866c;
  --line: rgba(32, 25, 22, 0.14);
  --shadow: 0 22px 70px rgba(68, 38, 32, 0.16);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 54px);
  background: var(--glass);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 0 0 rgba(32, 25, 22, 0);
  backdrop-filter: blur(18px) saturate(1.2);
  animation: headerDrop 900ms var(--ease-out) both;
  transition:
    padding 450ms var(--ease-out),
    background-color 450ms var(--ease-out),
    box-shadow 450ms var(--ease-out);
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(255, 250, 246, 0.78);
  box-shadow: 0 18px 45px rgba(68, 38, 32, 0.1);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  transition: transform 450ms var(--ease-out);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: var(--berry);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 22px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 420ms var(--ease-out);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 0 0 rgba(32, 25, 22, 0);
  transition:
    transform 420ms var(--ease-out),
    box-shadow 420ms var(--ease-out),
    filter 420ms var(--ease-out),
    background-color 420ms var(--ease-out);
  will-change: transform;
}

.header-action:hover,
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(32, 25, 22, 0.18);
}

.header-action:active,
.button:active {
  transform: translateY(-1px) scale(0.98);
}

.header-action {
  color: white;
  background: var(--ink);
  font-size: 14px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 62vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px) clamp(20px, 5vw, 70px) clamp(46px, 7vw, 76px);
  color: white;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 18, 16, 0.78), rgba(30, 18, 16, 0.24)),
    url("https://images.unsplash.com/photo-1607008829749-c0f284a4986c?auto=format&fit=crop&w=1800&q=82")
      center / cover;
  transform: scale(1.04);
  animation: heroImage 1500ms var(--ease-out) both;
}

.hero-content {
  position: relative;
  width: min(790px, 100%);
  margin-inline: auto;
  transform: translateX(-18%);
}

.hero-content::before {
  position: absolute;
  inset: -34px;
  z-index: -1;
  background: rgba(32, 25, 22, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  content: "";
  backdrop-filter: blur(16px);
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions {
  animation: heroReveal 1000ms var(--ease-out) both;
}

.hero h1 {
  animation-delay: 110ms;
}

.hero-copy {
  animation-delay: 220ms;
}

.hero-actions {
  animation-delay: 330ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd6de;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 98px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 58px);
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.primary {
  color: white;
  background: var(--berry);
  border-color: var(--berry);
}

.button.whatsapp {
  color: white;
  background: #1f8f5f;
  border-color: #1f8f5f;
}

.button.instagram {
  color: white;
  background: #c14667;
  border-color: #c14667;
}

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

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: white;
  isolation: isolate;
}

.intro-strip div {
  padding: 30px clamp(20px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

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

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip span {
  margin-top: 5px;
  color: var(--muted);
}

.section {
  padding: clamp(76px, 10vw, 124px) clamp(20px, 5vw, 70px);
}

.two-column,
.booking-section,
.contact-grid,
.location-section {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 500px)
    minmax(280px, 620px)
    minmax(0, 1fr);
  column-gap: clamp(34px, 6vw, 80px);
  row-gap: 34px;
}

.two-column > :first-child,
.booking-section > :first-child,
.contact-grid > :first-child,
.location-section > :first-child {
  grid-column: 2;
}

.two-column > :last-child,
.booking-section > :last-child,
.contact-grid > :last-child,
.location-section > :last-child {
  grid-column: 3;
}

.section-copy {
  color: var(--muted);
  font-size: 18px;
}

.visual-band {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 0;
  min-height: 320px;
  border-block: 1px solid var(--line);
}

.visual-band img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.results-section {
  background: #fffdfb;
}

.section-heading {
  width: min(var(--content), 100%);
  max-width: 850px;
  margin-bottom: 38px;
  margin-inline: auto;
}

.trust-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.94), rgba(243, 232, 223, 0.58));
}

.services-grid {
  width: min(var(--content), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trust-grid,
.before-after-grid,
.testimonials-grid {
  width: min(var(--content), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.trust-card,
.result-card,
.testimonial-card,
.policy-card,
.faq-list details {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(32, 25, 22, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(68, 38, 32, 0.09);
  backdrop-filter: blur(18px) saturate(1.08);
}

.trust-card {
  min-height: 230px;
  padding: 30px;
  transition:
    transform 520ms var(--ease-out),
    border-color 520ms var(--ease-out),
    box-shadow 520ms var(--ease-out);
}

.trust-card:hover {
  transform: translateY(-7px);
  border-color: rgba(119, 134, 108, 0.36);
  box-shadow: 0 26px 68px rgba(68, 38, 32, 0.14);
}

.trust-card span {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 7px 11px;
  color: var(--sage);
  background: rgba(119, 134, 108, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-card p {
  color: var(--muted);
}

.result-card {
  overflow: hidden;
}

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

.comparison figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.comparison figure:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}

.comparison img {
  width: 100%;
  height: clamp(230px, 28vw, 360px);
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}

.result-card:hover img {
  transform: scale(1.045);
}

.comparison figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 11px;
  color: white;
  background: rgba(32, 25, 22, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 800;
}

.result-card h3,
.result-card p {
  padding-inline: 22px;
}

.result-card h3 {
  margin-top: 22px;
}

.result-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.testimonials-section {
  background:
    linear-gradient(180deg, rgba(243, 232, 223, 0.88), rgba(255, 250, 246, 0.9));
}

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

.testimonial-card {
  min-height: 260px;
  padding: 30px;
  transition:
    transform 520ms var(--ease-out),
    box-shadow 520ms var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 68px rgba(68, 38, 32, 0.14);
}

.testimonial-card p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.26;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-top: 24px;
}

.testimonial-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.policy-section {
  background: #fffaf6;
}

.policy-layout {
  width: min(var(--content), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 20px;
}

.policy-card {
  padding: 32px;
}

.policy-card ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

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

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

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 900;
}

.faq-list summary::after {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--berry);
  border-radius: 50%;
  content: "+";
  transition: transform 300ms var(--ease-out);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.service-card {
  min-height: 255px;
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 45px rgba(68, 38, 32, 0.08);
  transition:
    transform 520ms var(--ease-out),
    box-shadow 520ms var(--ease-out),
    border-color 520ms var(--ease-out);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 93, 114, 0.38);
  box-shadow: 0 24px 65px rgba(68, 38, 32, 0.15);
}

.service-card span {
  color: var(--sage);
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
}

.service-card strong {
  display: inline-block;
  margin-top: 12px;
  color: var(--berry);
}

.booking-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(184, 93, 114, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(243, 232, 223, 0.94), rgba(239, 231, 221, 0.78));
}

.booking-section h2,
.contact-grid h2,
.location-section h2 {
  max-width: 560px;
}

.booking-section > div p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(1.1);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fffdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  transition:
    border-color 300ms var(--ease-out),
    box-shadow 300ms var(--ease-out),
    background-color 300ms var(--ease-out);
}

input:focus,
select:focus {
  outline: none;
  background: white;
  border-color: rgba(120, 57, 71, 0.44);
  box-shadow: 0 0 0 4px rgba(184, 93, 114, 0.12);
}

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

.time-slots button {
  min-height: 44px;
  color: var(--ink);
  background: rgba(255, 253, 251, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition:
    transform 300ms var(--ease-out),
    background-color 300ms var(--ease-out),
    border-color 300ms var(--ease-out),
    color 300ms var(--ease-out),
    box-shadow 300ms var(--ease-out);
}

.time-slots button:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 57, 71, 0.34);
  box-shadow: 0 10px 25px rgba(68, 38, 32, 0.1);
}

.time-slots button.is-selected {
  color: white;
  background: var(--berry);
  border-color: var(--berry);
  box-shadow: 0 12px 30px rgba(120, 57, 71, 0.22);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--sage);
  font-weight: 700;
}

.contact-list a {
  padding: 15px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--berry);
  font-weight: 800;
}

.location-section {
  padding: clamp(64px, 10vw, 110px) clamp(20px, 5vw, 70px);
  background: #efe7dd;
  align-items: center;
}

.location-copy p {
  color: var(--muted);
  font-size: 18px;
}

.location-button {
  width: fit-content;
  margin-top: 8px;
  color: white;
  background: var(--ink);
}

.map-placeholder {
  display: grid;
  min-height: 340px;
  place-items: center;
  align-content: center;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(120, 57, 71, 0.82), rgba(119, 134, 108, 0.72)),
    url("https://images.unsplash.com/photo-1615874694520-474822394e73?auto=format&fit=crop&w=1200&q=80")
      center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: white;
  transition:
    transform 700ms var(--ease-out),
    box-shadow 700ms var(--ease-out);
}

.map-placeholder:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 28px 82px rgba(68, 38, 32, 0.22);
}

.map-placeholder span {
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
}

.map-placeholder small {
  margin-top: 10px;
  font-size: 15px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(135deg, rgba(32, 25, 22, 0.98), rgba(76, 43, 48, 0.96)),
    var(--ink);
}

.footer-main {
  width: min(var(--content), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(160px, 0.7fr));
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(54px, 8vw, 88px) clamp(20px, 5vw, 70px);
}

.footer-brand .brand {
  color: white;
}

.footer-brand .brand-mark {
  background: var(--rose);
}

.footer-brand .brand small,
.footer-brand p,
.footer-column a,
.footer-column p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand p {
  max-width: 390px;
  margin: 24px 0;
  font-size: 17px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: white;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 900;
  backdrop-filter: blur(14px);
  transition:
    transform 350ms var(--ease-out),
    background-color 350ms var(--ease-out);
}

.footer-actions a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 10px;
  color: white;
  font-size: 15px;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  font-weight: 800;
  transition:
    color 300ms var(--ease-out),
    transform 300ms var(--ease-out);
}

.footer-column a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-hours p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.footer-hours span {
  color: white;
  font-weight: 900;
}

.footer-bottom {
  width: min(var(--content), 100%);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(20px, 5vw, 70px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.footer-bottom a {
  color: white;
  font-weight: 900;
}

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

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 850ms var(--ease-out),
    transform 850ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

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

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImage {
  from {
    filter: saturate(0.85) brightness(0.78);
    transform: scale(1.09);
  }

  to {
    filter: saturate(1) brightness(1);
    transform: scale(1.04);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero-content {
    transform: none;
  }

  .header-action {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: 75px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: rgba(255, 250, 246, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .intro-strip,
  .two-column,
  .booking-section,
  .contact-grid,
  .location-section,
  .services-grid,
  .trust-grid,
  .before-after-grid,
  .testimonials-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .two-column > :first-child,
  .booking-section > :first-child,
  .contact-grid > :first-child,
  .location-section > :first-child,
  .two-column > :last-child,
  .booking-section > :last-child,
  .contact-grid > :last-child,
  .location-section > :last-child {
    grid-column: auto;
  }

  .intro-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .visual-band {
    grid-template-columns: 1fr;
  }

  .visual-band img {
    height: 280px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    padding-inline: 14px;
  }

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

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero {
    min-height: 66vh;
    padding: 42px 16px 30px;
    align-items: end;
  }

  .hero-content {
    transform: none;
  }

  .hero-content::before {
    inset: -18px -12px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  h2 {
    font-size: clamp(31px, 10vw, 44px);
  }

  .hero-copy,
  .section-copy,
  .booking-section > div p,
  .location-copy p {
    font-size: 16px;
  }

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

  .section {
    padding: 58px 16px;
  }

  .service-card,
  .trust-card,
  .testimonial-card,
  .policy-card {
    min-height: auto;
    padding: 22px;
  }

  .faq-list summary {
    padding: 17px 18px;
  }

  .faq-list p {
    padding-inline: 18px;
  }

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

  .comparison img {
    height: 230px;
  }

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

  .map-placeholder {
    min-height: 270px;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 46px 16px 30px;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 18px 16px 28px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    background: rgba(255, 250, 246, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    box-shadow: 0 18px 48px rgba(68, 38, 32, 0.2);
    backdrop-filter: blur(20px) saturate(1.2);
  }

  .mobile-action-bar a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--ink);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-action-bar a:nth-child(2) {
    background: #1f8f5f;
  }

  .mobile-action-bar a:nth-child(3) {
    background: var(--berry);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
