/* ============================================
   MACLEN.RU — Design System: Light Natural
   ============================================ */


/* ---- Tokens ---- */
:root {
  --green:       #4A7C59;
  --green-light: #6A9E78;
  --green-dark:  #1C3A2A;
  --green-bg:    #EAF4ED;
  --sand:        #E8DCC8;
  --sand-light:  #F7F2EA;
  --cream:       #FFFDF9;
  --white:       #FFFFFF;
  --text:        #2A2A2A;
  --text-muted:  #666666;
  --gold:        #C8983A;

  --radius:      16px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(74,124,89,.10);
  --shadow-md:   0 8px 40px rgba(74,124,89,.14);
  --transition:  0.3s cubic-bezier(.4,0,.2,1);

  --ff-display:  'Nunito', -apple-system, sans-serif;
  --ff-body:     'Nunito', -apple-system, sans-serif;

  --max-w: 1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
.display { font-family: var(--ff-display); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
.eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.section-title { margin-bottom: .5rem; }
.section-subtitle { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; text-align: center; }
.section-header .eyebrow { margin-bottom: .5rem; }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,124,89,.35);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green-bg);
  transform: translateY(-2px);
}
.btn-sand {
  background: var(--sand);
  color: var(--green-dark);
  border-color: var(--sand);
}
.btn-sand:hover {
  background: var(--sand-light);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(74,124,89,.1);
  transition: var(--transition);
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.nav__logo span { color: var(--green); }
.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--green);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--green-dark); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; gap: .75rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO — Circular Collage Design
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 3rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* -- Decorative SVG leaves -- */
.hero__leaf {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.hero__leaf--top-right {
  top: 60px; right: 30px;
  transform: rotate(15deg);
  animation: leaf-sway 8s ease-in-out infinite;
}
.hero__leaf--bottom-left {
  bottom: 40px; left: 20px;
  transform: rotate(-10deg);
  animation: leaf-sway 10s ease-in-out infinite reverse;
}
.hero__leaf--mid-right {
  top: 55%; right: 60px;
  transform: rotate(25deg);
  animation: leaf-sway 9s ease-in-out infinite;
  animation-delay: 2s;
}
@keyframes leaf-sway {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50%      { transform: rotate(18deg) translateY(-8px); }
}

/* -- Paw prints decoration -- */
.hero__paws {
  position: absolute;
  bottom: 120px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  opacity: .08;
  font-size: 1.5rem;
  z-index: 0;
}
.hero__paws span:nth-child(2) { transform: rotate(15deg) translateY(-5px); }
.hero__paws span:nth-child(3) { transform: rotate(-10deg); }

/* -- Circular Photo Collage -- */
.hero__collage {
  position: relative;
  width: 520px;
  height: 520px;
  margin: 0 auto;
}
.hero__collage-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--green);
  border-radius: 50%;
  z-index: 0;
  box-shadow: 0 20px 60px rgba(74,124,89,.25);
}
.hero__circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  border: 4px solid var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.hero__circle:hover {
  transform: scale(1.06);
  z-index: 5;
}
.hero__circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  image-rendering: -webkit-optimize-contrast;
}

/* Main center circle */
.hero__circle--main {
  width: 260px; height: 260px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-width: 5px;
  z-index: 2;
}
.hero__circle--main:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

/* Small surrounding circles */
.hero__circle--sm {
  width: 130px; height: 130px;
}
.hero__circle--1 {
  top: 15px; left: 40px;
}
.hero__circle--2 {
  top: 30px; right: 30px;
}
.hero__circle--3 {
  bottom: 50px; left: 20px;
}
.hero__circle--4 {
  bottom: 30px; right: 40px;
}

