@font-face {
  font-family: "The Seasons";
  src: url("../fonts/TheSeasons-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "The Seasons";
  src: url("../fonts/TheSeasons-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Josefin Sans";
  src: url("../fonts/JosefinSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --verde-bosque: #20492c;
  --verde-oliva: #627c63;
  --dorado: #bd9d61;
  --beige: #eae2d0;
  --beige-claro: #f6f1e7;
  --tinta: #183723;
  --blanco-calido: #fffaf1;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(24, 55, 35, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  background: var(--beige);
  color: var(--tinta);
  font-family: "Josefin Sans", "Avenir Next", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: "The Seasons", Georgia, serif;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: 6rem;
}

h2 {
  font-size: 3.7rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin: 0;
}

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 14px 32px;
  background: var(--verde-bosque);
  color: var(--beige);
  border-bottom: 1px solid rgba(189, 157, 97, 0.35);
}

.brand-link {
  position: relative;
  z-index: 1002;
  display: inline-flex;
  align-items: center;
  width: 170px;
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 100svh;
  padding: 112px 24px 56px;
  background:
    radial-gradient(circle at 18% 24%, rgba(98, 124, 99, 0.24), transparent 34%),
    linear-gradient(135deg, var(--verde-bosque), var(--tinta));
  color: var(--beige);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 320ms ease, transform 320ms ease, visibility 320ms ease;
  overflow: hidden;
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/patron-alma.png") right center / min(55vw, 760px) auto no-repeat;
  opacity: 0.1;
}

.site-nav::after {
  content: "";
  position: absolute;
  left: -10vw;
  right: -10vw;
  bottom: -9vw;
  height: min(32vw, 230px);
  background:
    radial-gradient(60% 100% at 18% 0%, rgba(234, 226, 208, 0.34), transparent 62%),
    radial-gradient(55% 95% at 52% 0%, rgba(189, 157, 97, 0.24), transparent 60%),
    radial-gradient(50% 90% at 82% 0%, rgba(234, 226, 208, 0.26), transparent 60%);
  opacity: 0.42;
  animation: menuSea 7s ease-in-out infinite alternate;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a {
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: var(--beige);
  font-family: "The Seasons", Georgia, serif;
  font-size: clamp(2.4rem, 7vw, 5.7rem);
  line-height: 0.98;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: color 180ms ease, opacity 420ms ease, transform 420ms ease;
}

.site-nav.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.site-nav.is-open a:nth-child(1) {
  transition-delay: 70ms;
}

.site-nav.is-open a:nth-child(2) {
  transition-delay: 120ms;
}

.site-nav.is-open a:nth-child(3) {
  transition-delay: 170ms;
}

.site-nav.is-open a:nth-child(4) {
  transition-delay: 220ms;
}

.site-nav.is-open a:nth-child(5) {
  transition-delay: 270ms;
}

.site-nav.is-open a:nth-child(6) {
  transition-delay: 320ms;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: var(--dorado);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  position: relative;
  z-index: 1002;
  display: inline-block;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(234, 226, 208, 0.45);
  border-radius: var(--radius);
  background: transparent;
  color: var(--beige);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
}

.page-transition__water {
  position: absolute;
  inset: -12vh -22vw;
  background:
    radial-gradient(circle at 24% 26%, rgba(234, 226, 208, 0.14), transparent 18%),
    radial-gradient(circle at 64% 72%, rgba(189, 157, 97, 0.18), transparent 22%),
    repeating-linear-gradient(154deg, rgba(234, 226, 208, 0.08) 0 2px, transparent 2px 36px),
    linear-gradient(115deg, rgba(32, 73, 44, 0.99), rgba(98, 124, 99, 0.96)),
    var(--verde-bosque);
  clip-path: polygon(
    0 0,
    calc(100% - 180px) 0,
    calc(100% - 92px) 8%,
    calc(100% - 168px) 18%,
    calc(100% - 78px) 30%,
    calc(100% - 160px) 43%,
    calc(100% - 82px) 56%,
    calc(100% - 174px) 70%,
    calc(100% - 94px) 84%,
    calc(100% - 150px) 100%,
    0 100%
  );
  transform: translateX(-115%);
}

.page-transition__water::before,
.page-transition__water::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2vw;
  width: clamp(170px, 19vw, 300px);
  background:
    radial-gradient(92px 124px at 45% 8%, rgba(255, 250, 241, 0.8), transparent 72%),
    radial-gradient(108px 146px at 35% 25%, rgba(234, 226, 208, 0.64), transparent 72%),
    radial-gradient(88px 132px at 60% 44%, rgba(255, 250, 241, 0.72), transparent 72%),
    radial-gradient(112px 154px at 34% 63%, rgba(234, 226, 208, 0.58), transparent 72%),
    radial-gradient(94px 138px at 58% 84%, rgba(255, 250, 241, 0.7), transparent 72%);
  opacity: 0.72;
  filter: blur(0.5px);
}

.page-transition__water::before {
  border-radius: 50%;
  animation: wavePulse 900ms ease-in-out infinite alternate;
}

.page-transition__water::after {
  right: 15vw;
  width: clamp(140px, 15vw, 230px);
  opacity: 0.28;
  border-radius: 48%;
  animation: wavePulse 980ms ease-in-out infinite alternate-reverse;
}

.page-transition__foam {
  position: absolute;
  top: -12vh;
  bottom: -12vh;
  left: 0;
  width: clamp(130px, 18vw, 250px);
  background:
    radial-gradient(72px 116px at 65% 8%, rgba(255, 250, 241, 0.84), transparent 72%),
    radial-gradient(92px 142px at 36% 22%, rgba(234, 226, 208, 0.7), transparent 74%),
    radial-gradient(72px 118px at 70% 41%, rgba(255, 250, 241, 0.82), transparent 72%),
    radial-gradient(96px 150px at 34% 60%, rgba(234, 226, 208, 0.68), transparent 74%),
    radial-gradient(78px 120px at 66% 80%, rgba(255, 250, 241, 0.78), transparent 72%);
  opacity: 0;
  transform: translateX(-120%);
}

.page-transition__foam::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(94deg, transparent 0 18px, rgba(255, 250, 241, 0.34) 18px 20px, transparent 20px 46px);
  opacity: 0.36;
  transform: rotate(-6deg);
}

.page-transition.is-active {
  opacity: 1;
  pointer-events: none;
}

.page-transition.is-active .page-transition__water {
  animation: seaDragIn 980ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.page-transition.is-active .page-transition__foam {
  animation: foamDragIn 980ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.page-transition.is-revealing {
  opacity: 1;
  pointer-events: none;
  animation: transitionHide 980ms ease forwards;
}

.page-transition.is-revealing .page-transition__water {
  transform: translateX(0);
  animation: seaReveal 980ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.page-transition.is-revealing .page-transition__foam {
  opacity: 0.85;
  transform: translateX(-120%);
  animation: foamReveal 980ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes menuSea {
  from {
    transform: translateX(-2vw) translateY(0);
  }

  to {
    transform: translateX(2vw) translateY(-8px);
  }
}

@keyframes seaDragIn {
  0% {
    transform: translateX(-115%) skewX(-8deg);
  }

  68% {
    transform: translateX(-4%) skewX(-3deg);
  }

  100% {
    transform: translateX(0) skewX(0);
  }
}

@keyframes foamDragIn {
  0% {
    opacity: 0;
    transform: translateX(-125%);
  }

  45% {
    opacity: 0.92;
  }

  74% {
    opacity: 0.78;
  }

  100% {
    opacity: 0;
    transform: translateX(calc(100vw + 12vw));
  }
}

@keyframes seaReveal {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(115%) skewX(7deg);
  }
}

@keyframes foamReveal {
  from {
    opacity: 0.9;
    transform: translateX(-120%);
  }

  55% {
    opacity: 0.76;
  }

  to {
    opacity: 0;
    transform: translateX(calc(100vw + 12vw));
  }
}

@keyframes wavePulse {
  from {
    transform: translateY(-8px) scaleY(0.98);
  }

  to {
    transform: translateY(8px) scaleY(1.04);
  }
}

@keyframes transitionHide {
  0%,
  82% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: url("../img/hero-consulta.jpg") center / cover no-repeat;
  color: var(--beige);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 73, 44, 0.52);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 76px;
  text-align: center;
}

.hero-copy {
  max-width: 660px;
  margin: 24px auto 0;
  color: var(--blanco-calido);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-logo {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 22px;
  width: min(34vw, 430px);
  opacity: 0.18;
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  color: var(--dorado);
  font-size: 0.92rem;
  font-weight: 400;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: 14px;
}

.title-icon,
.card-icon,
.list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dorado);
}

.title-icon,
.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border: 1px solid rgba(189, 157, 97, 0.42);
  border-radius: 999px;
  background: rgba(189, 157, 97, 0.08);
}

.title-icon svg,
.card-icon svg,
.list-icon svg {
  width: 24px;
  height: 24px;
}

.list-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(189, 157, 97, 0.38);
  border-radius: 999px;
  background: rgba(189, 157, 97, 0.08);
}

