/* ============================================================
   74 POODLES — Allevamento Barboncino Toy, Pedigree ENCI
   Design system: caldo, familiare, accogliente
   ============================================================ */

:root {
  /* Palette */
  --cream:        #FBF4E8;
  --cream-soft:   #F3E7D3;
  --paper:        #FFFDF9;
  --terracotta:   #C36B3E;
  --terracotta-d: #A2552F;
  --terracotta-l: #ECC6A2;
  --sage:         #8A9A72;
  --sage-d:       #687A55;
  --sage-l:       #DCE3CD;
  --gold:         #D9A441;
  --brown:        #4A3526;
  --brown-soft:   #7C6553;
  --line:         #E5D7C0;
  --white:        #FFFFFF;

  /* Type */
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito', sans-serif;

  /* Spacing / radius / shadow */
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 4px 16px rgba(74, 53, 38, 0.08);
  --shadow-md: 0 12px 36px rgba(74, 53, 38, 0.12);
  --shadow-lg: 0 24px 64px rgba(74, 53, 38, 0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 400;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--brown);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

section { padding: 96px 0; }
@media (max-width: 700px) { section { padding: 64px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '🐾';
  font-size: 0.85rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 18px;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--brown-soft);
  max-width: 620px;
  line-height: 1.7;
}
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--terracotta-d); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--white); }
.btn-outline-light {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: var(--white); color: var(--brown); }
.btn-sage {
  background: var(--sage);
  color: var(--white);
}
.btn-sage:hover { background: var(--sage-d); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 5%;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 244, 232, 0.88);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid rgba(74,53,38,0.08);
  transition: var(--transition);
}
.nav.scrolled { height: 68px; box-shadow: var(--shadow-sm); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brown);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.nav-logo span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  align-self: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown-soft);
  position: relative;
  transition: var(--transition);
  padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--terracotta-d); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}

.nav-right { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 340px);
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 48px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; }
  .nav-toggle { display: flex; }
  .nav-cta-desktop { display: none; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(74,53,38,0.15) 0%, rgba(53,38,26,0.25) 55%, rgba(36,25,17,0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 5% 90px;
  color: var(--white);
}
.hero-label {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-l);
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--white);
  max-width: 820px;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--terracotta-l);
}
.hero-copy {
  font-size: 1.15rem;
  max-width: 540px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.page-hero {
  position: relative;
  padding: 200px 0 90px;
  background: linear-gradient(160deg, var(--cream-soft), var(--cream));
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -8%; top: -20%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--terracotta-l) 0%, transparent 70%);
  opacity: 0.5;
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 18px; }
.page-hero p { font-size: 1.1rem; color: var(--brown-soft); max-width: 600px; }

/* ─── CARDS ─── */
.card {
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.dog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
}
.dog-card { display: flex; flex-direction: column; }
.dog-photo {
  aspect-ratio: 4/5;
  background: var(--sage-l);
  position: relative;
  overflow: hidden;
}
.dog-photo img { transition: transform 0.6s ease; }
.dog-card:hover .dog-photo img { transform: scale(1.06); }
.dog-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(160deg, var(--sage-l), var(--cream-soft));
  color: var(--sage-d);
}
.dog-photo.placeholder .initials {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--sage-d);
}
.dog-photo.placeholder .ph-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-soft);
  opacity: 0.7;
}
.dog-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,253,249,0.92);
  color: var(--terracotta-d);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.dog-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.dog-name { font-size: 1.4rem; margin-bottom: 4px; }
.dog-meta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--terracotta-d);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.dog-desc { font-size: 0.95rem; color: var(--brown-soft); margin-bottom: 16px; flex: 1; }
.dog-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.tag {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--sage-l);
  color: var(--sage-d);
}
.tag.gold { background: #F5E5C0; color: #8C6A1C; }
.dog-links { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.doc-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--terracotta-d);
  border-bottom: 1.5px solid var(--terracotta-l);
  padding-bottom: 1px;
}
.doc-link:hover { border-color: var(--terracotta-d); }

