:root {
  --ivory: #f6f0ef;
  --white: rgba(255, 255, 255, 0.72);
  --white-strong: rgba(255, 255, 255, 0.86);
  --rose: #a5655f;
  --rose-soft: #b78480;
  --text: #241614;
  --copy: #4d4d4d;
  --green: #315219;
  --header-green: #355e1d;
  --line: #dcc3c1;
  --mist-top: #f5efec;
  --mist-bottom: #efe1db;
  --section-canvas-top: #f6f0ed;
  --section-canvas-mid: #f3ebe6;
  --section-canvas-bottom: #f1e7e1;
  --panel-shadow: 0 22px 58px rgba(171, 129, 112, 0.13);
  --card-shadow: none;
}

html {
  min-height: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--ivory);
  color: var(--text);
  font-family: "Raleway", sans-serif;
}

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

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

button {
  font: inherit;
}

.page {
  flex: 1 0 auto;
  overflow-x: hidden;
  background:
    radial-gradient(circle at left top, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 26%),
    radial-gradient(circle at right 18%, rgba(255, 245, 238, 0.42), rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, var(--section-canvas-top) 0%, var(--section-canvas-mid) 56%, var(--section-canvas-bottom) 100%);
}

.hero {
  --hero-logo-offset: 4.75rem;
  --hero-rail-width: 31rem;
  position: relative;
  min-height: auto;
  padding: 11.2rem 4.75rem 4.2rem;
  background:
    linear-gradient(90deg, rgba(246, 240, 239, 0.82) 0%, rgba(246, 240, 239, 0.38) 44%, rgba(246, 240, 239, 0.05) 100%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0) 44%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
    url("./assets/images/hero-treatment.jpg") center top / cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

.hero__topbar,
.hero__content {
  position: relative;
  z-index: 1;
}

.hero__topbar {
  position: absolute;
  top: 1.2rem;
  left: var(--hero-logo-offset);
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.brand {
  display: flex;
  align-items: center;
}

.brand__logo {
  display: block;
  width: auto;
  height: 10.95rem;
  object-fit: contain;
  transform: translateY(-1.3rem);
}

.hero__content {
  display: flex;
  align-items: flex-start;
  min-height: 0;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: min(100%, var(--hero-rail-width));
  min-height: 0;
  padding-left: 1rem;
  gap: 4.1rem;
}

.hero__copy-group {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
  width: 100%;
}

.hero__cta-group {
  width: 100%;
  padding-top: 0;
}

.hero__copy h1,
.section-head h2,
.service-card h3,
.testimonial-card h3,
.contact__column h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--text);
}

.hero__copy h1 {
  width: 100%;
  font-size: 5.75rem;
  line-height: 0.92;
}

.hero__copy h1 span {
  display: block;
}

.hero__copy p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #5f5753;
  font-size: 1.05rem;
  line-height: 1.5;
}

.hero__slab,
.guidance__panel,
.contact__panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--white);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--panel-shadow);
}

.hero__slab {
  width: 100%;
  padding: 1.2rem 1.8rem 1.45rem;
  border-radius: 1.9rem;
}

.hero__slab p {
  max-width: none;
  margin: 0;
  font-size: 1rem;
  text-align: center;
  color: #5b534f;
}

.contact__cta-slab p {
  max-width: none;
  margin: 0;
  font-size: 1rem;
  text-align: center;
  color: #5b534f;
}

.hero__slab-actions,
.guidance__actions,
.contact__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.circle-action {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  padding: 0;
  outline: none;
  border-radius: 999px;
  border: 1px solid rgba(119, 106, 102, 0.32);
  background: rgba(255, 255, 255, 0.84);
  color: #7a6a66;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    border-color 140ms ease;
}

.circle-action:active {
  transform: translateY(1px) scale(0.975);
  background: rgba(245, 237, 233, 0.94);
  border-color: rgba(176, 145, 120, 0.55);
}

.circle-action svg,
.outline-pill svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__image-wrap {
  display: none;
}

.hero__image-wrap img {
  width: 100%;
  max-width: 22rem;
  opacity: 0.001;
}

.section-head {
  text-align: center;
}

.section-head h2 {
  font-size: 5rem;
  line-height: 0.98;
}

.section-head p {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: #5f5753;
  font-size: 1.05rem;
}

.services {
  padding: 5.5rem 2rem 5rem;
  background: transparent;
}