.section-dark .card-icon,
.section-dark .title-icon,
.section-dark .list-icon,
.quote-section .title-icon {
  color: var(--dorado);
  border-color: rgba(189, 157, 97, 0.48);
  background: rgba(234, 226, 208, 0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px 11px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.98rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--dorado);
  color: var(--verde-bosque);
}

.btn-secondary {
  border-color: rgba(234, 226, 208, 0.7);
  color: var(--beige);
}

.btn-outline {
  border-color: var(--verde-bosque);
  color: var(--verde-bosque);
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--dorado);
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.statement-band {
  background: var(--verde-bosque);
  color: var(--beige);
  border-top: 1px solid rgba(189, 157, 97, 0.38);
}

.statement-inner {
  padding: 58px 0 64px;
  text-align: center;
}

.statement-inner h2 {
  max-width: 880px;
  margin: 0 auto 20px;
}

.statement-inner p:last-child {
  max-width: 820px;
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--beige);
}

.section-dark {
  background: var(--verde-bosque);
  color: var(--beige);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.value-grid,
.service-grid,
.process-grid,
.mission-grid {
  display: grid;
  gap: 22px;
}

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

.value-card,
.service-grid article,
.process-grid article,
.contact-card,
.contact-form,
.cta-panel {
  border-radius: var(--radius);
}

.value-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 295px;
  padding: 34px 30px 32px;
  background: var(--beige-claro);
  border: 1px solid rgba(32, 73, 44, 0.18);
}