/* -- Hero text content -- */
.hero__content {
  max-width: 520px;
}
.hero__eyebrow {
  display: inline-block;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-style: italic;
  color: var(--green);
}
.hero__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 440px;
}
.hero__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero__text-link {
  font-weight: 600;
  color: var(--green-dark);
  font-size: .95rem;
  transition: color var(--transition), gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.hero__text-link:hover {
  color: var(--green);
}

/* -- Bottom review strip -- */
.hero__review-strip {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(74,124,89,.1);
}
.hero__review-strip .hero__review-stars {
  color: #FFC107;
  font-size: .9rem;
  flex-shrink: 0;
}
.hero__review-strip .hero__review-text {
  font-size: .88rem;
  color: var(--text-muted);
  font-style: italic;
}
.hero__review-strip .hero__review-author {
  font-size: .82rem;
  font-weight: 600;
  color: var(--green-dark);
  white-space: nowrap;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 2rem 0;
  background: var(--green-dark);
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.85);
}
.trust-item__icon {
  font-size: 1.4rem;
}
.trust-item__text {
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.3;
}
.trust-item__text strong {
  display: block;
  color: white;
  font-weight: 700;
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--cream); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__photos {
  position: relative;
}
.about__photo-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__photo-main img {
  width: 100%; height: 420px;
  object-fit: cover;
  filter: saturate(1.1);
}
.about__photo-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--green);
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about__photo-badge .num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.about__photo-badge .label { font-size: .75rem; opacity: .85; }
.about__text { padding-top: 1rem; }
.about__text h2 { color: var(--green-dark); margin: .5rem 0 1.25rem; }
.about__text p { color: var(--text-muted); margin-bottom: 1rem; }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.stat-card {
  background: var(--green-bg);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
}
.stat-card .num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1;
}
.stat-card .label { font-size: .78rem; color: var(--text-muted); margin-top: .25rem; }

/* ============================================
   KITTENS — VK Market
   ============================================ */
.kittens { background: var(--sand-light); }
.kittens__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.kitten-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.kitten-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.kitten-card__img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.kitten-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.15) contrast(1.05);
  image-rendering: -webkit-optimize-contrast;
  transition: transform .5s ease;
}
.kitten-card:hover .kitten-card__img img { transform: scale(1.06); }
.kitten-card__status {
  position: absolute;
  top: 12px; left: 12px;
  padding: .35rem .85rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.kitten-card__status--free { background: rgba(74,180,110,.92); color: white; }
.kitten-card__status--reserved { background: rgba(255,180,0,.92); color: #333; }
.kitten-card__body { padding: 1.25rem; }
.kitten-card__name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: .25rem;
}
.kitten-card__details { font-size: .83rem; color: var(--text-muted); margin-bottom: .75rem; }
.kitten-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1rem;
}
.kitten-card__actions { display: flex; gap: .75rem; }
.kitten-card__actions .btn { flex: 1; justify-content: center; padding: .65rem 1rem; font-size: .85rem; }

/* loading / error states */
.kittens__loading, .kittens__error {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}
.kittens__cta { text-align: center; }

/* ============================================
   PARENTS
   ============================================ */
.parents { background: var(--white); }
.parents__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.parent-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.parent-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.parent-card__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.parent-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.1);
  transition: transform .5s ease;
}
.parent-card:hover .parent-card__img img { transform: scale(1.05); }
.parent-card__body { padding: 1.5rem; }
.parent-card__name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
}
.parent-card__meta { font-size: .83rem; color: var(--text-muted); margin: .4rem 0 .75rem; }
.parent-card__badge {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 50px;
}

/* ============================================
   HOW TO BUY
   ============================================ */
.how-to-buy { background: var(--green-dark); color: white; }
.how-to-buy .section-header .eyebrow { color: var(--green-light); }
.how-to-buy .section-header .section-title { color: white; }
.how-to-buy .section-header .section-subtitle { color: rgba(255,255,255,.65); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.step {
  text-align: center;
  position: relative;
}
.step::after {
  content: '→';
  position: absolute;
  right: -1.2rem; top: 1.5rem;
  color: rgba(255,255,255,.3);
  font-size: 1.2rem;
}
.step:last-child::after { display: none; }
.step__num {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-light);
  margin: 0 auto 1.25rem;
}
.step__title { font-weight: 600; margin-bottom: .5rem; color: white; }
.step__desc { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews { background: var(--sand-light); }
.reviews__rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.reviews__rating-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1;
}
.reviews__stars { font-size: 1.5rem; color: #FFC107; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.review-card__stars { color: #FFC107; font-size: .9rem; margin-bottom: .75rem; }
.review-card__text { color: var(--text-muted); font-size: .95rem; line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: .75rem; }
.review-card__avatar {
  width: 40px; height: 40px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
}
.review-card__name { font-weight: 600; font-size: .9rem; color: var(--green-dark); }
.review-card__city { font-size: .78rem; color: var(--text-muted); }
.reviews__cta { text-align: center; }

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--white); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--sand);
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--green); }
.faq__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--green);
  transition: var(--transition);
}
.faq__item.open .faq__icon { transform: rotate(45deg); background: var(--green); color: white; }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq__answer-inner {
  padding: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
}
.faq__item.open .faq__answer { max-height: 300px; }

