/* =========================================================
   Woofyland · Peluquería canina premium
   Colores inspirados en el logo (azul + verdes), en versión suave.
   ========================================================= */

:root {
  --bg: #FAF8F4;
  --surface: #FFFFFF;
  --sand: #F3EFE8;
  --mint: #E6F2EC;
  --ink: #1E2C47;          /* azul noche, títulos y botones */
  --blue: #3A5DAB;         /* azul del logo */
  --green: #3E9E78;        /* verde del logo, algo más profundo */
  --green-soft: #BFE3D2;
  --text: #37404F;
  --muted: #6D7483;
  --line: rgba(30, 44, 71, .10);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 2px 10px rgba(30, 44, 71, .05);
  --shadow: 0 18px 40px -18px rgba(30, 44, 71, .18);
  --shadow-lg: 0 30px 60px -24px rgba(30, 44, 71, .28);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-weight: 500; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Tipografía ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow--light { color: var(--green-soft); }

.section__title,
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.01em;
}
.section__title { font-size: clamp(34px, 4.4vw, 52px); }
.section__title em,
.hero__title em { font-style: italic; color: var(--blue); }

.section__lead {
  margin-top: 18px;
  max-width: 560px;
  font-size: 17px;
  color: var(--muted);
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s, color .35s, border-color .35s;
  font-family: inherit;
}
.btn--primary { background: var(--ink); color: #fff; box-shadow: 0 10px 24px -12px rgba(30, 44, 71, .6); }
.btn--primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(58, 93, 171, .6); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--block { width: 100%; }

.link-arrow { font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 4px; transition: border-color .3s, color .3s; white-space: nowrap; }
.link-arrow:hover { color: var(--blue); border-color: var(--blue); }

/* ---------- Cabecera ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .4s, box-shadow .4s, height .4s var(--ease);
}
.header.is-scrolled {
  --header-h: 70px;
  background: rgba(250, 248, 244, .86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: inline-flex; align-items: center; }
.logo__img { height: 68px; width: auto; transition: height .4s var(--ease); }
.header.is-scrolled .logo__img { height: 56px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__link { font-size: 15px; font-weight: 500; color: var(--ink); position: relative; }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { padding: 12px 22px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 13px; right: 13px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease), top .35s var(--ease);
}
.burger span:first-child { top: 17px; }
.burger span:last-child { top: 25px; }
.burger[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 90px;
  background:
    radial-gradient(900px 500px at 85% 10%, var(--mint), transparent 70%),
    radial-gradient(700px 400px at 0% 100%, var(--sand), transparent 70%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }
.hero__title { font-size: clamp(44px, 6vw, 78px); }
.hero__lead { margin-top: 26px; font-size: 18px; color: var(--muted); max-width: 500px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero__trust { display: flex; gap: 40px; margin-top: 54px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero__trust strong { display: block; font-family: var(--serif); font-size: 34px; font-weight: 500; color: var(--ink); line-height: 1; }
.hero__trust span { font-size: 13px; color: var(--muted); }

.hero__media { position: relative; }
.hero__img {
  border-radius: 200px 200px var(--radius) var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; animation: slowZoom 18s ease-in-out infinite alternate; }

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 16px 20px;
  animation: float 6s ease-in-out infinite;
}
.float-card--top { top: 14%; left: -40px; display: flex; align-items: center; gap: 14px; }
.float-card--top strong { display: block; color: var(--ink); font-size: 15px; }
.float-card--top span { font-size: 13px; color: var(--muted); }
.float-card__icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--mint);
}
.float-card__icon svg { width: 20px; height: 20px; fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.float-card--bottom { right: -30px; bottom: 10%; max-width: 250px; animation-delay: -3s; }
.float-card--bottom p { font-family: var(--serif); font-size: 19px; line-height: 1.3; color: var(--ink); margin: 6px 0 8px; }
.float-card__author { font-size: 12px; color: var(--muted); }
.stars { color: #D6A94A; letter-spacing: 2px; font-size: 13px; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.07); } }

/* ---------- Valores ---------- */
.values { padding: 20px 0 30px; }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  padding: 40px;
}
.value { padding: 0 10px; }
.value + .value { border-left: 1px solid var(--line); padding-left: 30px; }
.value svg { width: 26px; height: 26px; fill: none; stroke: var(--green); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 14px; }
.value h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.value p { font-size: 14px; color: var(--muted); }

