/* ═══════════════════════════════════════════
   PAW & GO — style.css v2
   Palette: #EC008C fucsia · #231F20 nero · #FFFFFF bianco
   Mood: dolce, chiaro, femminile-chic, West London
   Font: Outfit (companion di Ponari Regular)
═══════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --fuchsia:        #EC008C;
  --fuchsia-dark:   #C4006F;
  --fuchsia-light:  #FDF0F7;   /* rosa chiarissimo per sfondi */
  --fuchsia-pale:   #FAE3F2;   /* rosa ancor più tenue */
  --fuchsia-mid:    #F2B8DC;   /* bordi/accenti tenui */

  --black:          #231F20;
  --black-soft:     #3D3839;   /* per testi secondari */

  --white:          #FFFFFF;
  --warm-white:     #FFFBFD;   /* bianco con tocco rosa */

  --grey-text:      #7A6875;
  --grey-light:     #F5EFF3;
  --grey-border:    #E8D8E3;

  --font:           'Outfit', system-ui, sans-serif;

  --radius-sm:      10px;
  --radius-md:      20px;
  --radius-lg:      32px;
  --radius-xl:      60px;

  --shadow-sm:      0 2px 12px rgba(35,31,32,0.06);
  --shadow-md:      0 6px 30px rgba(35,31,32,0.09);
  --shadow-pink:    0 8px 36px rgba(236,0,140,0.18);

  --nav-h:          70px;
  --max-w:          1100px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; }

/* ─── UTILITY ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 10px;
}
.eyebrow--center { text-align: center; }
.eyebrow--light  { color: rgba(255,255,255,0.55); }

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 700;
  color: var(--black);
  text-align: center;
  line-height: 1.13;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.section-title--light { color: var(--white); }

.section-sub {
  text-align: center;
  color: var(--grey-text);
  font-size: 1.04rem;
  line-height: 1.65;
  margin-bottom: 52px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 15px 34px;
  border-radius: var(--radius-xl);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--fuchsia);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn--primary:hover {
  background: var(--fuchsia-dark);
  box-shadow: 0 12px 40px rgba(236,0,140,0.30);
}

.btn--white {
  background: var(--white);
  color: var(--fuchsia);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.btn--white:hover { background: var(--fuchsia-light); }


/* ═══════════════════════════════
   NAVBAR — nero, logo bianco
═══════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.35); }

.nav__logo-img {
  height: 42px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--fuchsia);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav__links a:hover        { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--fuchsia) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius-xl);
  font-weight: 600 !important;
  opacity: 1 !important;
  transition: background 0.2s !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover  { background: var(--fuchsia-dark) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════
   HERO — chiaro, rosa tenue, dolce
═══════════════════════════════ */
.hero {
  background: var(--fuchsia-light);   /* rosa chiarissimo — non più nero */
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

/* Cerchio decorativo in alto a destra */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--fuchsia-pale) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 40px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--fuchsia-pale) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-bottom: 80px;
}

/* Text */
.hero__text { flex: 1; max-width: 560px; }