/* ============================================
   BLOG — VK Live Feed
   ============================================ */
.blog { background: var(--green-bg); }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.blog-card__img {
  height: 200px;
  overflow: hidden;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  image-rendering: -webkit-optimize-contrast;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__img-placeholder { font-size: 2.5rem; opacity: .4; }
.blog-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__date { font-size: .75rem; color: var(--text-muted); margin-bottom: .5rem; }
.blog-card__title {
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: .5rem;
  line-height: 1.4;
}
.blog-card__text { font-size: .88rem; color: var(--text-muted); flex: 1; line-height: 1.6; margin-bottom: 1rem; }
.blog-card__link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}
.blog-card__link:hover { gap: .6rem; }
.blog__loading { text-align: center; padding: 3rem; color: var(--text-muted); }
.blog__vk-btn { text-align: center; }

/* ============================================
   LEAD FORM
   ============================================ */
.lead-form { background: var(--cream); }
.lead-form__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.lead-form__text h2 { color: var(--green-dark); margin: .5rem 0 1rem; }
.lead-form__text p { color: var(--text-muted); margin-bottom: 2rem; }
.lead-form__contacts { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: var(--transition);
  font-weight: 500;
  color: var(--green-dark);
}
.contact-link:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.contact-link__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-link__icon--wa { background: rgba(37,211,102,.12); }
.contact-link__icon--tg { background: rgba(0,136,204,.12); }
.contact-link__icon--vk { background: rgba(0,119,255,.12); }
.contact-link__meta { font-size: .75rem; color: var(--text-muted); font-weight: 400; }
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-card h3 { font-family: var(--ff-display); color: var(--green-dark); margin-bottom: 1.5rem; font-size: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 2px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; justify-content: center; padding: 1rem; }
.form-privacy { font-size: .73rem; color: var(--text-muted); text-align: center; margin-top: .75rem; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: white;
  margin-bottom: .5rem;
}
.footer__brand-desc { font-size: .85rem; line-height: 1.6; margin-bottom: 1.25rem; }
.footer__socials { display: flex; gap: .75rem; }
.footer__social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
  cursor: pointer;
}
.footer__social:hover { background: var(--green); color: white; }
.footer__col-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: .9rem;
}
.footer__links li { margin-bottom: .6rem; }
.footer__links a { font-size: .85rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--green-light); }
.footer__contact-item { display: flex; align-items: center; gap: .6rem; font-size: .85rem; margin-bottom: .6rem; }
.footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer__wcf { color: rgba(255,255,255,.4); }

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.5rem;
  font-family: var(--ff-display);
  color: var(--green-dark);
  font-weight: 600;
}
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--green-dark);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__collage { width: 380px; height: 380px; order: -1; }
  .hero__circle--main { width: 200px; height: 200px; }
  .hero__circle--sm { width: 100px; height: 100px; }
  .hero__circle--1 { top: 10px; left: 25px; }
  .hero__circle--2 { top: 20px; right: 20px; }
  .hero__circle--3 { bottom: 35px; left: 15px; }
  .hero__circle--4 { bottom: 20px; right: 25px; }
  .hero__leaf--mid-right { display: none; }

  .about__inner { grid-template-columns: 1fr; }
  .about__photo-badge { right: 0; }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }

  .lead-form__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 6rem 0 2rem; }
  .hero__collage { width: 300px; height: 300px; }
  .hero__circle--main { width: 160px; height: 160px; }
  .hero__circle--sm { width: 80px; height: 80px; }
  .hero__circle--1 { top: 8px; left: 15px; }
  .hero__circle--2 { top: 15px; right: 15px; }
  .hero__circle--3 { bottom: 25px; left: 10px; }
  .hero__circle--4 { bottom: 15px; right: 15px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__review-strip { flex-wrap: wrap; gap: .5rem; }
  .hero__leaf { display: none; }
  .hero__paws { display: none; }

  .trust-bar__inner { gap: 1.5rem; }
  .trust-item__text { font-size: .78rem; }

  .about__stats { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .kittens__grid { grid-template-columns: 1fr; }
  .parents__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

/* --- Scroll fade-up --- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1),
              transform .65s cubic-bezier(.16,1,.3,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Stagger children --- */
.fade-up:nth-child(1) { transition-delay: .05s; }
.fade-up:nth-child(2) { transition-delay: .13s; }
.fade-up:nth-child(3) { transition-delay: .21s; }
.fade-up:nth-child(4) { transition-delay: .29s; }
.fade-up:nth-child(5) { transition-delay: .37s; }
.fade-up:nth-child(6) { transition-delay: .45s; }

/* --- Floating hero collage circles --- */
@keyframes float-slow {
  0%, 100% { transform: translate(-50%, -50%); }
  50%       { transform: translate(-50%, calc(-50% - 6px)); }
}
@keyframes float-sm {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero__circle--main {
  animation: float-slow 6s ease-in-out infinite;
}
.hero__circle--1 {
  animation: float-sm 5s ease-in-out infinite;
}
.hero__circle--2 {
  animation: float-sm 6s ease-in-out infinite;
  animation-delay: 1s;
}
.hero__circle--3 {
  animation: float-sm 5.5s ease-in-out infinite;
  animation-delay: 2s;
}
.hero__circle--4 {
  animation: float-sm 7s ease-in-out infinite;
  animation-delay: .5s;
}

/* --- Shimmer on primary button --- */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.btn--primary {
  background-size: 200% auto;
  background-image: linear-gradient(
    105deg,
    var(--green) 0%,
    var(--green) 40%,
    #7BC47A 50%,
    var(--green) 60%,
    var(--green) 100%
  );
  animation: shimmer 4s linear infinite;
}
.btn--primary:hover {
  animation-play-state: paused;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74,124,89,.35);
}

/* --- Card hover lift --- */
.kitten-card,
.parent-card,
.blog-card,
.review-card,
.faq-item {
  transition: transform .3s cubic-bezier(.16,1,.3,1),
              box-shadow .3s cubic-bezier(.16,1,.3,1);
}
.kitten-card:hover,
.parent-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(74,124,89,.18);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,124,89,.14);
}