/* ---------- Secciones ---------- */
.section { padding: 120px 0; }
.section--tight { padding: 90px 0; }
.section--sand { background: var(--sand); }
.section--dark { background: var(--ink); color: rgba(255, 255, 255, .72); }
.section--dark .section__title { color: #fff; }
.section--dark .section__title em { color: var(--green-soft); }

.section__head { margin-bottom: 60px; }
.section__head--center { text-align: center; }
.section__head--center .section__lead { margin-left: auto; margin-right: auto; }
.section__head--center .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }

/* ---------- Tarjetas ---------- */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* ---------- Servicios ---------- */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service { overflow: hidden; display: flex; flex-direction: column; }
.service__img { aspect-ratio: 4 / 3.4; overflow: hidden; background: var(--sand); }
.service__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.service:hover .service__img img { transform: scale(1.06); }
.service__body { padding: 26px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.service__body h3 { font-family: var(--serif); font-size: 27px; margin-bottom: 10px; }
.service__body p { font-size: 14.5px; color: var(--muted); flex: 1; }
.service__meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}
.price { font-weight: 600; color: var(--ink); font-size: 15px; }

.extras {
  margin-top: 40px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px 22px;
  padding: 22px 28px;
  border-radius: 999px;
  background: var(--mint);
}
.extras__label { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--green); }
.extras ul { display: flex; flex-wrap: wrap; gap: 8px; }
.extras li { font-size: 14px; background: var(--surface); padding: 7px 16px; border-radius: 999px; color: var(--ink); }

