/* ORIGEN — Clínica de Salud Mental Residencial
   Stylesheet */

:root {
  --color-navy-deep: #1b2b4b;
  --color-navy-dark: #0f1a2e;
  --color-gold: #c9a84c;
  --color-gold-soft: #e8d5a3;
  --color-cream: #faf7f2;
  --color-gray-light: #f5f5f5;
  --color-white: #ffffff;

  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;

  --navbar-height: 72px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

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

body {
  font-family: var(--font-body);
  color: var(--color-navy-deep);
  background-color: var(--color-cream);
}

body.no-scroll {
  overflow: hidden;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.95rem 2.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

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

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.35);
}

/* ---------- Navbar ---------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 1000;
  background-color: var(--color-cream);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.navbar--scrolled {
  box-shadow: 0 2px 16px rgba(15, 26, 46, 0.1);
}

.navbar__inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__menu {
  list-style: none;
  align-items: center;
  gap: 2.25rem;
}

.navbar__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--color-navy-deep);
  text-decoration: none;
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.25s ease;
}

.navbar__link:hover,
.navbar__link:focus-visible,
.navbar__link.is-active {
  color: var(--color-gold);
}

.navbar__link:hover::after,
.navbar__link:focus-visible::after,
.navbar__link.is-active::after {
  width: 100%;
}

.navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar__toggle-bar {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-navy-deep);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar__toggle.is-active .navbar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.is-active .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.is-active .navbar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .navbar__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--navbar-height));
    background-color: var(--color-cream);
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .navbar__menu.is-open {
    transform: translateX(0);
  }

  .navbar__menu .navbar__link {
    font-size: 1.15rem;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .navbar__menu {
    display: flex;
  }

  .navbar__toggle {
    display: none;
  }
}

/* ---------- Logo ---------- */

.logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
}

.logo-icon {
  width: auto;
}

.logo-wordmark {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.navbar .logo-icon {
  height: 34px;
}

.navbar .logo-wordmark {
  font-size: 1.15rem;
  color: var(--color-navy-deep);
}

.hero .logo {
  margin-bottom: 2.5rem;
}

.hero .logo-icon {
  height: 60px;
}

.hero .logo-wordmark {
  font-size: 2.1875rem;
  color: var(--color-cream);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .hero .logo-icon {
    height: 70px;
  }

  .hero .logo-wordmark {
    font-size: 2.8125rem;
  }
}

/* ---------- Section stubs ---------- */

.section {
  padding: 5rem 1.5rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  scroll-margin-top: var(--navbar-height);
}

.section--alt {
  background-color: var(--color-gray-light);
}

.section__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2rem;
  color: var(--color-navy-deep);
}

@media (min-width: 768px) {
  .section__title {
    font-size: 2.5rem;
  }
}

/* ---------- Scroll reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- About ---------- */

.about__container {
  max-width: 960px;
  margin: 0 auto;
}

.about__intro {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 62ch;
  margin: 1.5rem auto 0;
  color: var(--color-navy-deep);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}

.about__item {
  padding: 1.75rem 1.5rem;
  background-color: var(--color-white);
  border-top: 3px solid var(--color-gold);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(15, 26, 46, 0.06);
  text-align: left;
}

.about__item-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-navy-deep);
  margin-bottom: 0.6rem;
}

.about__item-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-navy-deep);
}

.about__closing {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.4;
  max-width: 48ch;
  margin: 3rem auto 0;
  color: var(--color-navy-deep);
}

@media (min-width: 600px) {
  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .about__intro {
    font-size: 1.1rem;
  }

  .about__closing {
    font-size: 1.6rem;
  }
}

@media (min-width: 1100px) {
  .about__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Highlight strip ---------- */

.highlight-strip {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0;
  background-color: var(--color-gray-light);
}

.highlight-strip::before,
.highlight-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;
  max-width: 90px;
  z-index: 2;
  pointer-events: none;
}

.highlight-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--color-gray-light), transparent);
}

.highlight-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--color-gray-light), transparent);
}