/* ─── PUPPY / LITTER CARDS ─── */
.litter-banner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
@media (max-width: 860px) { .litter-banner { grid-template-columns: 1fr; padding: 28px; } }
.litter-photos {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 4/3.4;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.litter-photos .gallery-item:first-child { grid-row: 1 / 3; }
.litter-photos .gallery-item { border-radius: var(--radius-sm); overflow: hidden; }

.puppy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.puppy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--line);
}
.puppy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.puppy-photo { aspect-ratio: 1/1; }
.puppy-photo.gallery-item { cursor: zoom-in; }
.puppy-info { padding: 22px; }
.puppy-info h3 { font-size: 1.2rem; margin-bottom: 6px; }
.puppy-status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.puppy-status.available { background: var(--sage-l); color: var(--sage-d); }
.puppy-status.reserved { background: var(--terracotta-l); color: var(--terracotta-d); }
.puppy-status.sold { background: var(--line); color: var(--brown-soft); }
.puppy-card.is-sold .puppy-photo img { filter: saturate(0.55); opacity: 0.85; }

/* ─── GALLERY ─── */
.gallery-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.92rem;
  background: var(--white);
  color: var(--brown-soft);
  border: 1px solid var(--line);
  transition: var(--transition);
}
.gallery-tab.active, .gallery-tab:hover { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }

.gallery-grid {
  columns: 3 320px;
  column-gap: 20px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  position: relative;
  transition: var(--transition);
}
.gallery-item:hover { box-shadow: var(--shadow-md); }
.gallery-item img { transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 18px 14px;
  background: linear-gradient(0deg, rgba(36,25,17,0.78), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-cap { opacity: 1; }
.gallery-pane { display: none; }
.gallery-pane.active { display: block; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(26,18,12,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(90vw, 1100px);
  max-height: 86vh;
  width: auto; height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 28px; right: 36px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.blog-card { display: flex; flex-direction: column; }
.blog-photo { aspect-ratio: 16/11; }
.blog-info { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  margin-bottom: 10px;
}
.blog-info h3 { font-size: 1.3rem; margin-bottom: 10px; }
.blog-info p { font-size: 0.95rem; color: var(--brown-soft); flex: 1; margin-bottom: 16px; }
.blog-readmore { font-weight: 700; font-size: 0.9rem; color: var(--terracotta-d); display: inline-flex; align-items: center; gap: 6px; }
.blog-readmore::after { content: '→'; transition: var(--transition); }
.blog-card:hover .blog-readmore::after { transform: translateX(4px); }

.article-hero {
  padding: 180px 0 50px;
  background: var(--cream-soft);
}
.article-hero .blog-date { margin-bottom: 16px; }
.article-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); max-width: 780px; }
.article-cover {
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: -20px auto 50px;
  max-width: 1100px;
  box-shadow: var(--shadow-md);
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: var(--brown-soft);
}
.article-body h2 {
  color: var(--brown);
  font-size: 1.6rem;
  margin: 40px 0 16px;
}
.article-body p { margin-bottom: 20px; }
.article-body ul { margin: 0 0 20px 0; }
.article-body li {
  list-style: none;
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}
.article-body li::before {
  content: '🐾';
  position: absolute;
  left: 0; top: 0;
  font-size: 0.85rem;
}

/* ─── ABOUT / SPLIT SECTIONS ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/4.6;
  box-shadow: var(--shadow-md);
  position: relative;
}
.split-media .badge-float {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--paper);
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}
.badge-float .num { font-family: var(--font-display); font-size: 1.8rem; color: var(--terracotta-d); }
.badge-float .lbl { font-size: 0.78rem; color: var(--brown-soft); font-weight: 600; }

.feature-list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sage-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.feature-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.92rem; color: var(--brown-soft); }

/* ─── STRIP / TEASER ─── */
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .strip-grid { grid-template-columns: repeat(2, 1fr); } }
.strip-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.strip-item img { transition: transform 0.5s ease; }
.strip-item:hover img { transform: scale(1.08); }

/* alt bg sections */
.bg-soft { background: var(--cream-soft); }
.bg-white { background: var(--paper); }
.bg-brown {
  background: linear-gradient(160deg, #3C2A1E, #4A3526);
  color: var(--white);
}
.bg-brown h2, .bg-brown h3 { color: var(--white); }
.bg-brown .section-lead { color: rgba(255,255,255,0.78); }

/* ─── CTA BANNER ─── */
.cta-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--terracotta), #B05E32);
  padding: 64px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 32px; }
