/* Wilson's Animal Removal — brand stylesheet
   Brand colors (from intake):
     --orange  #ff7045  primary, action / CTAs
     --black   #1a1a1a  secondary, headings, body text
     --green   #38a169  accent, trust markers / checkmarks
     --cream   #faf5ef  page background
   Voice: playful, local, family-owned, gets the job done.
*/
:root {
  --orange: #ff7045;
  --orange-dark: #e85a2f;
  --orange-light: #fff1ea;
  --black: #1a1a1a;
  --gray-700: #444;
  --gray-500: #777;
  --gray-200: #e6e6e6;
  --gray-100: #f5f0e8;
  --green: #38a169;
  --green-dark: #2c8055;
  --cream: #faf5ef;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 18px 48px rgba(0,0,0,0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Bebas Neue', Impact, 'Arial Black', sans-serif; font-weight: 700; line-height: 1.05; letter-spacing: 0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
p { font-size: 1.0625rem; }
a { color: var(--orange-dark); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-block; padding: 16px 32px; font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.08em; border-radius: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer; border: none;
}
.btn-primary { background: var(--orange); color: var(--white); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: var(--white); color: var(--black); border: 2px solid var(--black); }
.btn-secondary:hover { background: var(--black); color: var(--white); }
.btn-call { background: var(--green); color: var(--white); }
.btn-call:hover { background: var(--green-dark); }

/* NAV */
.nav { background: var(--white); border-bottom: 4px solid var(--orange); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; max-width: 1200px; margin: 0 auto; }
.nav-brand { font-family: 'Bebas Neue', Impact, sans-serif; font-size: 1.5rem; color: var(--black); letter-spacing: 0.05em; }
.nav-brand span { color: var(--orange); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--black); font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--orange); }
.nav-phone { background: var(--green); color: var(--white); padding: 10px 18px; border-radius: 4px; font-weight: 700; }
.nav-phone:hover { background: var(--green-dark); color: var(--white); }
@media (max-width: 800px) {
  .nav-links a:not(.nav-phone) { display: none; }
}

/* HERO */
.hero {
  position: relative; color: var(--white); padding: 80px 0 100px;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 50%, rgba(255,112,69,0.40) 100%),
    url('../assets/hero-hog.jpg') center 30%/cover no-repeat;
}
.hero-inner { max-width: 900px; margin: 0 auto; text-align: center; padding: 0 24px; }
.hero-eyebrow { display: inline-block; background: var(--orange); color: var(--white); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; padding: 8px 18px; border-radius: 4px; margin-bottom: 24px; }
.hero h1 { color: var(--white); margin-bottom: 22px; text-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.hero h1 .accent { color: var(--orange); }
.hero p { font-size: clamp(1.05rem, 2vw, 1.25rem); margin: 0 auto 32px; max-width: 700px; opacity: 0.95; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-trust { margin-top: 36px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.85; }
.hero-trust strong { color: var(--orange); }

/* SECTIONS */
section { padding: 80px 0; }
.section-eyebrow { display: block; color: var(--orange); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 14px; }
.section-title { color: var(--black); margin-bottom: 18px; }
.section-intro { color: var(--gray-700); font-size: 1.125rem; max-width: 720px; margin-bottom: 48px; }

/* SERVICES */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-media.icon-tile { background: var(--black); display: flex; align-items: center; justify-content: center; }
.service-media.icon-tile svg { width: 64px; height: 64px; }
.service-media.icon-tile .stroke { fill: none; stroke: var(--orange); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.service-media.icon-tile .fill { fill: var(--orange); }
.service-body { padding: 22px 24px 26px; border-left: 5px solid var(--orange); flex: 1; }
.service-card h3 { color: var(--black); margin-bottom: 8px; }
.service-card p { color: var(--gray-700); font-size: 0.98rem; }

/* WHY */
.why { background: var(--orange-light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-image { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-list .check { flex: 0 0 28px; width: 28px; height: 28px; background: var(--green); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.why-list strong { color: var(--black); display: block; margin-bottom: 2px; }
.why-list span { color: var(--gray-700); font-size: 0.98rem; }
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; } }

/* SERVICE AREA */
.area { background: var(--black); color: var(--white); text-align: center; }
.area h2 { color: var(--white); }
.area .section-eyebrow { color: var(--orange); }
.area p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 30px; }
.area-tags { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.area-tag { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: 0.95rem; }
.area-tag.primary { background: var(--orange); border-color: var(--orange); }

/* ABOUT / STORY */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.about-image { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-body p { color: var(--gray-700); margin-bottom: 18px; font-size: 1.0625rem; line-height: 1.75; }
.about-stats { display: flex; gap: 32px; margin-top: 32px; padding-top: 28px; border-top: 2px solid var(--gray-200); }
.about-stat .num { font-family: 'Bebas Neue', Impact, sans-serif; font-size: 3rem; color: var(--orange); line-height: 1; }
.about-stat .label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); font-weight: 700; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }

/* TESTIMONIALS */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.t-card { background: var(--white); padding: 32px 28px; border-radius: 12px; box-shadow: var(--shadow-sm); position: relative; }
.t-card::before { content: "\201C"; position: absolute; top: 8px; left: 20px; font-family: Georgia, serif; font-size: 5rem; color: var(--orange); opacity: 0.25; line-height: 1; }
.t-stars { color: var(--orange); margin-bottom: 14px; font-size: 1.1rem; letter-spacing: 2px; }
.t-quote { color: var(--gray-700); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.t-name { color: var(--black); font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* GALLERY */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.gallery-item { position: relative; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .caption { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; padding: 24px 16px 12px; font-weight: 700; font-size: 0.95rem; }
.gallery-item.tall { aspect-ratio: 3 / 4; }
.gallery-note { text-align: center; margin-top: 28px; color: var(--gray-500); font-size: 0.95rem; }

/* CONTACT / CTA */
.contact { background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%); color: var(--white); text-align: center; border-top: 5px solid var(--orange); }
.contact h2 { color: var(--white); margin-bottom: 18px; }
.contact .section-eyebrow { color: var(--orange); }
.contact p { color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 36px; font-size: 1.125rem; }
.contact-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 720px; margin: 0 auto; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.18); }
.contact-info-item .label { text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8rem; font-weight: 700; color: var(--orange); margin-bottom: 6px; }
.contact-info-item .value { font-size: 1.05rem; font-weight: 700; }
.contact-info-item a { color: var(--white); text-decoration: underline; }
.btn-on-orange { background: var(--orange); color: var(--white); }
.btn-on-orange:hover { background: var(--orange-dark); }
.btn-call-light { background: var(--green); color: var(--white); }
.btn-call-light:hover { background: var(--green-dark); }

/* FOOTER */
footer { background: var(--black); color: rgba(255,255,255,0.75); padding: 40px 0; text-align: center; font-size: 0.92rem; }
footer .container { display: flex; flex-direction: column; gap: 12px; }
footer a { color: var(--orange); }
footer .small { font-size: 0.82rem; opacity: 0.6; }
