:root {
  --purple: #483380;
  --violet: #896eb8;
  --lilac: #d7c4e5;
  --turq: #33afb1;
  --aqua: #e5f2ef;
  --ink: #272238;
  --muted: #6f6a7e;
  --white: #fff;
  --shadow: 0 20px 55px rgba(72, 51, 128, 0.12);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  background: #fff;
  line-height: 1.65;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
textarea,
select {
  font: inherit;
}
.hidden {
  display: none;
}
.nav {
  height: 100px;
  padding: 12px clamp(50px, 2vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(72, 51, 128, 0.08);
}
.brand img {
  height: 250px;
  width: auto;
  display: block;
  margin-top: 20px;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 15px;
  font-weight: 700;
}
.nav nav a:not(.nav-cta) {
  color: #433b55;
}
.nav nav a:not(.nav-cta):hover {
  color: var(--turq);
}
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(72, 51, 128, 0.18);
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  color: var(--purple);
}
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  padding: 70px clamp(24px, 7vw, 110px);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fff 56%, var(--aqua) 100%);
}
.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 2.4px;
  font-weight: 800;
  color: var(--turq);
}
.section-kicker.light {
  color: #a8ece9;
}
.hero h1 {
  font-family: "Fredoka", sans-serif;
  color: var(--purple);
  font-size: clamp(62px, 8vw, 112px);
  line-height: 0.92;
  margin: 18px 0 28px;
  letter-spacing: -3px;
}
.hero h1 span {
  color: var(--turq);
}
.hero-lead {
  font-size: 18px;
  max-width: 600px;
  color: #5f596d;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  border: 2px solid transparent;
  transition:
    0.2s transform,
    0.2s box-shadow,
    0.2s background;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 12px 28px rgba(72, 51, 128, 0.22);
}
.btn-primary:hover {
  box-shadow: 0 15px 32px rgba(72, 51, 128, 0.28);
}
.btn-ghost {
  border-color: var(--lilac);
  color: var(--purple);
  background: #fff;
}
.btn-white {
  background: #fff;
  color: var(--purple);
}
.btn-full {
  width: 100%;
  border: 0;
  cursor: pointer;
}
.hero-pills {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-pills span {
  background: #fff;
  border: 1px solid rgba(72, 51, 128, 0.09);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #575164;
}
.hero-art {
  height: 530px;
  position: relative;
}
.sun {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--lilac);
  position: absolute;
  right: 6%;
  top: 6%;
  opacity: 0.8;
}
.blob {
  position: absolute;
  border-radius: 45% 55% 55% 45%;
  filter: drop-shadow(0 25px 30px rgba(72, 51, 128, 0.1));
}
.blob-a {
  width: 350px;
  height: 330px;
  background: var(--violet);
  right: 5%;
  bottom: 4%;
  transform: rotate(-12deg);
}
.blob-b {
  width: 220px;
  height: 220px;
  background: var(--turq);
  right: 34%;
  top: 23%;
  transform: rotate(20deg);
  opacity: 0.9;
}
.dog-card {
  position: absolute;
  z-index: 2;
  right: 10%;
  top: 5%;
  width: min(500px, 90%);
  height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.dog-card:before {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 300px;
  background: var(--aqua);
  border-radius: 80%;
}
.dog-logo {
  position: relative;
  width: 90%;
  height: auto;
  max-height: 230px;
  object-fit: contain;
}
.day-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr; /* más espacio para el perro */
  gap: 30px;                          /* menos separación */
  align-items: center;                 /* centra verticalmente ambos */
  margin-top: 40px;
}

.cuadro-dog {
  display: flex;
  justify-content: flex-start;  /* ✅ mueve la imagen hacia la izquierda */
  align-items: center;
}