.hero__headline {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero__headline em {
  font-style: italic;
  color: var(--fuchsia);
}

.hero__sub {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--black-soft);
  font-weight: 400;
  max-width: 460px;
  margin-bottom: 38px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero__nudge {
  font-size: 0.82rem;
  color: var(--grey-text);
}

/* Visual / dog image */
.hero__visual {
  flex: 0 0 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

/* Immagine cane reale — aggiunta dal client */
.hero__dog-img {
  width: 80%;
  height: auto;
  position: relative;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(236,0,140,0.15));
}

/* Blob rosa sotto il cane */
.hero__blob {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 50%;
  background: var(--fuchsia-pale);
  border-radius: 50%;
  z-index: 1;
  filter: blur(20px);
}

/* Placeholder finché non c'è il PNG */
.hero__placeholder {
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  border-radius: var(--radius-lg);
  background: var(--fuchsia-pale);
  border: 2px dashed var(--fuchsia-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.hero__placeholder-inner {
  text-align: center;
  color: var(--fuchsia);
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Paw prints footer della hero */
.hero__paws {
  background: var(--fuchsia);
  padding: 12px 32px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.hero__paws span {
  font-size: 1.2rem;
  opacity: 0.5;
  animation: drift 4s ease-in-out infinite;
}
.hero__paws span:nth-child(2) { animation-delay: 0.4s; }
.hero__paws span:nth-child(3) { animation-delay: 0.8s; }
.hero__paws span:nth-child(4) { animation-delay: 1.2s; }
.hero__paws span:nth-child(5) { animation-delay: 1.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}


/* ═══════════════════════════════
   TRUST BAR
═══════════════════════════════ */
.trust {
  background: var(--black);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 16px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust__item:last-child { border-right: none; }
.trust__item svg { flex-shrink: 0; color: var(--fuchsia); }


/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
.services {
  background: var(--warm-white);
  padding: 100px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--fuchsia);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-pink);
  border-color: var(--fuchsia-mid);
}
.card:hover::after { transform: scaleX(1); }

.card--featured {
  background: var(--fuchsia-light);
  border-color: var(--fuchsia-mid);
}
.card--featured .card__num   { color: var(--fuchsia-mid); }
.card--featured .card__title { color: var(--fuchsia-dark); }
.card--featured .card__body  { color: var(--black-soft); }
.card--featured::after { background: var(--fuchsia); }

.card__badge {
  position: absolute;
  top: 0; left: 24px;
  background: var(--fuchsia);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 0 0 10px 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Immagine cane reale nella card */
.card__dog-img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
  margin-bottom: 4px;
  filter: drop-shadow(0 8px 16px rgba(236,0,140,0.12));
}

/* Placeholder finché non c'è il PNG */
.card__dog-placeholder {
  font-size: 3rem;
  text-align: center;
  padding: 16px 0 8px;
  opacity: 0.6;
}

.card__num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--grey-light);
  line-height: 1;
  letter-spacing: -0.04em;
}

.card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}

.card__body {
  font-size: 0.95rem;
  line-height: 1.68;
  color: var(--grey-text);
  flex: 1;
}

.card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fuchsia);
  display: inline-block;
  margin-top: 6px;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--fuchsia-mid);
  transition: border-color 0.2s, letter-spacing 0.2s;
}
.card__link:hover {
  letter-spacing: 0.02em;
  border-color: var(--fuchsia);
}


/* ═══════════════════════════════
   DOG STRIP — fila di cani decorativa
═══════════════════════════════ */
.dog-strip {
  background: var(--fuchsia-pale);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow: hidden;
}

/* Immagini PNG reali */
.dog-strip__img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(236,0,140,0.15));
  transition: transform 0.3s ease;
}
.dog-strip__img:hover { transform: scale(1.08) translateY(-4px); }

/* Placeholder emoji */
.dog-strip__placeholder {
  font-size: 3.5rem;
  opacity: 0.5;
  transition: transform 0.3s;
  cursor: default;
}
.dog-strip__placeholder:hover { transform: scale(1.15) translateY(-4px); }


/* ═══════════════════════════════
   HOW IT WORKS
═══════════════════════════════ */
.how {
  background: var(--white);
  padding: 100px 0;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 16px;
}

.how__step {
  padding: 0 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.how__step:last-child { padding-right: 0; }

.how__step-head {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.how__num {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--fuchsia-mid);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  transition: color 0.3s;
}
.how__step:hover .how__num { color: var(--fuchsia); }

.how__line {
  flex: 1;
  height: 1px;
  margin-left: 20px;
  background: repeating-linear-gradient(
    90deg,
    var(--fuchsia-mid) 0px, var(--fuchsia-mid) 6px,
    transparent 6px, transparent 14px
  );
}

/* Immagine cane nei passi */
.how__dog-img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 4px;
  filter: drop-shadow(0 6px 12px rgba(236,0,140,0.10));
}

.how__step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
}
.how__step p {
  font-size: 0.95rem;
  line-height: 1.68;
  color: var(--grey-text);
}