.services__tabs,
.contact__columns {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-shell {
  position: relative;
  max-width: 1320px;
  margin: 2rem auto 0;
  padding: 0 3.75rem;
}

.carousel-shell--testimonials {
  margin-top: 2.5rem;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(119, 106, 102, 0.18);
  background: rgba(255, 255, 255, 0.84);
  color: #7a6a66;
  box-shadow: 0 10px 24px rgba(125, 86, 79, 0.1);
  cursor: pointer;
}

.carousel-control span {
  display: block;
  transform: translateY(-0.08rem);
  font-size: 1.8rem;
  line-height: 1;
}

.carousel-control--prev {
  left: 0.5rem;
}

.carousel-control--next {
  right: 0.5rem;
}

.services__tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.pill,
.soft-pill,
.soft-location,
.outline-pill {
  border-radius: 999px;
}

.pill {
  min-width: 8.8rem;
  border: 1px solid #e6d6d3;
  background: rgba(255, 255, 255, 0.82);
  color: #5a5451;
  padding: 0.95rem 1.4rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.98rem;
}

.pill--active {
  background: rgba(234, 219, 214, 0.95);
}

.services-swiper,
.testimonials-swiper {
  scrollbar-width: none;
  padding: 0.35rem 0;
}

.services-swiper {
  overflow: hidden;
}

.testimonials-swiper {
  overflow: hidden;
}

.services-swiper::-webkit-scrollbar,
.testimonials-swiper::-webkit-scrollbar {
  display: none;
}

.services-swiper .swiper-wrapper {
  align-items: stretch;
  will-change: transform;
}

.services-swiper .swiper-slide,
.testimonials-swiper .swiper-slide {
  height: auto;
  user-select: none;
}

.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 36rem;
  border-radius: 1.9rem;
  background: #fffdfc;
  border: 1px solid #eee2df;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.service-card__tag {
  position: absolute;
  top: 1rem;
  left: 1.35rem;
  z-index: 2;
  display: inline-flex;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: rgba(234, 219, 214, 0.88);
  color: #6b5b58;
  font-family: "Raleway", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card__image img {
  width: 100%;
  aspect-ratio: 1.16 / 0.78;
  object-fit: cover;
}

.service-card__body {
  flex: 1;
  padding: 1.15rem 1.5rem 0;
}

.service-card h3 {
  font-size: 2.05rem;
  line-height: 1;
}

.service-card__meta {
  margin: 0.65rem 0 0.95rem;
  color: #5d5754;
  font-size: 1rem;
}

.service-card__copy {
  margin: 0;
  color: #6a6562;
  font-size: 0.98rem;
  line-height: 1.6;
}

.outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.2rem;
  margin: 1.5rem 1.5rem 1.65rem;
  border: 1px solid #e0cdc9;
  background: rgba(255, 255, 255, 0.94);
  color: #536846;
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
}

.mist-section {
  padding: 5.5rem 2rem;
  background: transparent;
}

.guidance__panel,
.contact__panel {
  max-width: 42rem;
  margin: 2.4rem auto 0;
  padding: 2rem 1.8rem 1.8rem;
  border-radius: 2rem;
}

.guidance__panel p {
  margin: 0 0 1.4rem;
  text-align: center;
  color: #5d5654;
  font-size: 1rem;
}

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

.soft-pill {
  min-height: 3.5rem;
  border: 1px solid #e6d6d3;
  background: rgba(255, 255, 255, 0.82);
  color: #5a5451;
  padding: 0.95rem 1.4rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  text-align: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.soft-pill--featured {
  background: rgba(255, 255, 255, 0.82);
  border-color: #e6d6d3;
  color: #5a5451;
}

.soft-pill.is-selected {
  background: rgba(234, 219, 214, 0.95);
  border-color: #e6d6d3;
  color: #5a5451;
  font-weight: 500;
  box-shadow: none;
}

.soft-pill.soft-pill--featured.is-selected {
  background: rgba(234, 219, 214, 0.95);
  border-color: #e6d6d3;
  color: #5a5451;
  font-weight: 500;
}

.testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #fffdfc;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--card-shadow);
  height: 100%;
  padding: 1.7rem 1.35rem 1.9rem;
  border-radius: 1.9rem;
  text-align: center;
}

.testimonial-card__stars {
  margin: 0 0 0.9rem;
  color: #c09e81;
  letter-spacing: 0.25em;
  font-size: 1rem;
}