.value-card .number {
  position: absolute;
  top: 24px;
  right: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 34px;
  padding: 3px 10px 0;
  border: 1px solid rgba(189, 157, 97, 0.28);
  border-radius: 999px;
  background: rgba(189, 157, 97, 0.08);
  color: var(--dorado);
  font-family: "The Seasons", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.value-card .card-icon {
  margin-bottom: 34px;
}

.process-grid .number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--dorado);
  font-family: "The Seasons", Georgia, serif;
  font-size: 2rem;
}

.value-card h3,
.service-grid h3,
.process-grid h3 {
  margin-bottom: 16px;
  color: var(--verde-bosque);
}

.section-dark .process-grid h3,
.section-dark .process-grid p {
  color: var(--beige);
}

.service-grid p {
  font-weight: 400;
  line-height: 1.58;
}

.split,
.image-copy-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.split h2,
.image-copy-grid h2 {
  margin-bottom: 22px;
}

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

.service-list p {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px 14px;
  border: 1px solid rgba(234, 226, 208, 0.28);
  border-radius: var(--radius);
  background: rgba(234, 226, 208, 0.06);
}

.framed-image {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.framed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-ratio {
  aspect-ratio: 3 / 4;
}

.page-hero {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: center;
  background: var(--verde-bosque);
  color: var(--beige);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--dorado);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  padding: 88px 0;
}

.page-hero h1 {
  max-width: 1080px;
  margin: 0 0 24px;
  font-size: 4.8rem;
}

.page-hero p:last-child {
  max-width: 720px;
  color: var(--blanco-calido);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.58;
}

.patterned {
  background-color: var(--verde-bosque);
}

.patterned::before,
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(45vw, 620px);
  background: url("../img/patron-alma.png") center / cover no-repeat;
  opacity: 0.18;
}

.long-copy {
  max-width: 920px;
}

.long-copy p + p {
  margin-top: 20px;
}

.narrow {
  max-width: 820px;
}

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

.mission-grid article {
  padding: 38px 0;
  border-top: 1px solid rgba(189, 157, 97, 0.42);
  border-bottom: 1px solid rgba(189, 157, 97, 0.42);
}

.mission-grid h2 {
  margin-bottom: 18px;
  font-size: 2.9rem;
}

.reverse figure {
  order: 2;
}

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