/* ---------- Resultados reales ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.feature__img { min-height: 460px; overflow: hidden; }
.feature__img img { width: 100%; height: 100%; object-fit: cover; object-position: 25% 65%; transition: transform 1.2s var(--ease); }
.feature:hover .feature__img img { transform: scale(1.04); }
.feature__body { padding: 56px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.feature__tag { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--green); background: var(--mint); padding: 7px 14px; border-radius: 999px; }
.feature__body h3 { font-family: var(--serif); font-size: clamp(30px, 3.4vw, 42px); line-height: 1.1; margin: 22px 0 16px; }
.feature__body > p { color: var(--muted); }
.feature__facts { display: flex; gap: 30px; margin: 30px 0 34px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); width: 100%; }
.feature__facts strong { display: block; font-family: var(--serif); font-size: 32px; font-weight: 500; color: var(--ink); line-height: 1; }
.feature__facts span { font-size: 13px; color: var(--muted); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 290px;
  grid-auto-flow: dense;
  gap: 20px;
}
.gallery__item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity .4s, transform .4s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: none; }

/* ---------- Experiencia ---------- */
.exp { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.exp__media { position: relative; padding: 0 60px 70px 0; }
.exp__img { border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.exp__img--main { width: 100%; aspect-ratio: 4 / 5; }
.exp__img--small {
  position: absolute;
  right: 0; bottom: 0;
  width: 46%;
  aspect-ratio: 1;
  border: 8px solid var(--bg);
  box-shadow: var(--shadow-lg);
}
.exp__badge {
  position: absolute;
  top: 36px; right: 20px;
  width: 128px; height: 128px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  animation: float 7s ease-in-out infinite;
}
.exp__badge strong { font-family: var(--serif); font-size: 42px; font-weight: 500; line-height: 1; }
.exp__badge span { font-size: 12px; line-height: 1.35; opacity: .8; margin-top: 4px; }

.steps { margin-top: 40px; display: grid; gap: 4px; }
.step { display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step__num { font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--green); min-width: 34px; }
.step h3 { font-family: var(--sans); font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.step p { font-size: 15px; color: var(--muted); }

/* ---------- Compromisos ---------- */
.promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255, 255, 255, .1); border-radius: var(--radius); overflow: hidden; }
.promise { background: var(--ink); padding: 40px 36px; transition: background .4s; }
.promise:hover { background: #24345A; }
.promise span { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--green-soft); }
.promise h3 { color: #fff; font-family: var(--serif); font-size: 26px; margin: 12px 0 10px; }
.promise p { font-size: 15px; }

/* ---------- Opiniones ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { margin: 0; padding: 36px 32px; display: flex; flex-direction: column; }
.testimonial p { font-family: var(--serif); font-size: 22px; line-height: 1.4; color: var(--ink); margin: 16px 0 28px; flex: 1; }
.testimonial footer { display: flex; align-items: center; gap: 14px; }
.testimonial footer strong { display: block; color: var(--ink); font-size: 15px; }
.testimonial footer span { font-size: 13px; color: var(--muted); }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--mint); color: var(--green);
  font-family: var(--serif); font-size: 20px;
}

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 50px 26px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--blue); }
.faq__item summary::after {
  content: "";
  position: absolute; right: 6px; top: 50%;
  width: 12px; height: 12px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform .4s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__item p { padding: 0 50px 26px 0; color: var(--muted); animation: fadeDown .45s var(--ease); }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- Reserva ---------- */
.booking {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.booking__info {
  background:
    radial-gradient(500px 300px at 100% 0%, rgba(62, 158, 120, .35), transparent 70%),
    var(--ink);
  color: rgba(255, 255, 255, .75);
  padding: 64px 56px;
}
.booking__info .section__title { color: #fff; margin-bottom: 20px; }
.booking__info .section__title em { color: var(--green-soft); }
.contact-list { margin-top: 40px; display: grid; gap: 20px; }
.contact-list li { font-size: 15px; }
.contact-list span { display: block; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--green-soft); margin-bottom: 2px; }
.contact-list a:hover { color: #fff; }

.form { padding: 56px; display: grid; gap: 18px; align-content: start; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field > span { font-size: 13px; font-weight: 600; color: var(--ink); }
.field em { font-weight: 400; color: var(--muted); font-style: normal; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color .3s, box-shadow .3s, background .3s;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%231E2C47' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--green); background: var(--surface); box-shadow: 0 0 0 4px rgba(62, 158, 120, .12); }
.field.is-invalid input,
.field.is-invalid select { border-color: #C9665A; }
.form__note { font-size: 13px; color: var(--muted); text-align: center; }
.form__success {
  background: var(--mint);
  color: var(--ink);
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  text-align: center;
  animation: fadeDown .5s var(--ease);
}

/* ---------- Pie ---------- */
.footer { padding: 80px 0 30px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.logo--footer .logo__img { height: 110px; }
.footer__brand p { margin-top: 12px; color: var(--muted); max-width: 280px; font-size: 15px; }
.footer h4 { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.footer p { font-size: 15px; color: var(--muted); }
.footer a:hover { color: var(--blue); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 60px; padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}

/* ---------- WhatsApp ---------- */
.whatsapp {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 40;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(62, 158, 120, .7);
  transition: transform .35s var(--ease);
}
.whatsapp:hover { transform: scale(1.08); }
.whatsapp svg { width: 26px; height: 26px; fill: #fff; }

/* ---------- Animación de aparición ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { gap: 50px; }
  .float-card--top { left: -16px; }
  .float-card--bottom { right: -12px; }
  .exp { gap: 60px; }
  .feature__body { padding: 44px; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .logo__img { height: 54px; }
  .header.is-scrolled .logo__img { height: 50px; }

  .burger { display: block; z-index: 2; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: var(--bg);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav__link { font-family: var(--serif); font-size: 32px; }
  .nav__cta { margin-top: 10px; padding: 15px 34px; }

  .hero { padding: calc(var(--header-h) + 36px) 0 70px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 520px; margin: 0 auto; width: 100%; }

  .values__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 32px; }
  .value + .value { border-left: 0; padding-left: 10px; }

  .section { padding: 90px 0; }
  .section--tight { padding: 70px 0; }
  .section__head--row { flex-direction: column; align-items: flex-start; }

  .feature { grid-template-columns: 1fr; }
  .feature__img { min-height: 0; aspect-ratio: 4 / 3; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery__item--tall + .gallery__item ~ .gallery__item--tall { grid-row: auto; }
  .gallery__item figcaption { opacity: 1; transform: none; }

  .exp { grid-template-columns: 1fr; }
  .exp__media { max-width: 520px; margin: 0 auto; width: 100%; }

  .promises { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .faq { grid-template-columns: 1fr; gap: 40px; }
  .booking { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  body { font-size: 15px; }

  .hero__lead { font-size: 16px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__trust { gap: 22px; justify-content: space-between; }
  .hero__trust strong { font-size: 28px; }
  .hero__img { border-radius: 160px 160px var(--radius) var(--radius); }
  .float-card--top { left: 8px; top: 8%; padding: 12px 14px; }
  .float-card--bottom { right: 8px; bottom: 6%; max-width: 210px; padding: 12px 16px; }
  .float-card--bottom p { font-size: 16px; }

  .values__grid { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }

  .services { grid-template-columns: 1fr; }
  .extras { border-radius: var(--radius); padding: 22px; }

  .feature__body { padding: 32px 24px; }
  .feature__facts { gap: 16px; justify-content: space-between; }
  .feature__facts strong { font-size: 26px; }

  .gallery { grid-auto-rows: 180px; gap: 12px; }
  .gallery__item figcaption { font-size: 11px; padding: 5px 10px; left: 8px; bottom: 8px; }

  .exp__media { padding: 0 30px 50px 0; }
  .exp__badge { width: 100px; height: 100px; top: 20px; right: 0; }
  .exp__badge strong { font-size: 32px; }

  .promises { grid-template-columns: 1fr; }
  .promise { padding: 32px 26px; }


  .booking { border-radius: var(--radius); }
  .booking__info { padding: 44px 26px; }
  .form { padding: 36px 22px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; }
  .whatsapp { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ---------- Mapa ---------- */
.contact-link { color: var(--green-soft); font-weight: 600; white-space: nowrap; }
.map {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  height: 380px;
  background: var(--sand);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.35) contrast(1.02); }
@media (max-width: 560px) { .map { height: 300px; } }

/* ---------- Reseñas de Google ---------- */
.g-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px;
  padding: 10px 20px 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.g-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.g-badge__logo { width: 20px; height: 20px; }
.g-badge__score { font-family: var(--serif); font-size: 24px; color: var(--ink); line-height: 1; }
.g-badge__count { font-size: 13px; color: var(--muted); }
.reviews-cta { text-align: center; margin-top: 44px; }

/* ---------- Servicio destacado ---------- */
.service { position: relative; }
.service--featured { border-color: var(--green-soft); box-shadow: var(--shadow); }
.service__badge {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  background: var(--ink); color: #fff;
  padding: 6px 12px; border-radius: 999px;
}
.service__meta span:first-child { font-size: 12.5px; }

/* ---------- Tabla de precios ---------- */
.pricing {
  margin-top: 56px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 44px 48px;
}
.pricing__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.pricing__head h3 { font-family: var(--serif); font-size: 34px; }
.pricing__head p { color: var(--muted); font-size: 14.5px; max-width: 420px; }
.pricing__row {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.pricing__row:not(.pricing__row--head):hover { background: var(--bg); }
.pricing__row span:not(:first-child) { text-align: center; }
.pricing__row:not(.pricing__row--head) span:first-child { font-weight: 600; color: var(--ink); }
.pricing__row:not(.pricing__row--head) span:not(:first-child) { font-family: var(--serif); font-size: 24px; color: var(--ink); }
.pricing__row--head { padding-top: 0; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.pricing__row--head small { display: block; font-size: 11px; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--muted); margin-top: 2px; }
.pricing__row:last-child { border-bottom: 0; }
.pricing__note { margin-top: 20px; font-size: 13.5px; color: var(--muted); padding: 14px 18px; background: var(--mint); border-radius: 12px; }

/* ---------- Cachorro ---------- */
.puppy {
  margin-top: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 32px;
  border-radius: var(--radius);
  background: var(--sand);
}
.puppy__tag { font-family: var(--serif); font-size: 26px; color: var(--ink); }
.puppy p { color: var(--muted); font-size: 14.5px; margin-top: 4px; max-width: 620px; }
.puppy__side { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.puppy__side .price { font-size: 18px; }

@media (max-width: 900px) {
  .pricing { padding: 32px 26px; }
}
@media (max-width: 560px) {
  .pricing { padding: 26px 16px; }
  .pricing__head h3 { font-size: 28px; }
  .pricing__row { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 6px; padding: 14px 0; }
  .pricing__row:not(.pricing__row--head) span:first-child { font-size: 13.5px; line-height: 1.35; }
  .pricing__row:not(.pricing__row--head) span:not(:first-child) { font-size: 19px; }
  .pricing__row--head { font-size: 10px; letter-spacing: .06em; }
  .pricing__row--head small { font-size: 9.5px; }
  .puppy { flex-direction: column; align-items: flex-start; padding: 24px 22px; }
  .puppy__side { width: 100%; justify-content: space-between; }
}

/* ---------- Recogida y entrega ---------- */
.value__link { color: var(--green); font-weight: 600; border-bottom: 1px solid currentColor; }
.pickup {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 52px 56px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .75);
  background:
    radial-gradient(520px 320px at 100% 0%, rgba(62, 158, 120, .38), transparent 70%),
    radial-gradient(420px 300px at 0% 100%, rgba(58, 93, 171, .45), transparent 70%),
    var(--ink);
  box-shadow: var(--shadow-lg);
}
.pickup__tag { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); background: var(--green-soft); padding: 6px 12px; border-radius: 999px; }
.pickup h3 { color: #fff; font-family: var(--serif); font-size: clamp(32px, 3.6vw, 44px); line-height: 1.1; margin: 20px 0 14px; }
.pickup h3 em { color: var(--green-soft); }
.pickup__zones { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 30px; }
.pickup__zones li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: #fff;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
}
.pickup__zones li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green-soft); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--green-soft); transform: translateY(-2px); }
.pickup__steps { display: grid; gap: 14px; }
.pickup__steps li {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: background .4s, transform .4s var(--ease);
}
.pickup__steps li:hover { background: rgba(255, 255, 255, .12); transform: translateX(4px); }
.pickup__steps strong { display: block; color: #fff; font-size: 16px; }
.pickup__steps span:not(.pickup__icon) { font-size: 14px; }
.pickup__icon { width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; background: rgba(191, 227, 210, .16); }
.pickup__icon svg { width: 22px; height: 22px; fill: none; stroke: var(--green-soft); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.check { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--text); cursor: pointer; padding: 14px 16px; border-radius: 12px; background: var(--mint); }
.check input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--green); flex-shrink: 0; }

@media (max-width: 900px) {
  .pickup { grid-template-columns: 1fr; gap: 34px; padding: 40px 32px; }
}
@media (max-width: 560px) {
  .pickup { padding: 34px 22px; }
  .pickup .btn { width: 100%; }
  .pickup__steps li { padding: 16px; gap: 14px; }
}

/* ---------- Promoción recogida (destacada) ---------- */
.promo-pill {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 26px;
  padding: 6px 16px 6px 6px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--green-soft);
  box-shadow: 0 8px 24px -12px rgba(62, 158, 120, .45);
  font-size: 14px; color: var(--ink);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.promo-pill:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(62, 158, 120, .55); }
.promo-pill strong { color: var(--green); }
.promo-pill__new {
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--green);
  padding: 5px 11px; border-radius: 999px;
  position: relative;
}
.promo-pill__new::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(62, 158, 120, .5);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(62, 158, 120, .45); } 100% { box-shadow: 0 0 0 10px rgba(62, 158, 120, 0); } }
.promo-pill__arrow { transition: transform .35s var(--ease); }
.promo-pill:hover .promo-pill__arrow { transform: translateX(3px); }

.nav__link--accent { color: var(--green); font-weight: 600; }
.nav__link--accent::before {
  content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); margin-right: 8px; vertical-align: middle;
  animation: pulse 2.4s ease-out infinite;
}