.dog-dia {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.dog-caption {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 5px;
  color: var(--purple);
}
.dog-caption span {
  font-size: 12px;
  color: var(--muted);
}
.floating-note {
  position: absolute;
  z-index: 4;
  background: #fff;
  border-radius: 18px;
  padding: 12px 15px;
  box-shadow: 0 15px 35px rgba(72, 51, 128, 0.15);
  font-size: 11px;
  line-height: 1.35;
}
.note-a {
  left: 3%;
  bottom: 14%;
}
.note-b {
  right: 0;
  top: 7%;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--purple);
  color: #fff;
  padding: 25px clamp(24px, 7vw, 110px);
  gap: 20px;
}
.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.trust-strip > div:last-child {
  border: 0;
}
.trust-strip strong {
  font-family: "Fredoka";
  font-size: 28px;
  color: #fff;
}
.trust-strip span {
  font-size: 10px;
  line-height: 1.35;
  opacity: 0.78;
}
.section {
  padding: 100px clamp(24px, 7vw, 110px);
}
.intro {
  background: #fff;
}
.split-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 18px 0 50px;
}
.intro-text h2 {
  font-family: "Fredoka";
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.03;
  color: var(--purple);
  margin: 0;
}
.intro-paragraph p {
  text-align: center;          /* ✅ centrado en su columna */
  font-size: 18px;             /* más grande */
  line-height: 1.7;            /* más aire */
  font-weight: 600;            /* más presencia */
  color: var(--violet);        /* color llamativo */
  background: var(--aqua);     /* fondo suave */
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(72, 51, 128, 0.12); /* sombra ligera */
}
.split-heading h2,
.section > h2 {
  font-family: "Fredoka";
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.03;
  color: var(--purple);
  margin: 0;
  letter-spacing: -1.4px;
}
.split-heading h2 em,
.section > h2 em {
  font-style: normal;
  color: var(--violet);
}
.split-heading p {
  color: var(--muted);
  max-width: 550px;
  margin: 0;
  flex: 1;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(72, 51, 128, 0.08);
  box-shadow: 0 8px 28px rgba(72, 51, 128, 0.05);
}
.feature:nth-child(2n) {
  background: var(--aqua);
}
.icon {
  font-size: 30px;
  margin-bottom: 14px;
}
.feature h3 {
  margin: 0 0 7px;
  color: var(--purple);
  font-size: 17px;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.profile-section {
  padding: 100px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 90px;
  align-items: center;
  background: var(--purple);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.profile-section:after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--violet);
  right: -140px;
  bottom: -180px;
  opacity: 0.55;
}
.profile-copy {
  position: relative;
  z-index: 1;
}
.profile-copy h2 {
  font-family: "Fredoka";
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1;
  color: #fff;
  margin: 15px 0 20px;
}
.profile-copy p {
  max-width: 610px;
  color: #e9e4f2;
}
.profile-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.profile-tags span {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
}
.profile-card {
  position: relative;
  z-index: 2;
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
}
.profile-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
}
.mini-label {
  color: var(--violet);
  letter-spacing: 1px;
}
.status {
  color: var(--turq);
}
.profile-name {
  font-family: "Fredoka";
  font-size: 38px;
  color: var(--purple);
  margin: 18px 0;
}
.profile-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding: 10px 0;
  font-size: 12px;
}
.profile-row b {
  color: var(--purple);
}
.profile-card small {
  display: block;
  color: #999;
  font-size: 9px;
  margin-top: 12px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(72, 51, 128, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(72, 51, 128, 0.05);
  min-height: 280px;
}
.service-card.featured {
  background: var(--aqua);
  border-color: transparent;
}
.service-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--turq);
}
.service-icon {
  font-size: 28px;
  margin: 15px 0 3px;
}
.service-card h3 {
  font-family: "Fredoka";
  color: var(--purple);
  font-size: 25px;
  margin: 0;
}
.price {
  font-family: "Fredoka";
  font-size: 34px;
  color: var(--purple);
  margin: 5px 0;
}
.price small {
  font-family: "Montserrat";
  font-size: 11px;
  color: var(--muted);
}
.service-card p {
  font-size: 12px;
  color: var(--muted);
  min-height: 42px;
}
.service-card a {
  font-size: 12px;
  color: var(--turq);
  font-weight: 800;
}
.big-copy {
  font-size: 14px !important;
  margin-top: 15px;
}
.muted {
  color: #999 !important;
  font-size: 10px !important;
}
.membership {
  background: linear-gradient(135deg, var(--purple), #5a3e94);
  padding: 90px clamp(24px, 7vw, 110px);
  color: #fff;
}
.membership-head {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 38px;
}
.membership h2 {
  font-family: "Fredoka";
  font-size: clamp(50px, 6vw, 80px);
  line-height: 0.98;
  margin: 15px 0 0;
}
.membership h2 span {
  color: #aeeeed;
}
.membership-head p {
  color: #ded6ec;
}
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.plan {
  position: relative;
  background: #fff;
  color: var(--ink);
  border-radius: 25px;
  padding: 28px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.plan > span {
  font-weight: 800;
  color: var(--violet);
  font-size: 12px;
  letter-spacing: 1px;
}
.plan strong {
  font-family: "Fredoka";
  font-size: 38px;
  color: var(--purple);
  margin-top: 20px;
}
.plan small {
  font-size: 10px;
  color: #888;
}
.plan p {
  font-size: 12px;
  color: var(--muted);
}
.plan a {
  margin-top: auto;
  color: var(--turq);
  font-size: 12px;
  font-weight: 800;
}
.plan-highlight {
  background: var(--turq);
  color: #fff;
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}
.plan-highlight > span,
.plan-highlight strong,
.plan-highlight a {
  color: #fff;
}
.plan-highlight p,
.plan-highlight small {
  color: #e4ffff;
}
.star {
  position: absolute;
  right: 18px;
  top: 18px;
  background: #fff;
  color: var(--turq);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
}
.day-section {
  background: #fdfcff;
}
.timeline {
  max-width: 900px;
  margin: 45px auto 0;
  border-left: 3px solid var(--lilac);
  padding-left: 25px;
}
.time {
  display: grid;
  grid-template-columns: 100px 50px 1fr;
  align-items: center;
  gap: 15px;
  position: relative;
  padding: 16px 0;
}
.time:before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--turq);
  left: -32px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--turq);
}
.time > b {
  font-size: 11px;
  color: var(--purple);
}
.time > span {
  font-size: 23px;
}
.time h3 {
  margin: 0;
  color: var(--purple);
  font-size: 15px;
}
.time p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.process {
  padding: 95px clamp(24px, 7vw, 110px);
  background: var(--violet);
  color: #fff;
}
.process h2 {
  font-family: "Fredoka";
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.98;
  margin: 15px 0 45px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.process-grid > div {
  border-top: 2px solid rgba(255, 255, 255, 0.35);
  padding-top: 18px;
}
.process-grid b {
  font-family: "Fredoka";
  font-size: 22px;
  color: #dffaf9;
}
.process-grid h3 {
  font-size: 13px;
  margin: 10px 0 4px;
}
.process-grid p {
  font-size: 10px;
  color: #eee0ff;
  line-height: 1.45;
}
.safety {
  background: var(--aqua);
}
.safety-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  margin-top: 35px;
  align-items: center;
}
.safety h2 {
  font-family: "Fredoka";
  font-size: clamp(40px, 5vw, 65px);
  line-height: 1.02;
  color: var(--purple);
  margin: 0 0 20px;
}
.safety p {
  color: var(--muted);
  max-width: 650px;
}
.quote {
  font-family: "Fredoka";
  font-size: 25px;
  color: var(--turq);
  margin-top: 25px;
}
.safety-list {
  background: #fff;
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.safety-list div {
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
}
.safety-list div:last-child {
  border: 0;
}
.family {
  padding: 110px 24px;
  background: var(--purple);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* forma base del corazón */
.heart {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--turq);
  transform: rotate(-45deg);
  opacity: 0.7;
}
.heart::before,
.heart::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--turq);
  border-radius: 50%;
}
.heart::before {
  top: -50px;
  left: 0;
}
.heart::after {
  top: 0;
  left: 50px;
}