.testimonial-card img {
  width: 6.25rem;
  height: 6.25rem;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.testimonial-card blockquote {
  min-height: 4.8rem;
  margin: 0;
  color: #625b59;
  font-size: 1rem;
  line-height: 1.45;
}

.testimonial-card h3 {
  margin-top: 1.15rem;
  font-size: 2rem;
}

.testimonial-card__label {
  margin: 0.35rem 0 0;
  color: #6e6562;
  font-size: 0.95rem;
}

.contact__actions {
  margin-top: 2rem;
}

.contact__panel {
  max-width: 70rem;
  padding: 2.2rem 2rem 1.9rem;
}

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

.contact__column {
  padding: 0 1rem;
  text-align: center;
}

.contact__column h3 {
  font-size: 2rem;
}

.contact__column p {
  margin: 0.4rem 0;
  color: #5f5957;
  font-size: 0.98rem;
}

.contact__links {
  display: grid;
  gap: 0.72rem;
  margin-top: 0.55rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 1.6rem;
  padding: 0.05rem 0;
  color: #5f5957;
  text-align: center;
  transition:
    color 140ms ease,
    transform 140ms ease;
}

.contact-link:active {
  transform: translateY(1px) scale(0.992);
}

.contact-link svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-link span {
  overflow-wrap: anywhere;
}

.contact-link:hover {
  color: #3f312e;
}

.soft-location {
  display: block;
  width: fit-content;
  min-width: 12rem;
  margin: 2rem auto 0;
  padding: 0.95rem 1.75rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #e7d7d4;
  color: #6a5d59;
  text-align: center;
}

.soft-location--inline {
  margin-top: 1.25rem;
}

.contact__cta-slab {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(224, 205, 201, 0.85);
}

.page-footer {
  flex-shrink: 0;
  padding: 1.1rem 1rem 1.6rem;
  text-align: center;
}

.page-footer__inner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.9rem;
}

.page-footer p {
  margin: 0;
  color: #7a6f6a;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.page-footer__cookies {
  border: 0;
  padding: 0;
  background: transparent;
  color: #6a5d59;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
  cursor: pointer;
}