.highlight-strip__track {
  display: flex;
  width: max-content;
  animation: highlight-strip-scroll 50s linear infinite;
}

.highlight-strip__group {
  display: flex;
  gap: 1rem;
  padding: 0 0.5rem;
}

.highlight-strip__img {
  display: block;
  flex-shrink: 0;
  height: 160px;
  width: auto;
  object-fit: cover;
  border-radius: 6px;
}

@keyframes highlight-strip-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .highlight-strip__track {
    animation: none;
  }

  .highlight-strip__group[aria-hidden="true"] {
    display: none;
  }
}

/* ---------- Callout ---------- */

.callout {
  position: relative;
  overflow: hidden;
  padding: 60px 1.5rem;
  text-align: center;
  background-color: var(--color-navy-dark);
}

.callout__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  max-width: 70vw;
  opacity: 0.06;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.callout__watermark-icon {
  display: block;
  width: 100%;
  height: auto;
}

.callout__container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.callout__logo {
  justify-content: center;
  margin-bottom: 24px;
}

.callout .logo-icon {
  height: 30px;
}

.callout .logo-wordmark {
  font-size: 1rem;
  color: var(--color-cream);
}

.callout__quote {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.4;
  color: var(--color-cream);
}

.callout__badge {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  margin-top: 1.75rem;
}

@media (min-width: 768px) {
  .callout {
    padding: 90px 1.5rem;
  }

  .callout__logo {
    margin-bottom: 32px;
  }

  .callout__quote {
    font-size: 2.25rem;
  }
}

/* ---------- Services ---------- */

.services__container {
  max-width: 1040px;
  margin: 0 auto;
}

.services__intro {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 50ch;
  margin: 1rem auto 0;
  color: var(--color-navy-deep);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}

.services__item {
  padding: 2rem 1.75rem;
  background-color: var(--color-white);
  border: 1px solid rgba(27, 43, 75, 0.08);
  border-radius: 8px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services__item:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 24px rgba(15, 26, 46, 0.1);
}

.services__icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 1.25rem;
  color: var(--color-navy-deep);
  transition: color 0.25s ease;
}

.services__item:hover .services__icon {
  color: var(--color-gold);
}

.services__icon svg {
  width: 100%;
  height: 100%;
}

.services__item--featured {
  border-left: 4px solid var(--color-gold);
  background-color: rgba(201, 168, 76, 0.06);
}

.services__item--featured .services__icon {
  width: 52px;
  height: 52px;
}

.services__item-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-navy-deep);
  margin-bottom: 0.6rem;
}

.services__item-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-navy-deep);
}

@media (min-width: 600px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__item--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 1.75rem;
    row-gap: 0.5rem;
  }

  .services__item--featured .services__icon {
    grid-row: 1 / 3;
    margin-bottom: 0;
  }

  .services__item--featured .services__item-title,
  .services__item--featured .services__item-text {
    grid-column: 2;
  }
}

@media (min-width: 768px) {
  .services__intro {
    font-size: 1.05rem;
  }
}

/* ---------- Locations ---------- */

.locations__container {
  max-width: 1040px;
  margin: 0 auto;
}

.locations__map {
  height: 320px;
  margin-top: 3rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 26, 46, 0.1);
  background-color: var(--color-gray-light);
}

.locations__leaflet-icon {
  background: transparent;
  border: none;
}

.locations__map-pin {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
}

.locations__map-pin-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-navy-deep);
  box-shadow: 0 2px 10px rgba(15, 26, 46, 0.6);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.locations__map-pin-circle.is-glowing {
  box-shadow: 0 0 16px 4px rgba(201, 168, 76, 0.65), 0 2px 8px rgba(15, 26, 46, 0.45);
  transform: scale(1.08);
}

.locations__map-pin-icon {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.locations__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}

.locations__card {
  background-color: var(--color-white);
  border: 1px solid rgba(27, 43, 75, 0.08);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.locations__card:hover,
.locations__card.is-glowing {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.6);
}

