/* ── VARIABLES ── */
:root {
  --cream: #f5f0e8;
  --warm-white: #faf7f2;
  --sage: #7a8c6e;
  --sage-light: #a8b89a;
  --sage-dark: #4e5e44;
  --terracotta: #b5674d;
  --terracotta-light: #d4896e;
  --brown: #6b4f3a;
  --brown-light: #c4a882;
  --text: #2c2416;
  --text-muted: #7a6a56;
  --border: #ddd4c0;
}

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brown);
  letter-spacing: 0.01em;
}

.nav-logo span {
  color: var(--terracotta);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--terracotta); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 6rem 0 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  right: -8%;
  top: 0;
  bottom: 0;
  width: 58%;
  background: linear-gradient(160deg, #e8dfc8 0%, #d4c9ae 100%);
  border-radius: 60% 0 0 40% / 100% 0 0 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 3rem 4rem 6rem;
}

.hero-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.2s;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  line-height: 1.12;
  color: var(--brown);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.35s;
}

.hero h1 em {
  color: var(--terracotta);
  font-style: italic;
}

.hero-desc {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.5s;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.65s;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 18px rgba(181, 103, 77, 0.3);
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--terracotta-light);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--brown);
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--terracotta); }

.hero-image-area {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 4rem 4rem 2rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.5s;
}

.hero-illustration {
  width: 340px;
  height: 340px;
  position: relative;
}

.hero-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4a882 0%, #a8875e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: 0 20px 60px rgba(107, 79, 58, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-circle::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 80%;
  height: 80%;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}

.paw-emoji { font-size: 6rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); }

.floating-badge {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 0.6rem 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-1 { bottom: 10%; left: -8%; animation: float 3s ease-in-out infinite; }
.badge-2 { top: 8%; right: -5%; animation: float 3s ease-in-out infinite 1s; }
.badge-3 { top: 42%; left: -14%; animation: float 3s ease-in-out infinite 0.5s; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--sage-dark);
  color: rgba(255,255,255,0.85);
  padding: 1rem 4rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.trust-item { display: flex; align-items: center; gap: 0.5rem; }

/* ── SECTION SHARED ── */
section { padding: 6rem 6rem; }

.section-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-title em { color: var(--terracotta); font-style: italic; }

.section-body {
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 520px;
}

/* ── SERVICES ── */
.services { background: var(--warm-white); }

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header .section-body { margin: 0 auto; text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-light), var(--terracotta-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(107, 79, 58, 0.1); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-family: 'Lora', serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  background: var(--cream);
}

.about-visual { position: relative; }

.about-card {
  background: linear-gradient(145deg, #d4c9ae, #c4b898);
  border-radius: 32px 32px 32px 8px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 20px 60px rgba(107, 79, 58, 0.15);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.about-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--terracotta);
  color: white;
  border-radius: 20px;
  padding: 1.2rem 1.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(181, 103, 77, 0.35);
}

.about-accent strong { display: block; font-size: 1.6rem; }

.about-content .section-body { margin-bottom: 1.5rem; }

.about-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-family: 'Lora', serif;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-detail-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ── UPDATES ── */
.updates {
  background: var(--sage-dark);
  color: white;
  text-align: center;
  border-radius: 32px;
  margin: 0 4rem;
  padding: 5rem 4rem;
}

.updates .section-label { color: var(--sage-light); }
.updates .section-title { color: white; margin: 0 auto 1rem; }
.updates .section-title em { color: var(--terracotta-light); }
.updates .section-body { color: rgba(255,255,255,0.7); margin: 0 auto 2.5rem; text-align: center; }

.updates-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.update-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.update-feature-icon { font-size: 1.8rem; }

.btn-light {
  background: white;
  color: var(--sage-dark);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.btn-light:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* ── CONTACT ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  background: var(--warm-white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); }

.form-group textarea { resize: vertical; min-height: 100px; }

/* Honeypot */
.hp-field { display: none !important; }

/* Form feedback */
.form-message {
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-family: 'Lora', serif;
  font-size: 0.92rem;
  display: none;
}

.form-message.success {
  background: #eaf4ea;
  color: #2d6a2d;
  border: 1px solid #b5d9b5;
  display: block;
}

.form-message.error {
  background: #fdf0ee;
  color: #8b2e1a;
  border: 1px solid #e8b5a8;
  display: block;
}

.contact-info .section-body { margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ── FOOTER ── */
footer {
  background: var(--brown);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 2.5rem 4rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

footer .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brown-light);
  margin-bottom: 0.5rem;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 6rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-content { padding: 5rem 2rem 2rem; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-cta { justify-content: center; }
  .hero-image-area { padding: 2rem; }
  .hero-illustration { width: 240px; height: 240px; }
  .hero-bg-shape { display: none; }
  .badge-3 { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .contact { grid-template-columns: 1fr; gap: 3rem; }
  section { padding: 4rem 2rem; }
  .updates { margin: 0 1rem; padding: 3rem 2rem; }
  .divider { margin: 0 2rem; }
  .trust-bar { gap: 2rem; flex-wrap: wrap; padding: 1rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