/* --- Image zoom-in on hover --- */
.kitten-card__img img,
.parent-card__img img,
.blog-card__img img {
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.kitten-card:hover .kitten-card__img img,
.parent-card:hover .parent-card__img img,
.blog-card:hover .blog-card__img img {
  transform: scale(1.07);
}

/* --- Pulsing WhatsApp CTA button --- */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(74,124,89,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(74,124,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,124,89,0); }
}
.nav__cta {
  animation: pulse-ring 2.5s ease-out infinite;
}
.nav__cta:hover {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,124,89,.4);
}

/* --- Trust bar slide-in on load --- */
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.trust-item {
  animation: slide-in-left .5s ease both;
}
.trust-item:nth-child(1) { animation-delay: .1s; }
.trust-item:nth-child(2) { animation-delay: .2s; }
.trust-item:nth-child(3) { animation-delay: .3s; }
.trust-item:nth-child(4) { animation-delay: .4s; }
.trust-item:nth-child(5) { animation-delay: .5s; }

/* --- Hero text entrance --- */
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow  { animation: hero-enter .6s .1s ease both; }
.hero__title    { animation: hero-enter .6s .2s ease both; }
.hero__subtitle { animation: hero-enter .6s .35s ease both; }
.hero__actions  { animation: hero-enter .6s .5s ease both; }
.hero__badges   { animation: hero-enter .6s .65s ease both; }

