/* ============================================================
   VAZCO'S PET CENTER — Design tokens & base
   ============================================================ */
:root{
  --navy: #051F3A;
  --navy-soft: #0B2C4D;
  --coral: #FE624C;
  --coral-dark: #E44E3A;
  --blue-gray: #A1B5C4;
  --cream: #F7EFE2;
  --cream-warm: #F0E6D4;
  --gray: #68707A;
  --black: #000000;
  --white: #FFFFFF;

  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 50px -20px rgba(5, 31, 58, 0.25);
  --shadow-card: 0 12px 30px -14px rgba(5, 31, 58, 0.18);

  --container-w: 1240px;
  --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(--font-body);
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
p{ margin: 0 0 1em; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

:focus-visible{
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

.container{
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ Typography helpers ============ */
.eyebrow{
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.eyebrow-dark{ color: var(--coral); }

.text-coral{ color: var(--coral); }

.section-head{
  max-width: 640px;
  margin: 0 0 56px;
}
.section-head h2{ font-size: clamp(28px, 4vw, 42px); }
.section-lead{
  font-size: 18px;
  color: var(--gray);
  max-width: 560px;
}
.section-lead-light{ color: rgba(247,239,226,.78); }

/* ============ Buttons ============ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  padding: 14px 28px;
  font-size: 16px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-lg{ padding: 18px 34px; font-size: 17px; }
.btn-sm{ padding: 10px 20px; font-size: 14px; }
.btn-block{ width: 100%; }

.btn-primary{
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(254,98,76,.55); }

.btn-ghost{
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover{ background: var(--navy); color: var(--cream); transform: translateY(-2px); }

.btn-cream{
  background: var(--cream);
  color: var(--navy);
}
.btn-cream:hover{ transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(0,0,0,.35); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247, 239, 226, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px -16px rgba(5,31,58,.2);
  transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
/* Pages that open on a dark hero (e.g. Home) start fully transparent with a light logo/nav */
.site-header.on-dark{
  background: rgba(247, 239, 226, 0);
  backdrop-filter: none;
  box-shadow: none;
}
.site-header.on-dark.is-scrolled{
  background: rgba(247, 239, 226, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px -16px rgba(5,31,58,.35);
}
/* Over a dark hero, nav links must be light until the header picks up the cream background */
.site-header.on-dark:not(.is-scrolled) .main-nav a{ color: var(--cream); }
.site-header.on-dark:not(.is-scrolled) .nav-toggle span{ background: var(--cream); }
@media (max-width: 860px){
  .site-header.on-dark:not(.is-scrolled) .main-nav a{ color: var(--navy); }
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link{ display: flex; align-items: center; }
.logo-img{ height: 34px; width: auto; }

.main-nav{
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a{
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after{
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--coral);
  transition: width .2s ease;
}
.main-nav a:hover::after{ width: 100%; }

.header-actions{ display: flex; align-items: center; gap: 16px; }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  padding: 0;
}
.nav-toggle span{
  display: block;
  width: 22px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
  margin: 0 auto;
}
.nav-toggle.is-open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  background: var(--navy);
  color: var(--cream);
  padding: calc(var(--header-h) + 72px) 0 96px;
  overflow: hidden;
}
.hero-pattern{
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(254,98,76,.12), transparent 40%),
                     radial-gradient(circle at 85% 80%, rgba(161,181,196,.14), transparent 45%);
  pointer-events: none;
}
.hero-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.hero-copy{ max-width: 620px; }
.hero .eyebrow{
  color: var(--coral);
  background: rgba(254,98,76,.12);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}
.hero h1{
  font-size: clamp(34px, 5vw, 58px);
  color: var(--cream);
  margin-bottom: 24px;
}
.hero-lead{
  font-size: 19px;
  color: rgba(247,239,226,.8);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero .btn-ghost{ color: var(--cream); border-color: rgba(247,239,226,.5); }
.hero .btn-ghost:hover{ background: var(--cream); color: var(--navy); border-color: var(--cream); }

.hero-trust{
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item{ display: flex; flex-direction: column; }
.trust-item strong{
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--coral);
}
.trust-item span{ font-size: 13px; color: rgba(247,239,226,.65); max-width: 130px; }

.hero-visual{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-blob{
  position: absolute;
  width: 420px; height: 420px;
  background: linear-gradient(135deg, var(--coral), #ff8a6f);
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  filter: blur(2px);
  opacity: .16;
  animation: blobMove 12s ease-in-out infinite;
}
@keyframes blobMove{
  0%, 100%{ border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%; transform: rotate(0deg) scale(1); }
  50%{ border-radius: 58% 42% 35% 65% / 55% 60% 40% 45%; transform: rotate(8deg) scale(1.05); }
}
.hero-icon{
  position: relative;
  width: 200px;
  margin-bottom: 28px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
  animation: iconFloat 5s ease-in-out infinite;
}
@keyframes iconFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}
.hero-icon-caption{
  position: relative;
  max-width: 280px;
  font-size: 14.5px;
  color: rgba(247,239,226,.7);
  font-style: italic;
}

/* ============================================================
   STORY STRIP (logo meaning)
   ============================================================ */
.story-strip{
  background: var(--coral);
  color: var(--white);
  padding: 28px 0;
}
.story-strip-inner{
  display: flex;
  align-items: center;
  gap: 20px;
}
.story-icon{
  width: 40px;
  flex-shrink: 0;
}
.story-strip-inner p{
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  max-width: 780px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services{ padding: 110px 0; }
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -18px rgba(5,31,58,.28);
}
.service-icon{
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  color: var(--coral);
  border-radius: 16px;
  margin-bottom: 20px;
}
.service-icon svg{ width: 28px; height: 28px; }
.service-card h3{ font-size: 22px; margin-bottom: 10px; }
.service-card p{ color: var(--gray); font-size: 15px; margin-bottom: 18px; }
.service-link{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--coral);
}
.service-card-highlight{
  background: var(--navy);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card-highlight h3{ color: var(--cream); }
.service-card-highlight p{ color: rgba(247,239,226,.72); }

/* ============================================================
   PORTAL PARA DUEÑOS
   ============================================================ */
.portal{
  position: relative;
  background: var(--navy);
  color: var(--cream);
  padding: 110px 0;
  overflow: hidden;
}
.portal-pattern{
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: radial-gradient(circle at 90% 10%, var(--cream) 0, transparent 2%),
    radial-gradient(circle at 80% 30%, var(--cream) 0, transparent 2%);
  background-size: 60px 60px;
}
.portal-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.portal .eyebrow{ color: var(--coral); }
.portal h2{ color: var(--cream); font-size: clamp(28px, 4vw, 40px); }

.portal-list{ margin: 32px 0 40px; display: flex; flex-direction: column; gap: 20px; }
.portal-list li{ display: flex; gap: 16px; align-items: flex-start; }
.portal-check{
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}
.portal-list strong{ font-family: var(--font-display); font-size: 16.5px; display: block; margin-bottom: 3px; }
.portal-list p{ margin: 0; font-size: 14.5px; color: rgba(247,239,226,.68); }

.portal-visual{ display: flex; justify-content: center; }
.portal-card-mock{
  background: var(--cream);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 28px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
  transform: rotate(-2deg);
}
.portal-card-header{
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(5,31,58,.12);
}
.portal-card-header img{ width: 26px; }
.portal-card-header span{ font-family: var(--font-display); font-weight: 600; }
.portal-card-row{
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  font-size: 14.5px;
  border-bottom: 1px dashed rgba(5,31,58,.1);
}
.portal-card-row span{ color: var(--gray); }
.tag-ok{ color: #2e8b57; }
.portal-card-photo{
  margin-top: 18px;
  height: 110px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-gray), var(--cream-warm));
}

/* ============================================================
   ABOUT
   ============================================================ */
.about{ padding: 110px 0; }
.about-inner{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-frame{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-card);
}
.about-frame-placeholder{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: calc(var(--radius-lg) - 16px);
  background: repeating-linear-gradient(135deg, var(--cream-warm), var(--cream-warm) 14px, var(--blue-gray) 14px, var(--blue-gray) 15px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
.about-frame-placeholder img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-frame-placeholder span{
  position: relative;
  z-index: 1;
  background: var(--navy);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}
.about-copy h2{ font-size: clamp(28px, 4vw, 40px); }
.about-copy p{ color: var(--gray); font-size: 17px; }
.about-stats{
  display: flex;
  gap: 36px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.about-stats strong{
  display: block;
  font-family: var(--font-display);
  color: var(--coral);
  font-size: 20px;
}
.about-stats span{ font-size: 13.5px; color: var(--gray); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{ padding: 110px 0; background: var(--cream-warm); }
.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 0;
  box-shadow: var(--shadow-card);
}
.testimonial-card p{
  font-size: 16.5px;
  color: var(--navy);
  margin-bottom: 20px;
}
.testimonial-card p::before{ content: '“'; color: var(--coral); font-size: 28px; font-family: var(--font-display); }
.testimonial-card footer strong{ display: block; font-family: var(--font-display); font-size: 15px; }
.testimonial-card footer span{ font-size: 13px; color: var(--gray); }
.testimonials-note{
  margin-top: 28px;
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery{ padding: 110px 0; }
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 20px;
}
.gallery-item{
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue-gray), var(--cream-warm));
  display: flex; align-items: flex-end;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.gallery-item img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.gallery-item::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(5,31,58,.55), transparent 60%);
  z-index: 1;
}
.gallery-item span{
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
}
.gallery-item-lg{ grid-row: span 2; grid-column: span 2; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner{
  position: relative;
  background: var(--coral);
  color: var(--white);
  padding: 90px 0;
  overflow: hidden;
  text-align: center;
}
.cta-pattern{
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.15) 2px, transparent 2px);
  background-size: 26px 26px;
  opacity: .5;
}
.cta-inner{ position: relative; max-width: 620px; margin: 0 auto; }
.cta-banner h2{ font-size: clamp(28px, 4vw, 38px); color: var(--white); }
.cta-banner p{ font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 32px; }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.contact{ padding: 110px 0; }
.contact-inner{
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
}
.contact-info{ margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.contact-info li{ display: flex; flex-direction: column; }
.contact-info strong{ font-family: var(--font-display); font-size: 15px; }
.contact-info span{ color: var(--gray); font-size: 15px; }

.contact-form{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-row{ margin-bottom: 20px; }
.form-row-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row-split .form-row{ margin-bottom: 0; }
label{
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
input, select, textarea{
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(5,31,58,.15);
  background: var(--cream);
  color: var(--navy);
  transition: border-color .18s ease, background-color .18s ease;
}
input::placeholder, textarea::placeholder{ color: var(--gray); opacity: .7; }
input:focus, select:focus, textarea:focus{
  outline: none;
  border-color: var(--coral);
  background: var(--white);
}
textarea{ resize: vertical; min-height: 100px; }
.hidden-field{ position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status{
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}
.form-status.success{ color: #2e8b57; }
.form-status.error{ color: var(--coral-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background: var(--navy); color: rgba(247,239,226,.75); }
.footer-inner{
  padding: 80px 0 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo{ height: 30px; margin-bottom: 18px; }
.footer-brand p{ font-size: 14px; max-width: 280px; color: rgba(247,239,226,.6); }
.footer-col h4{
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 15px;
  margin-bottom: 18px;
}
.footer-col{ display: flex; flex-direction: column; gap: 12px; }
.footer-col a{ font-size: 14px; color: rgba(247,239,226,.65); transition: color .18s ease; }
.footer-col a:hover{ color: var(--coral); }
.footer-bottom{ border-top: 1px solid rgba(247,239,226,.12); }
.footer-bottom-inner{
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(247,239,226,.5);
}

/* ============================================================
   MOBILE CTA (sticky)
   ============================================================ */
.mobile-cta{
  display: none;
  position: fixed;
  bottom: 18px; left: 18px; right: 18px;
  z-index: 90;
  background: var(--coral);
  color: var(--white);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 30px -10px rgba(254,98,76,.5);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; padding-top: 8px; }
  .hero-blob{ width: 300px; height: 300px; }
  .hero-icon{ width: 140px; }
  .portal-inner{ grid-template-columns: 1fr; }
  .portal-visual{ order: -1; }
  .about-inner{ grid-template-columns: 1fr; }
  .about-visual{ max-width: 360px; margin: 0 auto; }
  .contact-inner{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px){
  .main-nav{
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 28px 24px;
    box-shadow: 0 20px 30px -20px rgba(5,31,58,.3);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .main-nav.is-open{ transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a{ width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(5,31,58,.08); }
  .nav-toggle{ display: flex; }
  .header-actions .btn{ display: none; }

  .services-grid{ grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-item-lg{ grid-column: span 2; grid-row: span 1; }
  .footer-inner{ grid-template-columns: 1fr 1fr; padding: 60px 0 32px; }
  .form-row-split{ grid-template-columns: 1fr; }
  .mobile-cta{ display: block; }
  .hero{ padding-bottom: 120px; }
  .story-strip-inner{ flex-direction: column; text-align: center; gap: 12px; }
}

@media (max-width: 540px){
  .container{ padding: 0 20px; }
  .hero-trust{ gap: 24px; }
  .services, .portal, .about, .testimonials, .gallery, .cta-banner, .contact{ padding: 72px 0; }
  .footer-inner{ grid-template-columns: 1fr; }
  .contact-form{ padding: 26px; }
}

/* ============================================================
   NAV ACTIVE STATE
   ============================================================ */
.main-nav a.is-active{ color: var(--coral); }
.main-nav a.is-active::after{ width: 100%; }

/* ============================================================
   INTERIOR PAGE HEADER (banner for non-Home pages)
   ============================================================ */
.page-header{
  position: relative;
  background: var(--navy);
  color: var(--cream);
  padding: calc(var(--header-h) + 64px) 0 64px;
  overflow: hidden;
}
.page-header::before{
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(254,98,76,.14), transparent 45%);
  pointer-events: none;
}
.page-header-inner{ position: relative; max-width: 720px; }
.page-header h1{ color: var(--cream); font-size: clamp(30px, 4.5vw, 48px); }
.page-header p{ color: rgba(247,239,226,.75); font-size: 18px; max-width: 560px; margin: 0; }
.breadcrumb{
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: rgba(247,239,226,.55);
  margin-bottom: 18px;
}
.breadcrumb a{ color: rgba(247,239,226,.8); }
.breadcrumb a:hover{ color: var(--coral); }

/* ============================================================
   HERO — illustrated visual (replaces icon-first hero)
   ============================================================ */
.hero-photo{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3.1;
}
.hero-photo svg{ width: 100%; height: 100%; display: block; }
.hero-photo-badge{
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(247,239,226,.95);
  color: var(--navy);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  box-shadow: var(--shadow-card);
}
.hero-photo-badge img{ width: 22px; }

/* ============================================================
   SERVICE DETAIL SECTIONS (servicios.html)
   ============================================================ */
.service-detail{
  padding: 88px 0;
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.service-detail:nth-child(even){ background: var(--cream-warm); }
.service-detail-inner{
  display: grid;
  grid-template-columns: .4fr 1fr;
  gap: 48px;
  align-items: start;
}
.service-detail-inner.is-reversed{ direction: rtl; }
.service-detail-inner.is-reversed > *{ direction: ltr; }
.service-detail-icon{
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--navy);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
}
.service-detail-icon svg{ width: 34px; height: 34px; }
.service-detail-inner h2{ font-size: clamp(24px, 3.4vw, 32px); }
.service-detail-inner ul{ margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.service-detail-inner ul li{
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; color: var(--gray);
}
.service-detail-inner ul li::before{
  content: '✓';
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
}
.service-detail-inner .btn{ margin-top: 24px; }

/* ============================================================
   BOOKING WIDGET PAGE (reservar.html)
   ============================================================ */
.booking-section{ padding: 90px 0 110px; }
.booking-frame{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(16px, 4vw, 40px);
  box-shadow: var(--shadow-card);
  min-height: 640px;
}
#revelation_pets_booking_widget{
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  padding: 20px 0;
}
#revelation_pets_booking_widget a{ color: var(--gray); text-decoration: underline; }
