:root {
  --paper: #f5f5f1;
  --white: #ffffff;
  --green: #073c2e;
  --green-hover: #0d4b3a;
  --green-soft: #e5ece8;
  --gold: #d7ae42;
  --ink: #17231f;
  --muted: #66716c;
  --line: rgba(7, 60, 46, 0.14);
  --container: 76rem;
  --header-height: 5rem;
  font: 100%/1.5 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

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

body {
  min-width: 20rem;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 0.2rem solid var(--gold);
  outline-offset: 0.2rem;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--green);
  border-radius: 0.65rem;
  transform: translateY(-160%);
  transition: transform 160ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

section[id],
footer[id] {
  scroll-margin-top: var(--header-height);
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 245, 241, 0.86);
  box-shadow: 0 0.8rem 2.4rem rgba(24, 48, 40, 0.06);
  backdrop-filter: blur(1.25rem) saturate(145%);
  -webkit-backdrop-filter: blur(1.25rem) saturate(145%);
}

.header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header__brand {
  display: grid;
  width: 12.5rem;
  min-height: 3.1rem;
  place-items: center;
  padding: 0.4rem 0.65rem;
  overflow: hidden;
  background: var(--green);
  border-radius: 0.8rem;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
  transition: background 160ms ease-out, transform 100ms ease-out;
}

.header__brand:hover {
  background: var(--green-hover);
}

.header__brand:active {
  transform: scale(0.98);
}

.header__brand img {
  width: 100%;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  list-style: none;
}

.nav__link {
  display: block;
  padding: 0.65rem 0.85rem;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.65rem;
  transition: color 160ms ease-out, background 160ms ease-out, transform 100ms ease-out;
}

.nav__link:hover,
.nav__link[aria-current="true"] {
  background: rgba(7, 60, 46, 0.08);
}

.nav__link:active {
  transform: scale(0.97);
}

.nav__link--whatsapp {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.35rem;
  padding-inline: 1rem;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 0.55rem 1.25rem rgba(7, 60, 46, 0.17), inset 0 1px rgba(255, 255, 255, 0.14);
}

.nav__link--whatsapp:hover {
  color: var(--white);
  background: var(--green-hover);
}

.nav__toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  cursor: pointer;
  background: rgba(7, 60, 46, 0.08);
  border: 0;
  border-radius: 50%;
  place-content: center;
  gap: 0.3rem;
}

.header__mobile-actions {
  display: contents;
}

.header__whatsapp {
  display: none;
}

.nav__toggle span {
  width: 1.2rem;
  height: 0.1rem;
  background: var(--green);
  border-radius: 1rem;
  transition: transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 140ms ease;
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(0.4rem) rotate(45deg);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: translateY(-0.4rem) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: calc(100dvh - var(--header-height));
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(5rem, 8vw, 8rem);
  place-items: center;
  overflow: hidden;
  background: var(--paper);
}

.hero::after {
  position: absolute;
  right: -10rem;
  bottom: -14rem;
  width: 38rem;
  height: 38rem;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(7, 60, 46, 0.09), transparent 68%);
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(31rem, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  color: var(--muted);
}

