/* ═══════════════════════════════════
   PawListed — Thomasville, GA
   Forest green, terracotta, warm cream
   Playfair Display + DM Sans
═══════════════════════════════════ */

:root {
  --bg:         #FBF7F0;
  --bg-alt:     #F2EDE3;
  --green:      #1A3828;
  --green-mid:  #244B36;
  --green-light:#2D5E43;
  --terracotta: #C85A30;
  --terracotta-light: #D9754A;
  --sage:       #E8E2D5;
  --cream-dark: #EAE2D4;
  --text:       #1A1A16;
  --text-mid:   #3D3D35;
  --text-light: #6B6B5F;
  --text-faint: #9E9E94;
  --white:      #FFFFFF;
  --border:     #DDD8CE;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251,247,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

/* ── HERO ──────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Left: Visual panel */
.hero-visual {
  background: var(--green);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
}

/* Rose petal pattern via CSS */
.hero-rose-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80px 60px at 15% 25%, rgba(200,90,48,0.18) 0%, transparent 100%),
    radial-gradient(ellipse 100px 70px at 85% 15%, rgba(200,90,48,0.12) 0%, transparent 100%),
    radial-gradient(ellipse 70px 50px at 70% 55%, rgba(200,90,48,0.15) 0%, transparent 100%),
    radial-gradient(ellipse 90px 65px at 30% 70%, rgba(200,90,48,0.10) 0%, transparent 100%),
    radial-gradient(ellipse 60px 45px at 55% 40%, rgba(255,255,255,0.04) 0%, transparent 100%),
    radial-gradient(ellipse 120px 80px at 50% 85%, rgba(200,90,48,0.08) 0%, transparent 100%),
    linear-gradient(160deg, #1A3828 0%, #244B36 50%, #1A3828 100%);
}

/* Large stylized rose watermark */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background:
    radial-gradient(ellipse 200px 200px at 50% 50%, rgba(200,90,48,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 260px 260px at 50% 50%, rgba(200,90,48,0.10) 0%, transparent 80%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Leaf accents */
.hero-visual::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 200px;
  bottom: 0; right: 0;
  background:
    radial-gradient(ellipse 150px 80px at 100% 100%, rgba(45,94,67,0.6) 0%, transparent 100%),
    radial-gradient(ellipse 100px 60px at 80% 90%, rgba(36,75,54,0.5) 0%, transparent 100%);
  z-index: 1;
}

.hero-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  display: block;
}

.hero-visual-copy {
  position: relative;
  z-index: 2;
}
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Right: Content */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5rem 5rem;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 460px;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 2.5rem;
}

/* ── ABOUT ─────────────────────────── */
.about {
  padding: 7rem 5rem;
  background: var(--white);
}
.about-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1100px;
}
.about-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  margin-top: 1.25rem;
}
.about-block p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.about-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--green);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-icon::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.about-icon--second { background: var(--terracotta); }
.about-icon--third  { background: var(--green-light); }

/* ── MANIFESTO ─────────────────────── */
.manifesto {
  padding: 7rem 5rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--green);
  line-height: 1.45;
  max-width: 800px;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
  border-left: 3px solid var(--terracotta);
}
.manifesto-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 680px;
  margin-bottom: 1.25rem;
}
.manifesto-body:last-child { margin-bottom: 0; }

/* ── CATEGORIES ────────────────────── */
.categories {
  padding: 7rem 5rem;
  background: var(--green);
}
.categories-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.categories-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.category-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.25s, border-color 0.25s;
  cursor: pointer;
}
.category-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.25);
}
.cat-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* Groom icon — scissors shape */
.cat-icon--groom::after {
  content: '';
  width: 22px; height: 22px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
}
/* Vet icon — cross */
.cat-icon--vet::after {
  content: '';
  width: 20px; height: 20px;
  position: absolute;
  background: rgba(255,255,255,0.7);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 3px;
}
.cat-icon--vet::before {
  content: '';
  width: 8px; height: 20px;
  background: var(--green);
  position: absolute;
  z-index: 1;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 2px;
}
/* Store icon — house shape */
.cat-icon--store::after {
  content: '';
  width: 0; height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 18px solid rgba(255,255,255,0.7);
  position: absolute;
  top: 30%; left: 50%;
  transform: translateX(-50%);
}
.cat-icon--store::before {
  content: '';
  width: 16px; height: 12px;
  background: rgba(255,255,255,0.7);
  position: absolute;
  bottom: 28%; left: 50%;
  transform: translateX(-50%);
  border-radius: 2px 2px 0 0;
}
/* Board icon — paw print */
.cat-icon--board::after {
  content: '';
  width: 18px; height: 16px;
  background: rgba(255,255,255,0.7);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.cat-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  font-family: 'Playfair Display', serif;
}
.cat-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* ── CLOSING / PRICING ─────────────── */
.closing {
  background: var(--bg);
}
.closing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.closing-copy {
  padding: 7rem 5rem 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.closing-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 3rem;
}
.closing-plans {
  display: flex;
  gap: 1.5rem;
}
.plan {
  flex: 1;
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
}
.plan--featured {
  border-color: var(--green);
  border-width: 2px;
  position: relative;
}
.plan--featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 20px;
}
.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.plan-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.plan-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.plan-features li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}
.plan--featured .plan-features li::before {
  background: var(--green);
}

/* Right image panel */
.closing-image-panel {
  position: relative;
  overflow: hidden;
  background: var(--green);
}
.closing-image-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 300px 300px at 30% 40%, rgba(200,90,48,0.20) 0%, transparent 80%),
    radial-gradient(ellipse 200px 150px at 70% 70%, rgba(200,90,48,0.12) 0%, transparent 80%),
    linear-gradient(135deg, #1A3828 0%, #244B36 50%, #1A3828 100%);
}
/* Brick-paved street pattern */
.closing-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 2px,
      transparent 2px,
      transparent 40px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 2px,
      transparent 2px,
      transparent 20px
    );
}
.closing-image-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
}
.closing-image-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 0.75rem;
}
.closing-image-attr {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ── FOOTER ─────────────────────────── */
.footer {
  background: var(--green);
  padding: 5rem 5rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-city {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: right;
}
.footer-city-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-city-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}
.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ───────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 45vh;
  }
  .hero-content {
    padding: 4rem 2rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about { padding: 5rem 2rem; }
  .manifesto { padding: 5rem 2rem; }
  .categories { padding: 5rem 2rem; }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .closing-inner {
    grid-template-columns: 1fr;
  }
  .closing-copy {
    padding: 5rem 2rem;
  }
  .closing-image-panel {
    min-height: 300px;
  }
  .closing-plans {
    flex-direction: column;
  }
  .footer {
    padding: 3rem 2rem 0;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-city { text-align: left; }
  .about-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .stat-divider { display: none; }
  .category-grid { grid-template-columns: 1fr 1fr; }
}