/* ============================================================
   PETOVA — Custom Landing Page
   Brand: Premium dog lifestyle gear
   Mood: Confident, earthy, editorial, not generic
   ============================================================ */

/* --- Variables --- */
:root {
  --forest: #1E3A2F;
  --forest-mid: #2D5240;
  --cream: #FAF7F2;
  --warm-grey: #F0EBE3;
  --terracotta: #C8674A;
  --terracotta-light: #E8825E;
  --text-dark: #1A1A18;
  --text-mid: #5C5C58;
  --text-light: #8A8A85;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1160px;
  --section-pad: clamp(64px, 10vw, 120px);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--warm-grey); }
::-webkit-scrollbar-thumb { background: var(--forest); border-radius: 3px; }

::selection { background: var(--terracotta); color: var(--cream); }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 32px;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.nav__tagline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--cream);
  opacity: 0.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Section Label --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
  padding: 120px 32px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.hero__circle--1 {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  top: -100px;
  right: -150px;
  border-color: rgba(250, 247, 242, 0.06);
  background: radial-gradient(circle at center, rgba(200, 103, 74, 0.08) 0%, transparent 70%);
}

.hero__circle--2 {
  width: clamp(200px, 35vw, 400px);
  height: clamp(200px, 35vw, 400px);
  bottom: -80px;
  left: -100px;
  border-color: rgba(250, 247, 242, 0.04);
  background: radial-gradient(circle at center, rgba(30, 58, 47, 0.3) 0%, transparent 70%);
}

.hero__circle--3 {
  width: clamp(100px, 20vw, 200px);
  height: clamp(100px, 20vw, 200px);
  top: 40%;
  left: 35%;
  border-color: rgba(250, 247, 242, 0.05);
  background: radial-gradient(circle at center, rgba(200, 103, 74, 0.05) 0%, transparent 60%);
}

.hero__paw-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 60%;
  opacity: 1;
}

.hero__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid rgba(200, 103, 74, 0.35);
  border-radius: 20px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 32px;
}

.hero__headline em {
  font-style: italic;
  color: var(--terracotta-light);
}

.hero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.65);
  max-width: 480px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(250, 247, 242, 0.15);
}

.hero__visual {
  position: relative;
  width: 160px;
  height: 200px;
  flex-shrink: 0;
}

.hero__badge {
  position: absolute;
}

.hero__badge--1 {
  top: 0;
  left: 0;
  animation: float 4s ease-in-out infinite;
}

.hero__badge--2 {
  bottom: 20px;
  right: -10px;
  animation: float 5s ease-in-out infinite 1s;
}

.hero__badge svg {
  width: 60px;
  height: 60px;
  display: block;
}

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

/* --- COLLECTIONS --- */
.collections {
  padding: var(--section-pad) 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.collections__header {
  margin-bottom: 64px;
}

.collections__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

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

.collection-card {
  padding: 40px 36px;
  background: var(--warm-grey);
  transition: background 0.3s ease;
}

.collection-card:hover {
  background: #EAE5DC;
}

.collection-card--travel { background: var(--warm-grey); }
.collection-card--outdoor { background: #F5F0E9; }
.collection-card--comfort { background: #FAF5F0; }

.collection-card__visual {
  margin-bottom: 28px;
}

.collection-card__icon {
  width: 80px;
  height: 80px;
}

.collection-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.collection-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.collection-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.collection-card__list li {
  font-size: 13px;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
}

.collection-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.6;
}

/* --- MANIFESTO --- */
.manifesto {
  background: var(--warm-grey);
  padding: var(--section-pad) 32px;
}

.manifesto__inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--forest);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.manifesto__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.manifesto__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
}

.manifesto__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.5;
  flex-shrink: 0;
}

.manifesto__line {
  flex: 1;
  height: 1px;
  background: rgba(30, 58, 47, 0.12);
}

.manifesto__principles {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.manifesto__principle {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}

.manifesto__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.05em;
  padding-top: 2px;
}

.manifesto__p-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
}

.manifesto__p-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
}

/* --- CLOSING --- */
.closing {
  background: var(--forest);
  padding: var(--section-pad) 32px;
}

.closing__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.closing__badge {
  margin-bottom: 40px;
  display: inline-block;
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.closing__badge svg {
  width: 60px;
  height: 60px;
}

.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.closing__sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.55);
  max-width: 540px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.closing__paw-row {
  display: flex;
  justify-content: center;
  gap: 0;
}

.closing__paw-row svg {
  width: 200px;
  height: 40px;
}

/* --- FOOTER --- */
.footer {
  background: #162D23;
  padding: 48px 32px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer__wordmark {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
}

.footer__tagline {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.4);
}

.footer__meta {
  text-align: right;
}

.footer__copy {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.5);
}

.footer__sub {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.3);
  margin-top: 4px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual { display: none; }
  .collections__grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .nav__tagline { display: none; }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 24px 60px;
  }
  .hero__stats {
    gap: 16px;
  }
  .hero__stat-num {
    font-size: 20px;
  }
  .collections, .manifesto {
    padding-left: 24px;
    padding-right: 24px;
  }
  .collection-card {
    padding: 28px 24px;
  }
  .closing {
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer__meta {
    text-align: left;
  }
}