/* posiciones */
.heart-left {
  left: 100px;
  top: 100px;
}
.heart-right {
  right: 100px;
  bottom: 100px;
}
/* corazón izquierdo */
.family::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -80px;
  width: 100px;
  height: 100px;
  background: var(--turq);
  transform: rotate(-45deg);
  opacity: 0.25;
}
.family::before,
.family::after {
  border-radius: 0; /* quitamos el círculo */
}
.family::before {
  border-radius: 0;
}
.family::before::after,
.family::before::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--turq);
  border-radius: 50%;
}
.family::before::before {
  top: -50px;
  left: 0;
}
.family::before::after {
  top: 0;
  left: 50px;
}

/* corazón derecho */
.family::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 100px;
  height: 100px;
  background: var(--turq);
  transform: rotate(-45deg);
  opacity: 0.25;
}
.family::after::before,
.family::after::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--turq);
  border-radius: 50%;
}
.family::after::before {
  top: -50px;
  left: 0;
}
.family::after::after {
  top: 0;
  left: 50px;
}

.family-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: auto;
}
.family h2 {
  font-family: "Fredoka";
  font-size: clamp(54px, 7vw, 95px);
  line-height: 1;
  margin: 18px 0;
}
.family p {
  color: #e5dff0;
  max-width: 580px;
  margin: 0 auto 30px;
}
.faq-section h2 {
  font-family: "Fredoka";
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--purple);
  margin: 15px 0 45px;
}
.faq-section h2 em {
  font-style: normal;
  color: var(--violet);
}
.faq {
  max-width: 900px;
}
.faq details {
  border-top: 1px solid #ddd;
  padding: 21px 0;
}
.faq details:last-child {
  border-bottom: 1px solid #ddd;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--purple);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  color: var(--turq);
  font-size: 22px;
}
.faq details[open] summary:after {
  content: "−";
}
.faq p {
  color: var(--muted);
  font-size: 12px;
  max-width: 750px;
}
.agenda {
  background: #faf8fd;
}
.agenda-card {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  background: var(--purple);
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(72, 51, 128, 0.22);
}
.agenda-copy {
  padding: 55px;
  color: #fff;
}
.agenda-copy h2 {
  font-family: "Fredoka";
  font-size: clamp(46px, 5vw, 67px);
  line-height: 0.98;
  margin: 15px 0;
}
.agenda-copy p {
  color: #e7e0f0;
}
.mini-benefits {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.mini-benefits span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 10px;
}
.contact-form {
  background: #fff;
  padding: 45px;
}
.contact-form label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 13px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 5px;
  border: 1px solid #e4dfeb;
  border-radius: 13px;
  padding: 12px 13px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--turq);
  box-shadow: 0 0 0 3px rgba(51, 175, 177, 0.1);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form small {
  display: block;
  color: #999;
  font-size: 9px;
  margin-top: 12px;
}
footer {
  background: #21183c;
  color: #fff;
  padding: 60px clamp(24px, 7vw, 110px) 22px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 35px;
  position: relative;
}
.footer-brand img {
  width: 210px;
  background: #fff;
  max-width: 100%;
}
.footer-brand p {
  color: #bfb4d2;
  font-family: "Fredoka";
  font-size: 18px;
}
.footer-brand + div h4,
footer > div h4 {
  font-size: 10px;
  letter-spacing: 1.6px;
  color: #7ee4e1;
  margin: 0 0 15px;
}
.footer-brand + div a,
footer > div a,
footer > div span {
  display: block;
  font-size: 11px;
  color: #d8d1e3;
  margin: 8px 0;
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  color: #9f95b1;
  font-size: 9px;
}
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--turq);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  z-index: 45;
  box-shadow: 0 15px 30px rgba(51, 175, 177, 0.35);
}
@media (max-width: 1000px) {
  .nav nav {
    gap: 12px;
  }
  .nav nav a:not(.nav-cta) {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav nav {
    position: absolute;
    right: 20px;
    top: 72px;
    background: #fff;
    border-radius: 18px;
    padding: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    min-width: 220px;
  }
  .nav nav.open {
    display: flex;
  }
  .nav nav a:not(.nav-cta) {
    display: block;
    padding: 8px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-art {
    height: 430px;
  }
  .dog-card {
    right: 15%;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .safety-layout {
    grid-template-columns: 1fr;
  }
  .agenda-card {
    grid-template-columns: 1fr;
  }
  .footer-brand + div,
  footer > div:not(.footer-brand):not(.footer-bottom) {
    min-width: 0;
  }
}
@media (max-width: 650px) {
  .nav {
    height: 72px;
  }
  .brand img {
    height: 48px;
  }
  .hero {
    padding-top: 50px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 64px;
    letter-spacing: -2px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-art {
    height: 360px;
  }
  .dog-card {
    width: 270px;
    height: 280px;
    right: 8%;
    top: 13%;
  }
  .dog-logo {
    max-height: 160px;
  }
  .floating-note {
    font-size: 9px;
  }
  .note-a {
    left: 0;
  }
  .note-b {
    right: -5px;
  }
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 24px;
  }
  .trust-strip > div {
    border: 0;
  }
  .section,
  .profile-section,
  .membership,
  .process {
    padding: 70px 22px;
  }
  .split-heading,
  .membership-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-grid,
  .service-grid,
  .plans {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 0;
  }
  .plan-highlight {
    transform: none;
  }
  .profile-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .time {
    grid-template-columns: 75px 35px 1fr;
    gap: 8px;
  }
  .timeline {
    padding-left: 15px;
  }
  .time:before {
    left: -22px;
  }
  .agenda-card {
    border-radius: 25px;
  }
  .agenda-copy,
  .contact-form {
    padding: 32px 24px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand,
  footer .footer-bottom {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