@media (max-width: 700px) { .cta-banner { padding: 40px 24px; } }

/* ─── FORM ─── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 700px) { .form-card { padding: 28px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--brown);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--cream);
  color: var(--brown);
  transition: var(--transition);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.contact-info-card .ic { font-size: 1.8rem; margin-bottom: 14px; }
.contact-info-card h4 { font-size: 1rem; margin-bottom: 8px; }
.contact-info-card p { font-size: 0.92rem; color: var(--brown-soft); }
.contact-info-card a.value { color: var(--terracotta-d); font-weight: 700; }

/* ─── FOOTER ─── */
.footer {
  background: #2E2017;
  color: rgba(255,255,255,0.82);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-about { font-size: 0.92rem; color: rgba(255,255,255,0.62); max-width: 280px; }
.footer h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-l);
  margin-bottom: 18px;
}
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer a { font-size: 0.92rem; color: rgba(255,255,255,0.72); transition: var(--transition); }
.footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ─── REVEAL ANIM ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ─── PEDIGREE NOTE STRIP ─── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brown-soft);
}
.trust-item .ic { font-size: 1.3rem; }

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 680px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--terracotta-l), var(--sage-l));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding: 0 0 44px 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--terracotta-l);
}
.timeline-year {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  margin-bottom: 6px;
}
.timeline-item h4 { font-size: 1.1rem; margin-bottom: 6px; }
.timeline-item p { font-size: 0.95rem; color: var(--brown-soft); }

/* ─── STATS STRIP ─── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (max-width: 700px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--terracotta-d);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brown-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── PULL QUOTE ─── */
.pull-quote {
  text-align: center;
  padding: 80px 0;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: var(--brown);
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.35;
}
.pull-quote cite {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-d);
  font-style: normal;
}

/* ─── CONTACT PANEL ─── */
.contact-panel {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
@media (max-width: 700px) { .contact-panel { grid-template-columns: 1fr; padding: 28px; gap: 28px; } }
.contact-panel h2 { font-size: 2rem; margin-bottom: 12px; }
.contact-detail-list { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brown);
}
.contact-detail .ic {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail a { color: var(--terracotta-d); font-weight: 700; }

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ─── PEDIGREE & TEST GENETICI SECTION ─── */
.bg-dark-accent {
  background: var(--brown);
  color: var(--cream);
}
.eyebrow-light { color: var(--terracotta-l); }
.section-title.light { color: var(--white); }
.section-lead.light { color: rgba(255,245,235,0.75); }

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 720px) { .guarantee-grid { grid-template-columns: 1fr; } }

.guarantee-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 36px;
}
.guarantee-card .guarantee-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.guarantee-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.guarantee-card p {
  font-size: 0.95rem;
  color: rgba(255,245,235,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}
.guarantee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guarantee-list li {
  font-size: 0.9rem;
  color: rgba(255,245,235,0.7);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.guarantee-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terracotta-l);
  font-weight: 700;
}
.guarantee-note {
  margin-top: 48px;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255,245,235,0.65);
}
.guarantee-note a {
  color: var(--terracotta-l);
  font-weight: 700;
  margin-left: 6px;
  text-decoration: none;
}
.guarantee-note a:hover { text-decoration: underline; }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.08); box-shadow: var(--shadow-lg); }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 20px; color: var(--brown-soft); }

/* ─── LOGO ─── */
.nav-logo { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.nav-mark { width: 40px; height: 40px; flex-shrink: 0; }
@media (max-width: 640px) {
  .nav-logo span { display: none; }
  .nav-mark { width: 34px; height: 34px; }
}
.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-l);
  margin: 2px 0 12px;
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  max-width: 640px;
  margin: 0 auto;
  background: var(--brown);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
}
.cookie-banner p {
  flex: 1 1 260px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.cookie-banner a {
  color: var(--terracotta-l);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner-actions button {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-reject {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(251,244,232,0.4) !important;
}
.btn-cookie-reject:hover { background: rgba(251,244,232,0.1); }
.btn-cookie-accept {
  background: var(--terracotta);
  color: var(--white);
}
.btn-cookie-accept:hover { background: var(--terracotta-d); }
@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { justify-content: flex-end; }
}