/* --- Stat number pop --- */
@keyframes pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.about__stat .num {
  display: inline-block;
  transition: color .3s;
}
.about__stat:hover .num {
  animation: pop .4s ease;
  color: var(--green);
}

/* --- Nav link underline slide --- */
.nav__links a {
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width .3s cubic-bezier(.16,1,.3,1);
}
.nav__links a:hover::after { width: 100%; }

/* --- Step icon bounce --- */
@keyframes bounce-light {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-8px); }
  60%       { transform: translateY(-4px); }
}
.step:hover .step__num {
  animation: bounce-light .5s ease;
}

/* ============================================
   CINEMATIC REVEALS — Text & Image
   ============================================ */

/* --- Text line reveal (clip-path slide up) ---
   Wrap any text in <span class="reveal-line"><span class="reveal-text">…</span></span>
   JS adds .revealed to trigger it */
.reveal-line {
  display: block;
  overflow: hidden;
  line-height: 1.25;
}
.reveal-text {
  display: block;
  transform: translateY(110%);
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal-line.revealed .reveal-text {
  transform: translateY(0);
}

/* --- Image wipe-in (shutter reveal) ---
   Wrap <img> in <div class="img-reveal"><img>…</div>
   A green overlay sweeps away to reveal the image */
.img-reveal {
  position: relative;
  overflow: hidden;
}
.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform .9s cubic-bezier(.77,0,.175,1);
  z-index: 2;
}
.img-reveal.revealed::after {
  transform: scaleX(0);
}
.img-reveal img {
  transform: scale(1.08);
  transition: transform .9s cubic-bezier(.77,0,.175,1) .1s;
}
.img-reveal.revealed img {
  transform: scale(1);
}

/* --- Blur-to-sharp image entrance --- */
.blur-reveal {
  opacity: 0;
  filter: blur(12px);
  transform: scale(1.04);
  transition: opacity .8s ease,
              filter .8s ease,
              transform .8s cubic-bezier(.16,1,.3,1);
}
.blur-reveal.revealed {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1);
}

/* --- Split words stagger --- */
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.split-word span {
  display: inline-block;
  transform: translateY(100%) rotate(4deg);
  opacity: 0;
  transition: transform .7s cubic-bezier(.16,1,.3,1),
              opacity .4s ease;
}
.split-ready .split-word span {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}
.split-word:nth-child(1) span { transition-delay: .00s; }
.split-word:nth-child(2) span { transition-delay: .07s; }
.split-word:nth-child(3) span { transition-delay: .14s; }
.split-word:nth-child(4) span { transition-delay: .21s; }
.split-word:nth-child(5) span { transition-delay: .28s; }
.split-word:nth-child(6) span { transition-delay: .35s; }
.split-word:nth-child(7) span { transition-delay: .42s; }
.split-word:nth-child(8) span { transition-delay: .49s; }

/* --- Section title swipe-in from left --- */
.swipe-in {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1),
              transform .7s cubic-bezier(.16,1,.3,1);
}
.swipe-in.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* --- Counter number rolling --- */
.count-roll {
  display: inline-block;
  transition: transform .04s linear;
}

/* --- Eyebrow line grow --- */
.eyebrow-line {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.eyebrow-line::before {
  content: '';
  height: 2px;
  background: var(--green);
  width: 0;
  border-radius: 2px;
  transition: width .8s cubic-bezier(.16,1,.3,1) .2s;
}
.eyebrow-line.revealed::before {
  width: 32px;
}

/* --- Hero collage glow on load --- */
@keyframes glow-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,124,89,.3); }
  50%  { box-shadow: 0 0 40px 12px rgba(74,124,89,.15); }
  100% { box-shadow: 0 20px 60px rgba(74,124,89,.25); }
}
.hero__collage-bg {
  animation: glow-pulse 2.5s ease-in-out 1s 1;
}

/* --- Reduce motion for accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