.hero__content h1 {
  max-width: 8ch;
  color: var(--green);
  font-family: "Iowan Old Style", "Palatino Linotype", Baskerville, "Times New Roman", serif;
  font-size: clamp(4.4rem, 8.2vw, 8rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero__content h1 span {
  display: block;
  margin-left: 0.28em;
  color: var(--green-hover);
  font-style: italic;
  font-weight: 400;
}

.hero__content .hero__subtitle {
  margin-top: 1.5rem;
  color: var(--green);
  font-size: clamp(0.82rem, 1.05vw, 0.95rem);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__content p:not(.hero__subtitle) {
  max-width: 29rem;
  margin-top: clamp(2rem, 5vh, 3.25rem);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.hero__visual {
  position: relative;
  min-width: 0;
  padding: 0 0 3.8rem 2.5rem;
}

.hero__media {
  position: relative;
  aspect-ratio: 0.96;
  overflow: hidden;
  border-radius: 46% 46% 2rem 2rem / 35% 35% 2rem 2rem;
  box-shadow: 0 2rem 5rem rgba(27, 54, 45, 0.14);
}

.hero__media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(155deg, transparent 58%, rgba(7, 60, 46, 0.15));
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
  transform: scale(1.01);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero:hover .hero__img {
  transform: scale(1.025);
}

.btn {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 0.75rem 1.35rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
  background: var(--green);
  border-radius: 0.8rem;
  box-shadow: 0 0.75rem 1.8rem rgba(7, 60, 46, 0.18), inset 0 1px rgba(255, 255, 255, 0.14);
  transition: background 160ms ease-out, transform 100ms ease-out, box-shadow 160ms ease-out;
}

.btn:hover {
  background: var(--green-hover);
  box-shadow: 0 0.9rem 2rem rgba(7, 60, 46, 0.24), inset 0 1px rgba(255, 255, 255, 0.14);
}

.btn:active {
  transform: scale(0.97);
}

/* Sections */
.section {
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}

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

.section--soft {
  background: var(--paper);
}

.section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.58fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.section__title {
  color: var(--green);
  font-family: "Iowan Old Style", "Palatino Linotype", Baskerville, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.section__header p,
.reviews__header p,
.about__content p {
  max-width: 35rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.section__header p {
  padding-bottom: 0.3rem;
}

/* Services */
.grid {
  display: grid;
}

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

.grid--services .card {
  position: relative;
  display: flex;
  min-height: 14rem;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 4;
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  overflow: hidden;
  color: var(--green);
  background: var(--paper);
  border-radius: 1.5rem;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.72);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 200ms ease-out, box-shadow 220ms ease-out;
}

.grid--services .card:nth-child(1),
.grid--services .card:nth-child(2) {
  min-height: 18rem;
  grid-column: span 6;
}

.grid--services .card:nth-child(1) {
  color: var(--white);
  background: var(--green);
}

.grid--services .card:nth-child(2) {
  background: #dfe8e2;
}

.grid--services .card:nth-child(5),
.grid--services .card:nth-child(8) {
  background: #f0ebdc;
}

.grid--services .card:hover {
  z-index: 1;
  background: #e7ece8;
  box-shadow: 0 1.3rem 3.2rem rgba(27, 54, 45, 0.14), inset 0 1px rgba(255, 255, 255, 0.7);
  transform: translateY(-0.35rem);
}

.grid--services .card:nth-child(1):hover {
  background: var(--green-hover);
}

.grid--services .card:active {
  transform: scale(0.99);
  transition-duration: 90ms;
}

.card__icon {
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 2.75rem;
  padding: 0.75rem;
  color: currentColor;
  background: rgba(7, 60, 46, 0.08);
  border-radius: 1rem;
}

.grid--services .card:nth-child(1) .card__icon {
  background: rgba(255, 255, 255, 0.12);
}

.card__icon * {
  stroke: currentColor !important;
}

.card__title {
  max-width: 19ch;
  color: inherit;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 620;
  line-height: 1.22;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

/* About */
.about {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.about__media {
  min-width: 0;
}

.about__media img {
  width: 100%;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
  object-position: 50% center;
  border-radius: 2.5rem 2.5rem 2.5rem 0.9rem;
  box-shadow: 0 2rem 5rem rgba(27, 54, 45, 0.14);
}

.about__content {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 2.5rem 2.5rem 0.9rem 2.5rem;
  box-shadow: 0 1.5rem 4rem rgba(27, 54, 45, 0.09), inset 0 1px rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(1rem) saturate(125%);
  -webkit-backdrop-filter: blur(1rem) saturate(125%);
}

.about__content .section__title {
  margin-bottom: 2rem;
}

.about__content p + p {
  margin-top: 1rem;
}

/* Reviews */
.reviews__header {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.reviews__header p {
  padding-bottom: 0.35rem;
}

.reviews__carousel {
  position: relative;
}

.reviews__arrow {
  display: none;
}

.grid--reviews {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.review {
  min-height: 14rem;
  grid-column: span 6;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--paper);
  border-radius: 1.5rem;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.72);
  transition: background 180ms ease-out, transform 180ms ease-out, box-shadow 180ms ease-out;
}

.review:nth-child(1),
.review:nth-child(4) {
  grid-column: span 7;
}

.review:nth-child(2),
.review:nth-child(3) {
  grid-column: span 5;
}

.review:nth-child(2),
.review:nth-child(5) {
  background: #e7ede9;
}

.review:hover {
  background: #dfe8e2;
  box-shadow: 0 1rem 2.6rem rgba(27, 54, 45, 0.1), inset 0 1px rgba(255, 255, 255, 0.72);
  transform: translateY(-0.2rem);
}

.review__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.review__meta {
  display: contents;
}

.review__name {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 650;
}

.review__age {
  color: var(--muted);
  font-size: 0.78rem;
}

.review__stars {
  margin-top: 1.5rem;
  color: #9b7409;
  font-size: 0.85rem;
  letter-spacing: 0.13em;
}

.review__text {
  margin-top: 0.75rem;
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Baskerville, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.review__text::before {
  content: "“";
}

.review__text::after {
  content: "”";
}

/* Footer */
.footer {
  color: rgba(255, 255, 255, 0.88);
  background: var(--green);
  border-radius: 2.5rem 2.5rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr 1.45fr;
  gap: clamp(3rem, 6vw, 6rem);
  padding: clamp(5rem, 8vw, 7rem) 0;
}

.footer__title {
  margin-bottom: 1.25rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 650;
}

.footer__list {
  padding: 0;
  font-style: normal;
  list-style: none;
}

.footer__list p {
  margin-bottom: 0.75rem;
}

.footer__list a {
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.2rem;
}

.footer__list a:hover {
  color: #f1d47c;
}

.footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer__contact a {
  overflow-wrap: anywhere;
}

.footer__icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: 0.2rem;
  color: #f1d47c;
}

.footer__hours li {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__hours span:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.footer__hours--closed span:last-child {
  color: #f1d47c;
}

.footer__iframe {
  width: 100%;
  height: 17rem;
  border: 0;
  border-radius: 1.5rem;
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.16);
}

.footer__bottom {
  display: flex;
  width: min(calc(100% - 3rem), var(--container));
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-inline: auto;
  padding: 1.5rem 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__legal {
  display: flex;
  gap: 0.65rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.82);
  text-underline-offset: 0.2rem;
}

@media (max-width: 64rem) {
  .hero {
    min-height: auto;
    padding: 6rem 0 7rem;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  .hero__content {
    max-width: 44rem;
  }

  .hero__visual {
    width: min(100%, 48rem);
    margin-left: auto;
    padding: 0;
  }

  .hero__media {
    aspect-ratio: 1.18;
    border-radius: 44% 44% 2rem 2rem / 38% 38% 2rem 2rem;
  }

  .grid--services .card,
  .grid--services .card:nth-child(1),
  .grid--services .card:nth-child(2),
  .review,
  .review:nth-child(1),
  .review:nth-child(2),
  .review:nth-child(3),
  .review:nth-child(4) {
    grid-column: span 6;
  }

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

  .footer__map {
    grid-column: 1 / -1;
  }
}

@media (max-width: 48rem) {
  :root {
    --header-height: 4.5rem;
  }

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

  .header__brand {
    width: 10.5rem;
    min-height: 2.7rem;
  }

  .nav__toggle {
    display: grid;
  }

  .header__mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .header__whatsapp {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    color: var(--white);
    text-decoration: none;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0.55rem 1.25rem rgba(7, 60, 46, 0.17), inset 0 1px rgba(255, 255, 255, 0.14);
    place-items: center;
    transition: background 160ms ease-out, transform 100ms ease-out;
  }

  .header__whatsapp:active {
    transform: scale(0.94);
  }

  .nav {
    position: absolute;
    top: calc(var(--header-height) - 0.25rem);
    right: 0.75rem;
    left: 0.75rem;
    visibility: hidden;
    padding: 0.5rem;
    opacity: 0;
    background: rgba(250, 250, 247, 0.98);
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    box-shadow: 0 1rem 3rem rgba(27, 54, 45, 0.16);
    transform: translateY(-0.5rem) scale(0.98);
    transform-origin: top right;
    transition: opacity 160ms ease-out, transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 200ms;
  }

  .nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav__list {
    align-items: stretch;
    flex-direction: column;
  }

  .nav__link {
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }

  .nav__link--whatsapp {
    justify-content: center;
    margin: 0.35rem 0 0;
    color: var(--white);
    background: var(--green);
  }

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

  .hero__layout {
    gap: 3.5rem;
  }

  .hero__content h1 {
    max-width: 8ch;
    font-size: clamp(4.1rem, 21vw, 6.3rem);
  }

  .hero__content p:not(.hero__subtitle) {
    margin-top: 1.75rem;
    font-size: 1.05rem;
  }

  .hero__visual {
    width: 100%;
  }

  .hero__media {
    aspect-ratio: 0.9;
    border-radius: 46% 46% 1.5rem 1.5rem / 32% 32% 1.5rem 1.5rem;
  }

  .hero:hover .hero__img {
    transform: none;
  }

  .section {
    padding: 5.5rem 0;
  }

  .section__header,
  .about,
  .reviews__header {
    grid-template-columns: 1fr;
  }

  .section__header,
  .about {
    gap: 3.5rem;
  }

  .section__header {
    margin-bottom: 3rem;
  }

  .section__title {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .grid--services .card,
  .grid--services .card:nth-child(1),
  .grid--services .card:nth-child(2) {
    min-height: 12.5rem;
    grid-column: 1 / -1;
    color: var(--green);
    background: #e7ece8;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.7);
  }

  .grid--services .card:nth-child(1) {
    color: var(--white);
    background: var(--green);
  }

  .grid--services .card:nth-child(5),
  .grid--services .card:nth-child(8) {
    background: #e7ece8;
  }

  .grid--services .card:nth-child(1):hover {
    background: var(--green-hover);
  }

  .grid--services .card:not(:first-child):hover {
    background: #dfe7e2;
  }

  .about__media {
    order: 2;
  }

  .about__media img {
    aspect-ratio: 1 / 1;
    border-radius: 1.5rem 1.5rem 1.5rem 0.75rem;
  }

  .about__content {
    order: 1;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem 1.5rem 0.75rem 1.5rem;
  }

  .reviews__header {
    gap: 1.75rem;
    margin-bottom: 3rem;
  }

  .reviews__header p {
    padding: 0;
  }

  .grid--reviews {
    display: flex;
    width: calc(100% + 1.5rem);
    gap: 0.75rem;
    margin-left: -0.75rem;
    padding: 0.25rem 3.25rem 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: 3.25rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .grid--reviews::-webkit-scrollbar {
    display: none;
  }

  .review {
    min-width: min(78vw, 20rem);
    min-height: 15rem;
    background: #edf0ec;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .review:nth-child(2),
  .review:nth-child(5),
  .review:hover {
    background: #edf0ec;
  }

  .reviews__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 2.9rem;
    height: 2.9rem;
    padding: 0;
    color: var(--white);
    cursor: pointer;
    background: rgba(7, 60, 46, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 0.8rem 2rem rgba(27, 54, 45, 0.24), inset 0 1px rgba(255, 255, 255, 0.14);
    place-items: center;
    transform: translateY(-50%);
    backdrop-filter: blur(0.8rem) saturate(130%);
    -webkit-backdrop-filter: blur(0.8rem) saturate(130%);
    transition: opacity 160ms ease-out, background 160ms ease-out, transform 100ms ease-out;
  }

  .reviews__arrow--previous {
    left: 0.15rem;
  }

  .reviews__arrow--next {
    right: 0.15rem;
  }

  .reviews__arrow:active {
    transform: translateY(-50%) scale(0.94);
  }

  .reviews__arrow:disabled {
    opacity: 0.28;
    cursor: default;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4.5rem 0;
  }

  .footer__map {
    grid-column: auto;
  }

  .footer__bottom {
    width: min(calc(100% - 1.5rem), var(--container));
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    border-radius: 1.5rem 1.5rem 0 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .header,
  .nav,
  .about__content,
  .reviews__arrow {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .about__content {
    background: var(--white);
  }

  .reviews__arrow {
    color: var(--white);
    background: var(--green);
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: rgba(7, 60, 46, 0.5);
  }

  .header,
  .nav,
  .review,
  .about__content,
  .reviews__arrow {
    border: 2px solid var(--green);
  }
}

@media (hover: none) {
  .grid--services .card:hover,
  .review:hover,
  .hero:hover .hero__img {
    box-shadow: inherit;
    transform: none;
  }
}