.service-grid article {
  min-height: 255px;
  padding: 28px;
  background: var(--beige-claro);
  border: 1px solid rgba(32, 73, 44, 0.18);
}

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

.process-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(234, 226, 208, 0.28);
  background: rgba(234, 226, 208, 0.06);
}

.cta-panel {
  padding: 54px;
  background: var(--beige-claro);
  border: 1px solid rgba(32, 73, 44, 0.18);
  text-align: center;
}

.cta-panel h2,
.cta-panel p {
  max-width: 740px;
  margin-inline: auto;
}

.cta-panel p {
  margin-top: 18px;
}

.cta-panel .btn {
  margin-top: 28px;
}

.cta-panel .hero-actions {
  margin-top: 28px;
}

.cta-panel .hero-actions .btn {
  margin-top: 0;
}

.quote-section {
  padding: 84px 0;
  background: var(--verde-bosque);
  color: var(--dorado);
  text-align: center;
}

.quote-section blockquote {
  max-width: 980px;
  margin: 0 auto;
  font-size: 4.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms ease, transform 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.value-grid .reveal:nth-child(2),
.service-grid .reveal:nth-child(2),
.process-grid .reveal:nth-child(2) {
  --reveal-delay: 80ms;
}

.value-grid .reveal:nth-child(3),
.service-grid .reveal:nth-child(3),
.process-grid .reveal:nth-child(3) {
  --reveal-delay: 160ms;
}

.service-grid .reveal:nth-child(4) {
  --reveal-delay: 40ms;
}

.service-grid .reveal:nth-child(5) {
  --reveal-delay: 120ms;
}

.service-grid .reveal:nth-child(6) {
  --reveal-delay: 200ms;
}

.contact-grid {
  align-items: stretch;
}

.contact-card,
.contact-form {
  background: var(--beige-claro);
  border: 1px solid rgba(32, 73, 44, 0.18);
  box-shadow: var(--shadow);
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
}

.contact-card img {
  width: min(100%, 420px);
  margin-bottom: 42px;
}

dl {
  margin: 0;
}

dt {
  color: var(--verde-oliva);
  font-size: 0.88rem;
  font-weight: 400;
  text-transform: uppercase;
}

dd {
  margin: 5px 0 20px;
  overflow-wrap: anywhere;
  font-size: 1.16rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--verde-bosque);
  font-weight: 400;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(32, 73, 44, 0.28);
  border-radius: var(--radius);
  background: var(--blanco-calido);
  color: var(--verde-bosque);
  font: inherit;
  padding: 13px 14px 10px;
}

textarea {
  resize: vertical;
}

.form-note {
  color: var(--verde-oliva);
  font-size: 0.95rem;
}

.muted {
  color: var(--verde-oliva);
}