.page-footer__cookies:hover {
  color: #3f312e;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: auto;
  width: min(100% - 2rem, 25rem);
  max-width: 25rem;
  z-index: 50;
  display: grid;
  gap: 1rem;
  padding: 1.15rem 1rem 1rem;
  border: 1px solid rgba(221, 198, 191, 0.95);
  border-radius: 1.7rem;
  background: rgba(255, 252, 250, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(114, 84, 75, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.1rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner__copy {
  max-width: none;
  padding-right: 0;
}

.cookie-banner__text {
  margin: 0;
}

.cookie-banner__text {
  color: #625b59;
  font-size: 0.92rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.cookie-banner__text--single {
  max-width: none;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-banner__button {
  min-height: 3rem;
  padding: 0.82rem 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}

.cookie-banner__button:active {
  transform: translateY(1px) scale(0.992);
}

.cookie-banner__button--ghost {
  border: 1px solid rgba(221, 198, 191, 0.95);
  background: rgba(255, 255, 255, 0.72);
  color: #655955;
}

.cookie-banner__button--solid {
  border: 1px solid transparent;
  background: rgba(226, 211, 205, 0.94);
  color: #4c3a36;
}

.cookie-banner__button--ghost:hover {
  border-color: rgba(205, 179, 171, 0.98);
  color: #3f312e;
}

.cookie-banner__button--solid:hover {
  background: rgba(214, 194, 188, 0.98);
}

@media (max-width: 1100px) {
  .hero {
    --hero-logo-offset: 2rem;
    --hero-rail-width: 31rem;
    padding-top: 6.4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero__topbar {
    top: var(--hero-logo-offset);
    left: var(--hero-logo-offset);
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__copy h1 {
    font-size: 4.9rem;
  }

  .services__grid,
  .testimonials__grid,
  .contact__columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    --hero-logo-offset: 1rem;
    --hero-rail-width: 18.6rem;
    min-height: auto;
    padding: 8.2rem 1rem 1.85rem;
    background:
      linear-gradient(180deg, rgba(246, 240, 239, 0.96) 0%, rgba(246, 240, 239, 0.9) 54%, rgba(246, 240, 239, 0.82) 100%),
      radial-gradient(circle at left top, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 52%);
  }

  .hero::before {
    opacity: 0.18;
    background:
      linear-gradient(to bottom, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
      url("./assets/images/hero-treatment.jpg") 58% center / cover no-repeat;
  }

  .hero__topbar {
    top: 0.5rem;
    left: var(--hero-logo-offset);
  }

  .brand__logo {
    height: 7.2rem;
    transform: translateY(-0.85rem);
  }

  .hero__content {
    min-height: 0;
  }

  .hero__copy {
    padding-left: 0;
    min-height: 0;
    justify-content: flex-start;
    gap: 3.15rem;
  }

  .hero__copy-group {
    gap: 1rem;
  }

  .hero__copy h1 {
    font-size: 3.95rem;
    line-height: 0.88;
  }

  .hero__copy p {
    line-height: 1.45;
  }

  .hero__copy p,
  .section-head p,
  .service-card__copy,
  .testimonial-card blockquote,
  .contact__column p {
    font-size: 0.95rem;
  }

  .hero__slab {
    max-width: none;
    padding: 0.95rem 0.9rem 1.05rem;
    border-radius: 1.45rem;
  }

  .hero__cta-group {
    padding-top: 0;
    padding-bottom: 0.55rem;
  }

  .hero__slab p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .hero__slab-actions,
  .guidance__actions,
  .contact__actions {
    gap: 0.75rem;
    margin-top: 0.85rem;
  }

  .circle-action {
    width: 3.25rem;
    height: 3.25rem;
  }

  .circle-action svg,
  .outline-pill svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .hero__image-wrap {
    display: none;
  }

  .hero__image-wrap img {
    opacity: 0.001;
  }

  .services,
  .mist-section {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 3.6rem;
    padding-bottom: 3.8rem;
  }

  .section-head h2 {
    font-size: 3.4rem;
    line-height: 0.96;
  }

  .section-head p {
    max-width: 16.5rem;
    margin-top: 0.7rem;
  }

  .services__tabs {
    gap: 0.55rem;
    margin-top: 1.35rem;
    margin-bottom: 1.4rem;
    overflow-x: visible;
    justify-content: center;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .services__tabs::-webkit-scrollbar {
    display: none;
  }

  .pill {
    min-width: auto;
    padding: 0.78rem 1.1rem;
    white-space: nowrap;
    font-size: 0.84rem;
  }

  .service-card {
    min-height: auto;
    border-radius: 1.55rem;
  }

  .service-card__tag {
    top: 0.95rem;
    left: 1rem;
  }

  .service-card__image img {
    aspect-ratio: 1.2 / 0.95;
  }

  .service-card__body {
    padding: 0.95rem 1rem 0;
  }

  .service-card h3 {
    font-size: 1.85rem;
  }

  .service-card__meta {
    margin-top: 0.55rem;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
  }

  .outline-pill {
    min-height: 2.9rem;
    margin: 1rem 1rem 1.05rem;
    font-size: 0.9rem;
  }

  .guidance__grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .guidance__panel,
  .contact__panel {
    margin-top: 1.55rem;
    border-radius: 1.55rem;
  }

  .guidance__panel {
    padding: 1.15rem 0.9rem 1.1rem;
  }

  .guidance__panel p {
    margin-bottom: 0.95rem;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .soft-pill {
    padding: 0.82rem 0.9rem;
    font-size: 0.88rem;
  }

  .testimonial-card {
    padding: 1.2rem 0.95rem 1.3rem;
    border-radius: 1.55rem;
  }

  .testimonial-card__stars {
    margin-bottom: 0.55rem;
    font-size: 0.82rem;
  }

  .testimonial-card img {
    width: 4.8rem;
    height: 4.8rem;
    margin-bottom: 0.8rem;
  }

  .testimonial-card blockquote {
    min-height: auto;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .testimonial-card h3 {
    margin-top: 0.75rem;
    font-size: 1.52rem;
  }

  .testimonial-card__label {
    font-size: 0.88rem;
  }

  .contact__actions {
    margin-top: 1.3rem;
  }

  .contact__panel {
    padding: 1.2rem 0.9rem 1rem;
  }

  .contact__columns {
    gap: 0.5rem;
  }

  .contact__column {
    padding: 0.25rem 0.4rem;
  }

  .contact__column h3 {
    font-size: 1.65rem;
  }

  .contact__links {
    gap: 0.65rem;
  }

  .contact-link {
    justify-content: center;
    min-height: 1.6rem;
    padding: 0.05rem 0;
    text-align: center;
  }

  .soft-location {
    min-width: 10.5rem;
    margin-top: 1.2rem;
    padding: 0.82rem 1.2rem;
    font-size: 0.92rem;
  }

  .soft-location--inline {
    margin-left: auto;
    margin-right: auto;
  }

  .contact__cta-slab {
    margin-top: 1.4rem;
    padding-top: 1.2rem;
  }

  .carousel-shell {
    padding: 0;
    margin-top: 1.3rem;
  }

  .carousel-control {
    display: none;
  }

  .services-swiper,
  .testimonials-swiper {
    padding: 0.35rem 0 0.35rem 0.2rem;
  }

  .services-swiper .swiper-slide {
    width: 100%;
  }

  .testimonials-swiper .swiper-slide {
    width: 100%;
  }

  .services-swiper {
    padding: 0.35rem 0;
  }

  .testimonials-swiper {
    padding: 0.35rem 0 0.35rem 0.2rem;
  }

  .carousel-shell--services {
    padding: 0;
  }

  .carousel-shell--testimonials {
    padding: 0;
  }

  .services-swiper .service-card {
    width: 100%;
  }

  .page-footer__inner {
    flex-direction: column;
  }

  .cookie-banner {
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
    width: auto;
    max-width: none;
    padding: 1rem 0.95rem 0.95rem;
    border-radius: 1.5rem;
  }

  .cookie-banner__copy {
    padding-right: 0;
  }

  .cookie-banner__text {
    font-size: 0.88rem;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner__button {
    width: 100%;
  }
}
