/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #FAF7F2;
  --brown: #3D2B1F;
  --brown-light: #6B4A38;
  --tan: #C19A6B;
  --tan-light: #E8D5C0;
  --mustard: #D4A017;
  --mustard-light: #F5E6A3;
  --green: #4A7C59;
  --green-light: #D4E8DB;
  --text: #2C1F14;
  --text-muted: #7A5C4A;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(61, 43, 31, 0.10);
  --shadow-lg: 0 8px 48px rgba(61, 43, 31, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
h3 { font-size: 1.4rem; margin-bottom: 8px; }

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 8px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 48px;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-block;
  background: var(--brown);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}

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

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--brown);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--tan);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--brown);
  background: var(--tan-light);
}

.btn-nav {
  background: var(--mustard);
  color: var(--brown);
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-nav:hover {
  background: var(--tan);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 16px;
}

/* ===========================
   NAV
=========================== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tan-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

nav ul li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

nav ul li a:not(.btn-nav):hover {
  color: var(--brown);
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 80px 32px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--brown);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.hero-image {
  flex: 0 0 420px;
}

.hero-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--tan-light);
  box-shadow: var(--shadow-lg);
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-frame.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tan);
  font-size: 5rem;
}

.hero-img-frame.placeholder::after {
  content: "🐕";
  font-size: 6rem;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--mustard);
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

/* ===========================
   STATS
=========================== */
.stats {
  background: var(--brown);
  color: var(--cream);
  padding: 96px 24px;
}

.stats h2 { color: var(--cream); margin-bottom: 8px; }
.stats .section-eyebrow { color: var(--mustard); }
.stats .section-sub { color: rgba(250, 247, 242, 0.6); margin-bottom: 56px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}

.stat-label {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--cream);
}

.stat-bar {
  height: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}

.stat-fill {
  height: 100%;
  width: var(--pct);
  background: linear-gradient(90deg, var(--mustard), var(--tan));
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-note {
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.5;
}

.stat-card-bread {
  border-color: rgba(212, 160, 23, 0.35);
  background: rgba(212, 160, 23, 0.08);
}

.stat-card-bread .stat-fill {
  background: linear-gradient(90deg, #D4A017, #e8c87a);
}

/* ===========================
   HOW IT WORKS
=========================== */
.how-it-works {
  padding: 96px 24px;
  text-align: center;
}

.how-it-works h2 { margin-bottom: 56px; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--tan-light);
  box-shadow: var(--shadow);
  text-align: left;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--tan-light);
  margin-bottom: 12px;
  line-height: 1;
}

.step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ===========================
   SERVICES
=========================== */
.services {
  background: var(--tan-light);
  padding: 96px 24px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(61, 43, 31, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-featured {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.card-featured h3,
.card-featured .card-duration,
.card-featured p,
.card-featured li {
  color: var(--cream);
}

.card-featured li::before {
  color: var(--mustard);
}

.card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--mustard);
  color: var(--brown);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
}

.card-duration {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: -6px;
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.card-featured .card-price {
  color: var(--mustard);
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0;
}

.card li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.card .btn-primary {
  margin-top: auto;
}

.card-featured .btn-primary {
  background: var(--mustard);
  color: var(--brown);
}

.card-featured .btn-primary:hover {
  background: #e6b21e;
}

/* ===========================
   GALLERY
=========================== */
.gallery {
  padding: 96px 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--tan-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.placeholder-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  padding: 16px;
  background: var(--tan-light);
  border: 2px dashed var(--tan);
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials {
  background: var(--cream);
  padding: 96px 24px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--tan-light);
  box-shadow: var(--shadow);
}

.stars {
  color: var(--mustard);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}

.author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ===========================
   CONTACT
=========================== */
.contact {
  background: var(--tan-light);
  padding: 96px 24px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-text h2 { margin-bottom: 16px; }

.contact-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-detail {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-left: 3px solid var(--mustard);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--tan-light);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}

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

.form-group textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--brown);
  color: var(--cream);
  padding: 48px 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-left .nav-logo {
  display: block;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-left p {
  font-size: 0.88rem;
  color: rgba(250,247,242,0.6);
  line-height: 1.6;
}

.footer-right {
  text-align: right;
}

.footer-right p {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.6);
  margin-bottom: 6px;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  max-width: 320px;
  margin-top: 12px !important;
}

/* ===========================
   ANIMATIONS
=========================== */
.stat-fill {
  width: 0;
}

.stat-fill.animated {
  width: var(--pct);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 860px) {
  .hero {
    flex-direction: column-reverse;
    padding: 48px 24px;
    min-height: auto;
    gap: 40px;
  }

  .hero-image {
    flex: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-right {
    text-align: left;
  }

  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--cream);
    padding: 88px 32px 40px;
    box-shadow: -8px 0 40px rgba(61, 43, 31, 0.15);
    z-index: 100;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  nav ul.open {
    display: flex;
    transform: translateX(0);
  }

  nav ul li {
    width: 100%;
    border-bottom: 1px solid var(--tan-light);
  }

  nav ul li:last-child {
    border-bottom: none;
    margin-top: 20px;
  }

  nav ul li a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
  }

  nav ul li a.btn-nav {
    display: inline-block;
    padding: 14px 28px;
    width: 100%;
    text-align: center;
  }

  /* Overlay behind mobile menu */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 31, 20, 0.4);
    z-index: 99;
    backdrop-filter: blur(2px);
  }

  .nav-overlay.open {
    display: block;
  }

  .card-featured {
    transform: none;
  }
}