.locations__photo-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.locations__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.locations__info {
  padding: 1.5rem 1.75rem 1.75rem;
}

.locations__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-navy-deep);
  margin-bottom: 0.6rem;
}

.locations__address {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-navy-deep);
  margin-bottom: 0.75rem;
}

.locations__phone {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.locations__phone a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-navy-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gold);
  width: fit-content;
  transition: color 0.2s ease;
}

.locations__phone a:hover {
  color: var(--color-gold);
}

.locations__whatsapp {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-navy-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gold);
  width: fit-content;
  transition: color 0.2s ease;
}

.whatsapp-link:hover {
  color: var(--color-gold);
}

.whatsapp-link__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-gold);
}

@media (min-width: 600px) {
  .locations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .locations__map {
    height: 420px;
  }

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

/* ---------- Gallery ---------- */

.gallery__container {
  max-width: 1040px;
  margin: 0 auto;
}

.gallery__tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.gallery__tab {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy-deep);
  background-color: transparent;
  border: 1px solid rgba(27, 43, 75, 0.15);
  border-radius: 999px;
  padding: 0.65rem 1.75rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gallery__tab:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.gallery__tab.is-active {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy-dark);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.gallery__grid--fading {
  opacity: 0;
}

.gallery__item {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: var(--color-gray-light);
}

.gallery__item:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__img,
.gallery__item:focus-visible .gallery__img {
  transform: scale(1.06);
}

@media (min-width: 600px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: rgba(15, 26, 46, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__figure {
  position: relative;
  max-width: min(90vw, 1000px);
  max-height: 85vh;
  margin: 0;
}

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close,
.lightbox__nav {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background-color: rgba(250, 247, 242, 0.12);
  color: var(--color-cream);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background-color: var(--color-gold);
  color: var(--color-navy-dark);
}

.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}

.lightbox__nav--prev {
  left: 1.5rem;
}

.lightbox__nav--next {
  right: 1.5rem;
}

.lightbox__close svg,
.lightbox__nav svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 600px) {
  .lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .lightbox__nav--prev {
    left: 0.5rem;
  }

  .lightbox__nav--next {
    right: 0.5rem;
  }
}

/* ---------- Contact ---------- */

.contact__container {
  max-width: 1040px;
  margin: 0 auto;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.contact__form-wrap {
  background-color: var(--color-white);
  border: 1px solid rgba(27, 43, 75, 0.08);
  border-top: 3px solid var(--color-gold);
  border-radius: 8px;
  padding: 1.75rem;
}

.contact__info-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact__info-item {
  padding: 1.75rem;
  background-color: var(--color-white);
  border-top: 3px solid var(--color-gold);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(15, 26, 46, 0.06);
}

@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--color-cream);
  background:
    linear-gradient(rgba(15, 26, 46, 0.6), rgba(15, 26, 46, 0.75)),
    url("../images/origen-sede-cuautla-01.jpeg") center center / cover
      no-repeat;
}

.hero__headline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.15;
  max-width: 18ch;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
}

.hero__subheadline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 40ch;
  color: var(--color-cream);
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero__headline {
    font-size: 3.25rem;
    max-width: 22ch;
  }

  .hero__subheadline {
    font-size: 1.15rem;
    max-width: 46ch;
  }
}

@media (min-width: 1200px) {
  .hero__headline {
    font-size: 4rem;
  }
}

/* ---------- Thanks (gracias/index.html) ---------- */

.thanks {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--navbar-height) + 3rem) 1.5rem 4rem;
  background-color: var(--color-cream);
}

.thanks__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  max-width: 70vw;
  opacity: 0.06;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.thanks__watermark-icon {
  display: block;
  width: 100%;
  height: auto;
}

.thanks__container {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.thanks__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2.25rem;
  color: var(--color-navy-deep);
  margin-bottom: 1.25rem;
}

.thanks__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-navy-deep);
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .thanks__heading {
    font-size: 3rem;
  }

  .thanks__text {
    font-size: 1.15rem;
  }
}
