:root {
  --bg: #FDF6EC;
  --fg: #1a1208;
  --fg-muted: #6b5a45;
  --accent: #B85C38;
  --accent-light: #D4845A;
  --sage: #7A9E7E;
  --sage-light: #a8c4ab;
  --cream: #F5EDE0;
  --border: #E0D5C5;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
}

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

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

/* ── NAVBAR ── */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 40px 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(184, 92, 56, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(122, 158, 126, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero-stat {
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.hero-species-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.species-tag {
  padding: 5px 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ── SERVICES ── */
.services {
  padding: 100px 40px;
  background: var(--white);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 600px;
  line-height: 1.2;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(184, 92, 56, 0.1);
}
.service-card--featured {
  background: linear-gradient(135deg, #FFF9F4 0%, #FDF6EC 100%);
  border-color: var(--accent-light);
}
.service-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-icon {
  margin-bottom: 20px;
}
.service-name {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--fg);
}
.service-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

/* ── SPECIES ── */
.species {
  padding: 100px 40px;
  background: var(--cream);
}
.species-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.species-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.species-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.species-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.species-dot--reptile { background: #7A9E7E; }
.species-dot--bird { background: #B85C38; }
.species-dot--fish { background: #5B8DB8; }
.species-dot--small { background: #C4A882; }
.species-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.species-content p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── PROCESS ── */
.process {
  padding: 100px 40px;
  background: var(--white);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 0;
}
.process-step {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184, 92, 56, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 100px 40px;
  background: linear-gradient(160deg, #1a1208 0%, #2d1f14 100%);
}
.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-quote {
  margin-bottom: 40px;
}
.quote-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: #F5EDE0;
  line-height: 1.4;
}
.philosophy-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.philosophy-body p {
  font-size: 0.97rem;
  color: rgba(245, 237, 224, 0.65);
  line-height: 1.75;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 40px;
  background: var(--bg);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.closing-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.closing-badge {
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg-muted);
}

/* ── FOOTER ── */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 300px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-align: right;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--accent);
  color: white;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .species-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-contact { text-align: left; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 24px 80px; }
  .services, .species, .process, .closing { padding: 72px 24px; }
  .philosophy { padding: 72px 24px; }
  .navbar { padding: 16px 24px; }
  .footer { padding: 32px 24px; }
}