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

:root {
  --warm-cream: #FDF6EE;
  --warm-sand: #F5E8D8;
  --warm-clay: #C97B4A;
  --warm-clay-dark: #A85F33;
  --warm-brown: #5C4033;
  --warm-brown-light: #7A5D4E;
  --soft-green: #6B8E5A;
  --soft-green-dark: #557044;
  --text-dark: #2D1F15;
  --text-body: #4A3828;
  --text-muted: #8B7B6D;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(92, 64, 51, 0.08);
  --shadow-md: 0 6px 24px rgba(92, 64, 51, 0.12);
  --shadow-lg: 0 16px 48px rgba(92, 64, 51, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', Arial, sans-serif;
  color: var(--text-body);
  background: var(--warm-cream);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

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

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 600;
}

.eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-clay);
  margin-bottom: 12px;
}

.accent-word {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--warm-clay);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--warm-clay);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201, 123, 74, 0.35);
}

.btn-primary:hover {
  background: var(--warm-clay-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 123, 74, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--warm-clay);
  border: 2px solid var(--warm-clay);
}

.btn-outline:hover {
  background: var(--warm-clay);
  color: var(--white);
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition);
}

#header.scrolled {
  background: rgba(253, 246, 238, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(92, 64, 51, 0.1);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.4rem;
  min-width: 0;
  overflow: hidden;
}

.logo-icon {
  color: var(--warm-clay);
  flex-shrink: 0;
}

.logo-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#header.scrolled .logo { color: var(--text-dark); }
#header.scrolled .logo-icon { color: var(--warm-clay); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
  white-space: nowrap;
}

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

#header.scrolled .nav-links a {
  color: var(--text-body);
}

#header.scrolled .nav-links a:hover { color: var(--warm-clay); }

.nav-cta {
  background: var(--warm-clay);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 12px rgba(201, 123, 74, 0.3);
}

.nav-cta:hover {
  background: var(--warm-clay-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
  position: relative;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

#header.scrolled .hamburger span { background: var(--text-dark); }

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

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45, 31, 21, 0.55) 0%, rgba(45, 31, 21, 0.45) 50%, rgba(45, 31, 21, 0.65) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F5DCC6;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  font-weight: 600;
  max-width: 700px;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .accent-word {
  color: #F0B27A;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin-bottom: 36px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.9rem;
}

.trust-item svg { color: #F0B27A; }

/* ===== SERVICES ===== */
#services {
  padding: 100px 0;
  background: var(--warm-cream);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(201, 123, 74, 0.08);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 123, 74, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--warm-sand), #F0DCC8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-clay);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-card > p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-body);
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  background: var(--warm-sand);
  border-radius: 50%;
}

.service-features li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--warm-clay);
  border-radius: 50%;
}

/* ===== ABOUT ===== */
#about {
  padding: 100px 0;
  background: var(--warm-sand);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--warm-clay);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-number {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 4px;
  opacity: 0.9;
}

.about-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 20px;
}

.about-content > p {
  margin-bottom: 18px;
  color: var(--text-body);
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--warm-clay);
  line-height: 1;
}

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

/* ===== GALLERY ===== */
#gallery {
  padding: 100px 0;
  background: var(--warm-cream);
}

.gallery-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== PRICING ===== */
#pricing {
  padding: 100px 0;
  background: var(--warm-sand);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 123, 74, 0.08);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-featured {
  border: 2px solid var(--warm-clay);
  box-shadow: 0 8px 32px rgba(201, 123, 74, 0.2);
}

.pricing-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-clay);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--warm-clay);
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(201, 123, 74, 0.08);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--soft-green);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B8E5A' stroke-width='3'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.pricing-card .btn { width: 100%; }

.pricing-note {
  text-align: center;
  margin-top: 36px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 100px 0;
  background: var(--warm-cream);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 123, 74, 0.08);
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--text-body);
  margin: 16px 0 24px;
  font-style: italic;
  flex-grow: 1;
}

.stars {
  display: flex;
  gap: 4px;
}

.star {
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C97B4A'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.testimonial-author {
  border-top: 1px solid rgba(201, 123, 74, 0.12);
  padding-top: 16px;
}

.author-name {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.author-dog {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== CONTACT ===== */
#contact {
  padding: 100px 0;
  background: var(--warm-sand);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 18px;
}

.contact-info > p {
  margin-bottom: 32px;
  color: var(--text-body);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--text-body);
}

.contact-item svg {
  color: var(--warm-clay);
  flex-shrink: 0;
}

.contact-item a:hover { color: var(--warm-clay); }

.contact-hours {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

.contact-hours h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.contact-hours p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== FORM ===== */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.form-intro {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group + .form-group { margin-top: 0; }

.form-group:not(.form-row .form-group) {
  margin-bottom: 16px;
}

label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

input, select, textarea {
  padding: 12px 16px;
  border: 2px solid #E8DDD0;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--warm-cream);
  transition: border-color var(--transition);
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--warm-clay);
}

textarea { resize: vertical; }

.form-submit {
  width: 100%;
  margin-top: 8px;
}

#formStatus p { font-weight: 600; font-size: 0.95rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--warm-brown);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .logo-icon { color: #F0B27A; }

.footer-brand p {
  font-size: 0.92rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  font-size: 0.92rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-links a:hover { color: #F0B27A; }

.footer-area {
  font-size: 0.92rem;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom p { margin-bottom: 8px; }

.footer-bottom p:last-child { margin-bottom: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
}
.nav-overlay.open { display: block; }

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--warm-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 80px 32px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    z-index: 9999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--text-body) !important;
    font-size: 1.1rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hamburger { display: flex; flex-shrink: 0; }

  .hero-content { padding-top: 100px; }

  .hero-trust { gap: 20px; }

  .trust-item { font-size: 0.82rem; }

  .about-badge {
    right: 0;
    bottom: -16px;
    padding: 16px 22px;
  }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .form-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; }
  .container { padding: 0 20px; }
  .contact-form-wrap { padding: 28px 20px; }
  .service-card { padding: 28px 24px; }
}