.pickup-section { padding: 10px 0 30px; }
.pickup-section .pickup { margin-top: 0; }
.pickup__price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px;
  margin-top: 22px; color: #fff; font-size: 16px;
}
.pickup__price strong { font-family: var(--serif); font-size: 40px; font-weight: 500; color: var(--green-soft); line-height: 1; }
.pickup__price span { width: 100%; font-size: 13px; color: rgba(255, 255, 255, .6); }

@media (max-width: 900px) {
  .nav__link--accent::before { width: 9px; height: 9px; }
}
@media (max-width: 560px) {
  .promo-pill { font-size: 12.5px; gap: 8px; padding-right: 12px; }
  .promo-pill__arrow { display: none; }
  .pickup-section { padding: 0 0 20px; }
  .pickup__price strong { font-size: 34px; }
}


/* ---------- Zonas de recogida (clicables) ---------- */
.zone {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-size: 14px; color: #fff;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  transition: background .3s, border-color .3s, color .3s, transform .3s var(--ease);
}
.zone::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green-soft); transition: background .3s; }
.zone:hover { background: rgba(255, 255, 255, .14); transform: translateY(-2px); }
.zone[aria-pressed="true"] { background: var(--green-soft); border-color: var(--green-soft); color: var(--ink); font-weight: 600; }
.zone[aria-pressed="true"]::before { background: var(--green); }
.zone:focus-visible { outline: 2px solid var(--green-soft); outline-offset: 3px; }
#pickupPrice { display: inline-block; }
#pickupPrice.is-updated { animation: priceIn .45s var(--ease); }
@keyframes priceIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- Guardería ---------- */
.daycare { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.daycare__img { position: relative; border-radius: 200px 200px var(--radius) var(--radius); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg); }
.daycare__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.daycare:hover .daycare__img img { transform: scale(1.04); }
.daycare__hours {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 10px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.daycare__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 34px 0 36px; }
.daycare__list li {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.daycare__list li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.daycare__list strong { display: block; color: var(--ink); font-size: 15px; margin-bottom: 4px; }
.daycare__list span { font-size: 14px; color: var(--muted); }
.daycare__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.nav { gap: 28px; }
@media (max-width: 1080px) {
  .nav { gap: 20px; }
  .nav__link { font-size: 14px; }
  .daycare { gap: 44px; }
}
@media (max-width: 900px) {
  .nav { gap: 22px; }
  .nav__link { font-size: 30px; }
  .daycare { grid-template-columns: 1fr; }
  .daycare__img { max-width: 460px; width: 100%; margin: 0 auto; }
}
@media (max-width: 560px) {
  .daycare__list { grid-template-columns: 1fr; }
  .daycare__actions .btn { width: 100%; }
}

.daycare__price {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px;
  margin: -6px 0 30px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  background: var(--mint);
}
.daycare__price p { display: flex; align-items: baseline; flex-wrap: wrap; gap: 2px 8px; color: var(--ink); font-size: 15px; }
.daycare__price strong { font-family: var(--serif); font-size: 36px; font-weight: 500; line-height: 1; color: var(--ink); }
.daycare__price span { width: 100%; font-size: 13px; color: var(--muted); }
.daycare__discount { padding-left: 28px; border-left: 1px solid rgba(62, 158, 120, .3); }
.daycare__discount strong { color: var(--green); }
@media (max-width: 560px) {
  .daycare__discount { padding-left: 0; border-left: 0; padding-top: 14px; border-top: 1px solid rgba(62, 158, 120, .3); width: 100%; }
}

/* ---------- Guardería destacada ---------- */
.hero__content .promo-pill { margin-bottom: 10px; margin-right: 8px; }
.hero__content .promo-pill + .eyebrow { margin-top: 20px; }
.hero__content .promo-pill--alt + .eyebrow,
.hero__content .promo-pill--alt { }
.promo-pill--alt { border-color: rgba(58, 93, 171, .3); box-shadow: 0 8px 24px -12px rgba(58, 93, 171, .45); }
.promo-pill--alt .promo-pill__new { background: var(--blue); }
.promo-pill--alt .promo-pill__new::after { animation-name: pulseBlue; }
.promo-pill--alt strong { color: var(--blue); }
@keyframes pulseBlue { 0% { box-shadow: 0 0 0 0 rgba(58, 93, 171, .45); } 100% { box-shadow: 0 0 0 10px rgba(58, 93, 171, 0); } }

.daycare-section {
  position: relative;
  background:
    radial-gradient(700px 420px at 100% 0%, rgba(191, 227, 210, .9), transparent 70%),
    radial-gradient(600px 400px at 0% 100%, rgba(58, 93, 171, .10), transparent 70%),
    var(--mint);
}
.daycare__tag {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: var(--blue);
  padding: 7px 14px; border-radius: 999px;
  box-shadow: 0 8px 20px -10px rgba(58, 93, 171, .7);
}
.daycare__tag + .eyebrow { display: flex; }
.daycare-section .daycare__price { background: var(--surface); box-shadow: var(--shadow-sm); }
.daycare-section .daycare__list li { border-color: rgba(62, 158, 120, .18); }
@media (max-width: 560px) {
  .hero__content .promo-pill { margin-right: 0; }
}

/* ---------- Formulario → WhatsApp ---------- */
.btn--whatsapp { background: #1FA855; color: #fff; box-shadow: 0 12px 26px -12px rgba(31, 168, 85, .7); font-size: 16px; padding: 17px 28px; }
.btn--whatsapp:hover { background: #178C46; transform: translateY(-2px); }
.btn--whatsapp svg { width: 20px; height: 20px; fill: currentColor; }
.check--legal { background: transparent; padding: 4px 0; font-size: 13.5px; color: var(--muted); }
.check--legal a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line); }
.check.is-invalid { color: #B4503F; }
.check.is-invalid input { outline: 2px solid #C9665A; outline-offset: 2px; }

/* ---------- Mapa bajo demanda ---------- */
.map__placeholder {
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  text-align: center; padding: 24px;
  background:
    radial-gradient(400px 240px at 50% 0%, var(--mint), transparent 70%),
    var(--sand);
}
.map__placeholder svg { width: 34px; height: 34px; fill: none; stroke: var(--green); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.map__placeholder strong { color: var(--ink); font-size: 16px; }
.map__placeholder small { font-size: 12.5px; color: var(--muted); max-width: 360px; }
.map__placeholder small a { color: var(--ink); border-bottom: 1px solid var(--line); }

/* ---------- Páginas legales ---------- */
.legal-page .header { background: rgba(250, 248, 244, .92); box-shadow: 0 1px 0 var(--line); }
.legal { padding: calc(var(--header-h) + 60px) 0 90px; }
.legal__inner { max-width: 780px; margin: 0 auto; }
.legal__back { display: inline-flex; gap: 8px; font-size: 14px; font-weight: 600; color: var(--green); margin-bottom: 26px; }
.legal h1 { font-family: var(--serif); font-size: clamp(38px, 5vw, 54px); line-height: 1.1; margin-bottom: 12px; }
.legal__date { font-size: 14px; color: var(--muted); margin-bottom: 44px; }
.legal h2 { font-family: var(--serif); font-size: 28px; margin: 44px 0 14px; }
.legal p, .legal li { color: var(--text); font-size: 16px; }
.legal p + p { margin-top: 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin: 12px 0; display: grid; gap: 8px; }
.legal a { color: var(--blue); border-bottom: 1px solid rgba(58, 93, 171, .3); }
.legal__card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 30px; box-shadow: var(--shadow-sm);
}
.legal__card dl { display: grid; grid-template-columns: max-content 1fr; gap: 10px 24px; margin: 0; }
.legal__card dt { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green); padding-top: 3px; }
.legal__card dd { margin: 0; color: var(--ink); }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
.legal th, .legal td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal th { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
@media (max-width: 560px) {
  .legal__card { padding: 22px 18px; }
  .legal__card dl { grid-template-columns: 1fr; gap: 2px; }
  .legal__card dd { margin-bottom: 12px; }
  .legal table, .legal thead, .legal tbody, .legal tr, .legal th, .legal td { display: block; }
  .legal thead { display: none; }
  .legal td { padding: 6px 0; border: 0; }
  .legal tr { padding: 12px 0; border-bottom: 1px solid var(--line); }
}
.daycare__note { margin-top: 18px; font-size: 14px; color: var(--ink); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.daycare__note span { color: var(--blue); font-size: 10px; animation: pulseText 2.4s ease-in-out infinite; }
@keyframes pulseText { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.daycare__price { display: grid; grid-template-columns: max-content max-content; justify-content: start; }
@media (max-width: 560px) { .daycare__price { grid-template-columns: 1fr; } }

.daycare__bring { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 18px; margin: -10px 0 30px; }
.daycare__bring-title { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--green); }
.daycare__bring ul { display: flex; flex-wrap: wrap; gap: 8px; }
.daycare__bring li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink);
  padding: 8px 14px 8px 10px; border-radius: 999px;
  background: var(--surface); border: 1px solid rgba(62, 158, 120, .2);
}
.daycare__bring svg { width: 18px; height: 18px; fill: none; stroke: var(--green); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* Portada: la etiqueta siempre en su propia línea, debajo de los avisos */
.hero__content .eyebrow { display: flex; width: fit-content; }