.tiny-note {
  color: var(--verde-oliva);
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-status {
  min-height: 1.35em;
  color: var(--verde-oliva);
  font-size: 0.95rem;
}

.form-status[data-state="error"] {
  color: #9f3f32;
}

.form-status[data-state="success"] {
  color: var(--verde-bosque);
}

.auth-page {
  min-height: calc(100svh - 82px);
  display: grid;
  place-items: center;
  padding: 72px 20px;
  background: var(--blanco-calido);
}

.auth-panel {
  width: min(100%, 440px);
  display: grid;
  gap: 18px;
  padding: 36px;
  border: 1px solid rgba(32, 73, 44, 0.12);
  border-radius: var(--radius);
  background: #fffdf8;
}

.auth-logo {
  width: 190px;
  margin-bottom: 12px;
}

.auth-panel h1 {
  font-size: 3.25rem;
}

.minimal-form {
  display: grid;
  gap: 18px;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 92px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  min-height: 34px;
  padding: 7px 10px 5px;
  border: 1px solid rgba(32, 73, 44, 0.18);
  border-radius: var(--radius);
  background: rgba(189, 157, 97, 0.12);
  color: var(--verde-bosque);
  font: inherit;
  font-size: 0.82rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.auth-switch {
  color: var(--verde-oliva);
  font-size: 0.96rem;
}

.auth-switch a {
  color: var(--verde-bosque);
  text-decoration-color: var(--dorado);
  text-underline-offset: 4px;
  touch-action: manipulation;
}

.auth-help {
  border-top: 1px solid rgba(32, 73, 44, 0.12);
  padding-top: 16px;
}

.auth-help summary {
  color: var(--verde-bosque);
  cursor: pointer;
  font-size: 0.96rem;
}

.auth-help-form {
  margin-top: 16px;
}

.shop-shell {
  display: grid;
  gap: 30px;
}

.shop-product-grid {
  display: grid;
  gap: 24px;
}

.ebook-card,
.checkout-card,
.dashboard-panel,
.admin-list-item,
.kpi-grid article {
  border: 1px solid rgba(32, 73, 44, 0.14);
  border-radius: var(--radius);
  background: var(--beige-claro);
}

.ebook-card {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  width: min(100%, 1080px);
  margin-inline: auto;
  padding: clamp(22px, 3vw, 34px);
}

.ebook-cover,
.checkout-cover {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--beige);
}

.ebook-cover {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.checkout-cover {
  aspect-ratio: 4 / 3;
}

.ebook-card img,
.checkout-cover img,
.admin-list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ebook-card-content {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  min-width: 0;
}

.ebook-card-content > * {
  margin-block: 0;
}

.ebook-card-content > p:not(.section-kicker):not(.tiny-note) {
  max-width: 62ch;
}

.ebook-card h3 {
  color: var(--verde-bosque);
  font-size: clamp(2.15rem, 3.5vw, 3.45rem);
  overflow-wrap: anywhere;
}

.price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 4px;
}

.price-line strong {
  color: var(--verde-bosque);
  font-family: "The Seasons", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.old-price {
  color: var(--verde-oliva);
  text-decoration: line-through;
}

.ebook-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ebook-card .btn,
.checkout-card .btn,
.admin-product-form .btn {
  gap: 8px;
}

.ebook-card .btn {
  min-width: 150px;
}

.ebook-card .btn svg,
.admin-product-form .btn svg,
.icon-text-button svg,
.dashboard-nav svg,
.dashboard-logout svg,
.kpi-grid svg,
.dropzone svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-section {
  padding: 70px 0 82px;
}

.checkout-shell {
  display: grid;
  gap: 28px;
}

.checkout-heading {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.checkout-heading h1 {
  color: var(--verde-bosque);
  font-size: clamp(2.3rem, 4vw, 3.35rem);
}

.checkout-heading .muted {
  max-width: 62ch;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: start;
}

.checkout-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  isolation: isolate;
}

.checkout-summary {
  grid-template-columns: minmax(180px, 300px) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.checkout-summary .checkout-cover {
  aspect-ratio: 4 / 3;
}

.checkout-summary-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.checkout-summary-copy h2,
.checkout-payment h2 {
  color: var(--verde-bosque);
  font-size: clamp(1.85rem, 2.7vw, 2.35rem);
}

.checkout-summary-copy > p:not(.section-kicker) {
  max-width: 58ch;
}

.checkout-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(32, 73, 44, 0.12);
}

.checkout-price > span {
  color: var(--verde-oliva);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.checkout-payment {
  gap: 16px;
  align-self: start;
}

.checkout-payment-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.checkout-payment-head .title-icon {
  flex: 0 0 auto;
  margin: 0;
}

.paypal-box {
  position: relative;
  z-index: 0;
  min-height: 138px;
  overflow: hidden;
  border-radius: var(--radius);
}

.dashboard-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  background: var(--blanco-calido);
}

.dashboard-sidebar {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 26px;
  border-right: 1px solid rgba(32, 73, 44, 0.12);
  background: #fffdf8;
}

.dashboard-logo {
  width: 190px;
}

.dashboard-nav {
  display: grid;
  gap: 8px;
}

.dashboard-nav a,
.dashboard-logout,
.icon-text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--verde-bosque);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

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

.dashboard-nav a.is-active,
.dashboard-nav a:hover {
  background: rgba(189, 157, 97, 0.1);
}

.dashboard-logout {
  margin-top: auto;
  padding: 12px;
  color: var(--verde-oliva);
}

.dashboard-main {
  display: grid;
  gap: 24px;
  align-content: start;
  padding: 36px;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-topbar h1 {
  font-size: clamp(3rem, 6vw, 5rem);
}

.dashboard-panel {
  display: none;
  padding: 28px;
}

.dashboard-panel.is-active {
  display: grid;
  gap: 24px;
}

.panel-heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.panel-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.responsive-table {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(32, 73, 44, 0.12);
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--verde-oliva);
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px 2px;
  border-radius: 999px;
  background: rgba(98, 124, 99, 0.12);
  color: var(--verde-oliva);
  font-size: 0.82rem;
}

.status-pill.is-complete {
  background: rgba(32, 73, 44, 0.1);
  color: var(--verde-bosque);
}

.status-pill.is-pending {
  background: rgba(189, 157, 97, 0.14);
  color: #8d733d;
}

.status-pill.muted-pill {
  background: rgba(159, 63, 50, 0.08);
  color: #9f3f32;
}

.icon-text-button {
  padding: 8px 10px;
  background: rgba(189, 157, 97, 0.1);
}

.ebook-viewer {
  border: 1px solid rgba(32, 73, 44, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blanco-calido);
}

.viewer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(32, 73, 44, 0.12);
}

