/* ============================================================
   Doggie STYLE Seattle — modern stylesheet
   Pure CSS, responsive, system-font friendly (offline-safe)
   ============================================================ */

:root {
  --forest: #3a5a40;
  --forest-dark: #2c4633;
  --olive: #8b8b00;
  --gold: #b09a3e;
  --cream: #faf7f0;
  --cream-dark: #f0ead9;
  --ink: #2f2f2f;
  --ink-soft: #55544e;
  --line: #e4dcc8;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(58, 90, 64, 0.12);
  --radius: 14px;
  --maxw: 1120px;
  --font-body: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-head: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--olive); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--forest-dark);
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 700;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--olive); color: #fff; }
.btn-primary:hover { background: var(--gold); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-big { padding: 15px 34px; font-size: 1.1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 22px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand-text { line-height: 1.1; }
.brand-text strong {
  font-size: 1.25rem;
  color: var(--forest-dark);
  display: block;
  font-family: var(--font-head);
  letter-spacing: 0.3px;
}
.brand-text span { font-size: 0.8rem; color: var(--ink-soft); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--forest);
  color: var(--forest);
  font-size: 1.5rem;
  border-radius: 8px;
  padding: 2px 10px;
  cursor: pointer;
  line-height: 1.4;
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.main-nav a {
  display: block;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.97rem;
}
.main-nav a:hover { background: var(--cream-dark); color: var(--forest); text-decoration: none; }
.main-nav a[aria-current="page"] { background: var(--forest); color: #fff; }
.nav-cta {
  padding: 9px 18px !important;
  background: var(--olive) !important;
  color: #fff !important;
}
.nav-cta:hover { background: var(--gold) !important; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(176,154,62,0.18), transparent 45%),
    linear-gradient(135deg, #3a5a40 0%, #2c4633 100%);
  color: #fff;
  padding: 64px 0 70px;
  text-align: center;
}
.hero h1 { color: #fff; font-size: 2.7rem; max-width: 820px; margin: 0 auto 0.5em; }
.hero .lead { font-size: 1.25rem; max-width: 760px; margin: 0 auto 1.8em; color: #e7edd9; }
.hero .lead strong { color: #fff; }
.hero .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero img.hero-badge { margin-top: 28px; border-radius: 12px; box-shadow: var(--shadow); }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-alt { background: var(--white); }
.section-tight { padding: 40px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head .kicker {
  color: var(--olive);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

/* Cards / grids */
.grid {
  display: grid;
  gap: 26px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.card h3 { margin-top: 0; }
.card .icon { font-size: 2rem; margin-bottom: 8px; }
.card ul { padding-left: 18px; margin: 0.5rem 0; }

/* Steps / list */
.step-list { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.step-list li {
  counter-increment: step;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 18px;
  position: relative;
  padding-left: 84px;
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 26px;
  top: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

/* NAP / contact cards */
.nap-card { text-align: left; }
.nap-card h3 { display: flex; align-items: center; gap: 8px; }
.contact-line { margin: 12px 0; }
.contact-line .lbl { font-weight: 700; color: var(--forest-dark); display: block; }
.phone-big { font-size: 1.6rem; font-weight: 800; color: var(--forest-dark); }

/* Table (pricing) */
.table-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
table.pricing {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.pricing th {
  text-align: left;
  background: var(--forest);
  color: #fff;
  padding: 14px 18px;
}
.pricing td { padding: 13px 18px; border-top: 1px solid var(--line); }
.pricing tr:nth-child(even) td { background: #faf8f1; }

/* Callout */
.callout {
  background: var(--cream-dark);
  border-left: 5px solid var(--olive);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 26px 0;
}
.callout strong { color: var(--forest-dark); }

/* Feature image rows */
.photorow { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center; }
.photorow.rev { grid-template-columns: 1fr 1.2fr; }
.photorow img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.gallery-grid figure { margin: 0; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; }
.gallery-grid figcaption { text-align: center; font-size: 0.85rem; color: var(--ink-soft); margin-top: 6px; }

/* Testimonials */
.testimonial { font-style: italic; }
.testimonial footer { font-style: normal; color: var(--ink-soft); margin-top: 10px; }
.testimonial footer::before { content: "— "; color: var(--olive); }

/* FAQ */
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq summary {
  font-weight: 700;
  color: var(--forest-dark);
  cursor: pointer;
  font-size: 1.08rem;
}
.faq details p { margin: 14px 0 0; }

/* Divider / badge */
.ruler { border: 0; border-top: 1px solid var(--line); margin: 0; }
.badge {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-dark);
  color: #d8ddca;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 34px;
  padding: 52px 0 40px;
}
.site-footer h4 { color: #fff; margin-top: 0; font-size: 1.05rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #cfd6bf; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  text-align: center;
  font-size: 0.9rem;
}
.credits { font-size: 0.82rem; opacity: 0.8; margin-top: 6px; }

/* ---------- Breadcrumbs (inner pages) ---------- */
.breadcrumbs { font-size: 0.9rem; color: var(--ink-soft); margin: 18px 0; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li+li::before { content: "›"; margin-right: 6px; color: var(--olive); }
.breadcrumbs a { color: var(--forest); }

/* ---------- Contact form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.field label { display: block; font-weight: 700; color: var(--forest-dark); margin-bottom: 6px; }
.field.full { grid-column: 1 / -1; }
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #fdfcf8;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--olive); border-color: transparent; }
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .photorow, .photorow.rev { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2rem; }
  .hero h1 { font-size: 2.1rem; }
  .hero { padding: 44px 0 48px; }
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; text-align: center; }
  .main-nav a { border-radius: 8px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .step-list li { padding-left: 26px; padding-top: 76px; }
  .step-list li::before { top: 22px; left: 26px; }
  .hero-actions .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
