/* ============================================
   PAWKER — An Ace in Pet Care
   Shared stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --black: #0d0d0d;
  --black-soft: #161513;
  --cream: #f3ede1;
  --gold: #c9a449;
  --gold-bright: #e8c873;
  --burgundy: #5e1a24;
  --burgundy-bright: #8c2333;
  --line: rgba(201, 164, 73, 0.22);
  --text-muted: #a59c8c;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Jost', 'Arial', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow.center::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.eyebrow.center {
  justify-content: center;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.suit {
  color: var(--gold);
  font-size: 0.85em;
}

/* ---------- Header / Nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.brand img { height: 42px; width: 42px; border-radius: 50%; }
.brand .tag {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 400;
  margin-top: 1px;
}
nav.links {
  display: flex;
  gap: 38px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav.links a {
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 4px;
}
nav.links a:hover, nav.links a.active { color: var(--gold-bright); }
nav.links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-bright) !important;
  padding: 9px 22px !important;
  border-radius: 2px;
  font-size: 12px !important;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }

.mobile-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--sans);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--black);
  font-weight: 500;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,164,73,0.28); }
.btn-outline {
  border-color: var(--gold);
  color: var(--gold-bright);
}
.btn-outline:hover { background: rgba(201,164,73,0.08); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 90px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,164,73,0.10), transparent 60%),
    var(--black);
}
.hero::before {
  content: '♠';
  position: absolute;
  font-size: 480px;
  color: rgba(201,164,73,0.025);
  top: -120px;
  right: -100px;
  pointer-events: none;
  line-height: 1;
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 50px);
  line-height: 1.15;
  margin: 0 auto 22px;
  max-width: 760px;
}
.hero .lede {
  max-width: 540px;
  margin: 0 auto 38px;
  color: var(--text-muted);
  font-size: 17px;
}
.hero-ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero-strip {
  margin-top: 64px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero-strip img { width: 100%; }

/* ---------- Trust strip ---------- */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.trust-strip .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.trust-strip span { color: var(--gold); margin-right: 9px; }

/* ---------- Sections ---------- */
section { padding: 100px 0; }
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.section-head h2 { font-size: clamp(22px, 2.8vw, 30px); }
.section-head p { color: var(--text-muted); margin-top: 16px; font-size: 16px; }
.alt-bg { background: var(--black-soft); }

/* ---------- Service cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  background: var(--black);
  padding: 46px 36px;
  transition: background 0.3s;
}
.card:hover { background: var(--black-soft); }
.card .num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 22px;
  display: block;
}
.card h3 { font-size: 22px; margin-bottom: 14px; }
.card p { color: var(--text-muted); font-size: 14.5px; }
.card .icon-suit {
  font-size: 40px;
  color: var(--burgundy-bright);
  margin-bottom: 18px;
  display: block;
}

/* ---------- Two column feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split img { border-radius: 4px; border: 1px solid var(--line); }
.split-text h2 { font-size: clamp(22px,2.8vw,30px); margin-bottom: 22px; }
.split-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 15.5px; }
.split-list { margin-top: 28px; }
.split-list li {
  list-style: none;
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: var(--cream);
}
.split-list li::before { content: '♣'; color: var(--gold); }

/* ---------- Quote / testimonial ---------- */
.quote-block {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.quote-block .mark { font-size: 60px; color: var(--gold); font-family: var(--serif); line-height: 0.5; }
.quote-block p.quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--cream);
  margin: 24px 0 22px;
  line-height: 1.7;
}
.quote-block .who { color: var(--gold); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.price-card {
  border: 1px solid var(--line);
  padding: 44px 34px;
  border-radius: 4px;
  position: relative;
  background: linear-gradient(180deg, rgba(201,164,73,0.03), transparent);
}
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,164,73,0.08), transparent);
}
.price-card .ribbon {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--gold);
  color: var(--black);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  font-weight: 600;
}
.price-card .suit-icon { font-size: 22px; color: var(--burgundy-bright); margin-bottom: 18px; }
.price-card h3 { font-size: 20px; margin-bottom: 6px; }
.price-card .sub { color: var(--text-muted); font-size: 13px; margin-bottom: 26px; }
.price-card .price { font-family: var(--serif); font-size: 42px; color: var(--gold-bright); margin-bottom: 4px; }
.price-card .price span { font-size: 14px; color: var(--text-muted); font-family: var(--sans); }
.price-card ul { margin: 26px 0 30px; }
.price-card li {
  list-style: none;
  font-size: 14px;
  color: var(--cream);
  padding: 9px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
}
.price-card li:first-child { border-top: none; }
.price-card li::before { content: '♠'; color: var(--gold); font-size: 11px; margin-top: 3px; }
.price-card .btn { width: 100%; justify-content: center; }

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

/* ---------- Areas served ---------- */
.areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.area-pill {
  border: 1px solid var(--line);
  padding: 11px 26px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.area-pill .suit { margin-right: 8px; color: #d6334a; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 90px 0;
  position: relative;
  background: linear-gradient(180deg, var(--black-soft), var(--black));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band h2 { font-size: clamp(22px,2.8vw,30px); margin-bottom: 18px; }
.cta-band p { color: var(--text-muted); margin-bottom: 34px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}
.contact-info h2 { font-size: clamp(28px,3.6vw,36px); margin-bottom: 18px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 36px; font-size: 15px; }
.contact-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: 1px solid var(--line); }
.contact-row .ci {
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 15px;
}
.contact-row .label { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-row .val { font-size: 15px; color: var(--cream); }
.contact-row .val a:hover { color: var(--gold-bright); }

.form-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 44px;
  background: var(--black-soft);
}
.form-row { margin-bottom: 22px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 9px;
}
input, select, textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 13px 16px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14.5px;
  transition: border-color 0.25s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}
textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-status {
  margin-top: 16px;
  font-size: 13.5px;
  text-align: center;
  min-height: 18px;
}
.form-status.ok { color: var(--gold-bright); }
.form-status.err { color: #d98a8a; }

/* ---------- Map ---------- */
.map-wrap {
  margin-top: 60px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; filter: grayscale(1) invert(0.92) contrast(0.9); display: block; }

/* ---------- FAQ ---------- */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: 18px; margin-bottom: 10px; font-weight: 500; display: flex; gap: 12px; }
.faq-item h3 .suit { font-size: 14px; }
.faq-item p { color: var(--text-muted); font-size: 14.5px; padding-left: 26px; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 38px; width: 38px; border-radius: 50%; }
.footer-brand span { font-family: var(--serif); font-size: 20px; color: var(--cream); }
.footer-col p, .footer-col a { color: var(--text-muted); font-size: 13.5px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.footer-suits { letter-spacing: 6px; color: var(--gold); opacity: 0.7; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,164,73,0.08), transparent 60%);
}
.page-hero h1 { font-size: clamp(28px, 4vw, 40px); }
.page-hero p { color: var(--text-muted); max-width: 480px; margin: 16px auto 0; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  nav.links { display: none; }
  .mobile-toggle {
    display: block;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 40px; height: 40px;
    border-radius: 2px;
    font-size: 16px;
  }
  .cards-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .img-col { order: -1; }
  .price-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-row.two { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  section { padding: 70px 0; }
  .hero { padding: 70px 0 60px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip .container { flex-direction: column; align-items: flex-start; gap: 10px; }
}