.viewer-head h3 {
  font-size: 1.5rem;
}

.ebook-viewer iframe {
  width: 100%;
  min-height: 72svh;
  border: 0;
  background: #fff;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(32, 73, 44, 0.14);
  border-radius: var(--radius);
  background: var(--blanco-calido);
  color: var(--verde-bosque);
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button.danger {
  color: #9f3f32;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.kpi-grid article {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.kpi-grid strong {
  color: var(--verde-bosque);
  font-family: "The Seasons", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

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

.dropzone {
  place-items: center;
  min-height: 150px;
  padding: 22px;
  border: 1px dashed rgba(32, 73, 44, 0.32);
  background: var(--blanco-calido);
  text-align: center;
  cursor: pointer;
}

.dropzone.is-dragging {
  border-color: var(--dorado);
  background: rgba(189, 157, 97, 0.08);
}

.dropzone input {
  display: none;
}

.dropzone small {
  color: var(--verde-oliva);
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-line input {
  width: auto;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-list-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.admin-list-item img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

.admin-list-item h3 {
  margin-bottom: 4px;
  color: var(--verde-bosque);
  font-size: 1.45rem;
}

.admin-list-item p {
  color: var(--verde-oliva);
  font-size: 0.96rem;
  line-height: 1.4;
}

.admin-list-item small {
  color: var(--dorado);
}

.admin-actions {
  display: flex;
  gap: 8px;
}

.site-footer {
  background: var(--verde-bosque);
  color: var(--beige);
  border-top: 1px solid rgba(189, 157, 97, 0.35);
}

.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-inner img {
  width: 220px;
}

.footer-inner div {
  display: grid;
  gap: 4px;
}

.footer-inner a {
  color: var(--dorado);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 14px;
  pointer-events: none;
}

.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(234, 226, 208, 0.5);
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 48px rgba(24, 55, 35, 0.28);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(24, 55, 35, 0.36);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

.whatsapp-chat {
  width: min(360px, calc(100vw - 32px));
  max-height: calc(100svh - 116px);
  overflow: hidden;
  border: 1px solid rgba(189, 157, 97, 0.34);
  border-radius: var(--radius);
  background: var(--beige);
  color: var(--verde-bosque);
  box-shadow: 0 24px 72px rgba(24, 55, 35, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 220ms ease, transform 220ms ease;
}

.whatsapp-widget.is-open .whatsapp-chat {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.whatsapp-chat-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 16px 15px;
  background: var(--verde-bosque);
  color: var(--beige);
  border-bottom: 1px solid rgba(189, 157, 97, 0.42);
}

.whatsapp-chat-header strong {
  display: block;
  font-family: "The Seasons", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.whatsapp-chat-header p {
  margin-top: 3px;
  color: var(--blanco-calido);
  font-size: 0.86rem;
  line-height: 1.25;
}

.whatsapp-chat-header span:not(.whatsapp-avatar) {
  display: inline-block;
  margin-top: 7px;
  padding: 4px 8px 3px;
  border: 1px solid rgba(189, 157, 97, 0.42);
  border-radius: 999px;
  color: var(--dorado);
  font-size: 0.72rem;
  line-height: 1;
}

.whatsapp-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
}

.whatsapp-avatar svg {
  width: 25px;
  height: 25px;
}

.whatsapp-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(234, 226, 208, 0.4);
  border-radius: 999px;
  background: transparent;
  color: var(--beige);
  font: inherit;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 180ms ease, border-color 180ms ease;
}

.whatsapp-close:hover {
  background: rgba(234, 226, 208, 0.08);
  border-color: rgba(234, 226, 208, 0.64);
}

.whatsapp-chat-body {
  position: relative;
  display: grid;
  gap: 12px;
  max-height: calc(100svh - 216px);
  overflow: auto;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(246, 241, 231, 0.96), rgba(234, 226, 208, 0.92)),
    var(--beige);
}

.whatsapp-date {
  justify-self: center;
  padding: 5px 10px 4px;
  border: 1px solid rgba(32, 73, 44, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.78);
  color: var(--verde-oliva);
  font-size: 0.78rem;
  line-height: 1;
}

.whatsapp-message {
  position: relative;
  display: grid;
  gap: 6px;
  width: calc(100% - 18px);
  padding: 14px 16px 12px;
  border-radius: var(--radius) var(--radius) var(--radius) 2px;
  background: var(--blanco-calido);
  border: 1px solid rgba(32, 73, 44, 0.1);
  box-shadow: 0 10px 28px rgba(24, 55, 35, 0.08);
  font-size: 0.96rem;
  line-height: 1.45;
}

.whatsapp-message::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: var(--blanco-calido);
  border-left: 1px solid rgba(32, 73, 44, 0.1);
  border-bottom: 1px solid rgba(32, 73, 44, 0.1);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.whatsapp-input-label {
  margin-bottom: -8px;
  color: var(--verde-oliva);
  font-size: 0.84rem;
  font-weight: 400;
  text-transform: uppercase;
}

.whatsapp-input {
  width: 100%;
  min-height: 86px;
  padding: 13px 14px 11px;
  border: 1px solid rgba(32, 73, 44, 0.16);
  border-radius: var(--radius);
  background: var(--blanco-calido);
  color: var(--verde-bosque);
  box-shadow: 0 10px 28px rgba(24, 55, 35, 0.06);
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.45;
  resize: vertical;
}

.whatsapp-input:focus {
  outline: 2px solid rgba(189, 157, 97, 0.45);
  outline-offset: 2px;
}

.whatsapp-input::placeholder {
  color: rgba(98, 124, 99, 0.72);
}

.whatsapp-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.whatsapp-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px 10px;
  border-radius: var(--radius);
  background: #25d366;
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
  touch-action: manipulation;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.24);
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-start:hover {
  transform: translateY(-1px);
  background: #20bd5a;
}

.whatsapp-note {
  color: var(--verde-oliva);
  font-size: 0.84rem;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 980px) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 3rem;
  }

  .value-grid,
  .service-grid,
  .process-grid,
  .mission-grid,
  .split,
  .image-copy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .ebook-card,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-section {
    padding: 54px 0 66px;
  }

  .checkout-heading {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
  }

  .checkout-heading .muted {
    margin-inline: auto;
  }

  .checkout-summary {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-summary .checkout-cover {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }

  .checkout-summary-copy,
  .checkout-payment {
    justify-items: center;
  }

  .checkout-summary-copy > p:not(.section-kicker) {
    margin-inline: auto;
  }

  .checkout-price {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .checkout-payment-head {
    justify-content: center;
    text-align: left;
  }

  .ebook-cover {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .ebook-card-content {
    justify-items: center;
  }

  .ebook-card-content > p:not(.section-kicker):not(.tiny-note),
  .ebook-card .tiny-note {
    max-width: 58ch;
    margin-inline: auto;
  }

  .price-line,
  .ebook-actions {
    justify-content: center;
  }

  .ebook-actions {
    width: min(100%, 220px);
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(32, 73, 44, 0.12);
  }

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

  .admin-shell .dashboard-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .reverse figure {
    order: 0;
  }

  .page-hero h1 {
    font-size: 3.8rem;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  h3 {
    font-size: 1.7rem;
  }

  .container,
  .footer-inner {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    min-height: 74px;
    padding: 12px 16px;
  }

  .brand-link {
    width: 140px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    width: min(100% - 32px, 760px);
    padding: 94px 0 54px;
  }

  .hero-copy,
  .page-hero p:last-child {
    font-size: 1.08rem;
  }

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

  .hero-logo {
    width: 330px;
    right: -90px;
    bottom: 8px;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    min-height: 390px;
  }

  .page-hero-inner {
    padding: 62px 0;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .value-card,
  .service-grid article,
  .process-grid article,
  .contact-card,
  .contact-form {
    padding: 24px;
  }

  .auth-panel,
  .ebook-card,
  .checkout-card,
  .dashboard-panel {
    padding: 24px;
  }

  .checkout-heading h1 {
    font-size: 2.65rem;
  }

  .checkout-summary-copy h2,
  .checkout-payment h2 {
    font-size: 2rem;
  }

  .checkout-payment-head {
    align-items: center;
  }

  .paypal-box {
    width: 100%;
  }

  .ebook-card {
    gap: 22px;
  }

  .ebook-cover {
    aspect-ratio: 4 / 3;
  }

  .ebook-card h3 {
    font-size: 2.45rem;
  }

  .ebook-card .btn {
    width: 100%;
    min-width: 0;
  }

  .dashboard-main {
    padding: 24px;
  }

  .dashboard-topbar,
  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-list-item {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .admin-actions {
    grid-column: 1 / -1;
  }

  .cta-panel {
    padding: 34px 22px;
  }

  .quote-section blockquote {
    font-size: 2.75rem;
  }

  .footer-inner {
    min-height: auto;
    padding: 34px 0;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-inner img {
    width: 190px;
    margin-inline: auto;
  }

  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .whatsapp-chat {
    width: min(330px, calc(100vw - 28px));
    max-height: min(390px, calc(100svh - 150px));
    border-radius: 12px;
  }

  .whatsapp-chat-header {
    gap: 10px;
    padding: 12px;
  }

  .whatsapp-chat-header strong {
    font-size: 1.16rem;
  }

  .whatsapp-chat-header p {
    font-size: 0.78rem;
  }

  .whatsapp-chat-header span:not(.whatsapp-avatar) {
    display: none;
  }

  .whatsapp-avatar {
    width: 36px;
    height: 36px;
  }

  .whatsapp-avatar svg {
    width: 22px;
    height: 22px;
  }

  .whatsapp-close {
    width: 32px;
    height: 32px;
  }

  .whatsapp-chat-body {
    gap: 9px;
    max-height: min(270px, calc(100svh - 310px));
    padding: 12px;
  }

  .whatsapp-date {
    padding: 4px 9px 3px;
    font-size: 0.72rem;
  }

  .whatsapp-message {
    width: 100%;
    gap: 4px;
    padding: 11px 12px 10px;
    font-size: 0.9rem;
    line-height: 1.36;
  }

  .whatsapp-input-label {
    margin-bottom: -5px;
    font-size: 0.76rem;
  }

  .whatsapp-input {
    min-height: 64px;
    padding: 10px 11px 9px;
    font-size: 0.88rem;
    line-height: 1.34;
  }

  .whatsapp-start {
    min-height: 42px;
    padding: 10px 14px 9px;
  }

  .whatsapp-note {
    font-size: 0.76rem;
  }

  .section-heading,
  .page-hero-inner,
  .long-copy,
  .split,
  .image-copy-grid,
  .mission-grid article,
  .value-card,
  .service-grid article,
  .process-grid article,
  .contact-card,
  .contact-form,
  .shop-shell,
  .ebook-card,
  .checkout-card,
  .dashboard-panel,
  .footer-inner {
    text-align: center;
  }

  .section-heading,
  .long-copy,
  .narrow,
  .page-hero p:last-child,
  .statement-inner p:last-child,
  .split p,
  .image-copy-grid p,
  .mission-grid p,
  .service-grid p,
  .process-grid p,
  .contact-card img,
  .contact-form .title-icon,
  .panel-heading .title-icon,
  .title-icon,
  .card-icon {
    margin-inline: auto;
  }

  .service-list p {
    justify-content: center;
    text-align: center;
  }

  .service-list .list-icon {
    margin-inline: 0;
  }

  .contact-form label {
    text-align: center;
  }

  input,
  textarea {
    text-align: left;
  }

  .btn,
  .text-link {
    margin-inline: auto;
  }

  .dashboard-nav a,
  .dashboard-logout,
  .icon-text-button,
  .form-actions {
    justify-content: center;
  }

  .auth-logo,
  .dashboard-logo {
    margin-inline: auto;
  }
}

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

  .page-transition,
  .page-transition__water,
  .page-transition__foam,
  .site-nav::after {
    animation: none;
    transition: none;
  }

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