/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.testimonials {
  background: var(--fuchsia-light);
  padding: 100px 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.quote {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.28s, border-color 0.28s;
}
.quote:hover {
  box-shadow: var(--shadow-pink);
  border-color: var(--fuchsia-mid);
}

.quote__stars { color: var(--fuchsia); font-size: 1rem; letter-spacing: 3px; }

.quote__text {
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--black);
  font-style: italic;
  flex: 1;
}

.quote__footer { display: flex; flex-direction: column; gap: 2px; }
.quote__name { font-size: 0.9rem; font-weight: 600; color: var(--black); }
.quote__loc  { font-size: 0.8rem; color: var(--grey-text); }


/* ═══════════════════════════════
   AREAS
═══════════════════════════════ */
.areas {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.areas__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.areas__list li {
  background: var(--fuchsia-light);
  color: var(--fuchsia-dark);
  border: 1.5px solid var(--fuchsia-mid);
  padding: 9px 22px;
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: default;
}
.areas__list li:hover {
  background: var(--fuchsia);
  color: var(--white);
  border-color: var(--fuchsia);
  transform: scale(1.05);
}

.areas__note {
  font-size: 0.88rem;
  color: var(--grey-text);
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.65;
}


/* ═══════════════════════════════
   CTA
═══════════════════════════════ */
.cta-section {
  background: var(--fuchsia-light);
  padding: 100px 0;
}

.cta-box {
  background: var(--fuchsia);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

/* PNG cane nella CTA */
.cta-box__dog-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
  margin-bottom: -8px;
  animation: float 5s ease-in-out infinite;
}

/* Placeholder emoji */
.cta-box__dog-placeholder {
  font-size: 3rem;
  opacity: 0.8;
  margin-bottom: -4px;
}

.cta-box__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.cta-box__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 440px;
  line-height: 1.7;
  font-weight: 300;
}
.cta-box__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: -4px;
}


/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer {
  background: var(--black);
  padding: 44px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.footer__logo {
  height: 36px;
  width: auto;
}
.footer__copy,
.footer__area {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}


/* ═══════════════════════════════
   SCROLL REVEAL
═══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
.hero__strip {
  background: var(--fuchsia);
  height: 14px;
  width: 100%;
}

@media (max-width: 960px) {
  .services__grid     { grid-template-columns: repeat(2, 1fr); }
  .how__steps         { grid-template-columns: 1fr; }
  .how__step          { padding: 28px 0; border-bottom: 1px solid var(--grey-border); }
  .how__step:last-child { border-bottom: none; }
  .how__line          { display: none; }
  .testimonials__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    z-index: 190;
  }
  .nav__links.open { display: flex; }
  .nav__burger     { display: flex; }

  .hero { padding: 52px 0 0; }
  .hero__inner      { flex-direction: column; gap: 40px; padding-bottom: 52px; }
  .hero__text       { max-width: 100%; text-align: center; }
  .hero__sub        { max-width: 100%; }
  .hero__actions    { align-items: center; }
  .hero__visual     { order: -1; flex: none; width: 100%; }
  .hero__img-wrap   { max-width: 280px; margin: 0 auto; }
  .hero__placeholder { max-width: 280px; aspect-ratio: 1; }

  .dog-strip { gap: 20px; padding: 24px 20px; }
  .dog-strip__img { height: 70px; }
  .dog-strip__placeholder { font-size: 2.5rem; }

  .services   { padding: 72px 0; }
  .services__grid   { grid-template-columns: 1fr; }
  .how        { padding: 72px 0; }
  .testimonials     { padding: 72px 0; }
  .cta-section      { padding: 72px 0; }
  .cta-box    { padding: 56px 24px; border-radius: 24px; }

  .container  { padding: 0 20px; }

  .trust { flex-direction: column; }
  .trust__item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  .trust__item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2.4rem; }
  .btn  { padding: 14px 26px; font-size: 0.95rem; }
  .card { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__dog-img, .hero__paws span, .cta-box__dog-img { animation: none; }
  .reveal { transition: none; }
}
