/* ==========================================================================
   THE DOG BLOKE — Brand stylesheet
   Calm, masculine, outdoorsy, premium-in-a-quiet-way.
   ========================================================================== */

:root {
  /* Brand palette */
  --navy:        #0F1B26;
  --navy-soft:   #15263A;
  --steel:       #36566F;
  --soft-blue:   #6D8FA6;
  --brown:       #8C6F55;
  --brown-deep:  #6E5440;
  --cream:       #F2EFE6;
  --cream-warm:  #ECE6D6;
  --paper:       #FAF8F2;
  --line:        rgba(15, 27, 38, 0.08);
  --line-light:  rgba(15, 27, 38, 0.12);
  --line-on-dark: rgba(242, 239, 230, 0.14);

  /* Type */
  --serif:  'Fraunces', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --slab:   'Roboto Slab', 'Rockwell', Georgia, serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono:   'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;

  /* Sizing */
  --container: 1240px;
  --container-narrow: 920px;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(15, 27, 38, 0.06);
  --shadow-md: 0 12px 32px -16px rgba(15, 27, 38, 0.25);
  --shadow-lg: 0 24px 64px -24px rgba(15, 27, 38, 0.4);

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--steel); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--navy); }
button { font: inherit; cursor: pointer; }

/* Type scale */
h1, h2, h3, h4, h5 {
  font-family: var(--slab);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
.lede { font-size: clamp(1.1rem, 1.5vw, 1.25rem); color: #2a3a48; line-height: 1.6; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--soft-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--soft-blue);
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -2px;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: clamp(56px, 8vw, 112px) 0; }
.section-tight { padding: clamp(40px, 5vw, 72px) 0; }

/* ============================  Navigation  ============================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 242, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header.on-dark {
  background: rgba(15, 27, 38, 0.65);
  border-bottom: 1px solid var(--line-on-dark);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--slab);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.brand-wordmark { line-height: 1; }
.brand-wordmark .small {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--soft-blue);
  margin-top: 4px;
  font-weight: 500;
}
.on-dark .brand,
.on-dark .brand-wordmark .small { color: var(--cream); }
.on-dark .brand-wordmark .small { color: var(--soft-blue); }

.nav-links {
  display: flex; gap: 28px; align-items: center;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
}
.on-dark .nav-links a { color: var(--cream); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--steel);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 12px; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-light);
  width: 44px; height: 44px;
  border-radius: var(--radius);
  align-items: center; justify-content: center;
  color: var(--navy);
}
.on-dark .nav-toggle { color: var(--cream); border-color: var(--line-on-dark); }
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 880px) {
  .nav-links {
    display: none;
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 14px 28px;
    border-top: 1px solid var(--line);
  }
  .nav-links a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-links .mobile-cta { display: block; }
}
.nav-links .mobile-cta { display: none; }

/* ============================  Buttons  ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--steel);
  border-color: var(--steel);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--cream);
}
.on-dark .btn-secondary {
  color: var(--cream);
  border-color: var(--cream);
}
.on-dark .btn-secondary:hover {
  background: var(--cream);
  color: var(--navy);
}
.btn-ghost {
  background: transparent;
  color: var(--steel);
  padding: 8px 0;
}
.btn-ghost:hover { color: var(--navy); }
.btn-block { width: 100%; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================  Hero  ============================ */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) 0 clamp(80px, 10vw, 140px);
  border-bottom: 1px solid var(--line-on-dark);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(109, 143, 166, 0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(54, 86, 111, 0.25), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.hero h1 {
  color: var(--cream);
  margin-bottom: 24px;
}
.hero .lede { color: rgba(242, 239, 230, 0.82); max-width: 540px; }
.hero .eyebrow { color: var(--soft-blue); }
.hero-cta-row { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 56px;
  display: flex; gap: 36px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line-on-dark);
}
.hero-meta-item .num {
  font-family: var(--slab);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.hero-meta-item .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--soft-blue);
  margin-top: 6px;
}
.hero-figure {
  position: relative;
  display: flex; justify-content: center;
  align-items: center;
}
.hero-figure img {
  max-width: 520px; width: 100%;
  /* Image is on navy already — no shadow needed */
  mix-blend-mode: normal;
}
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .hero-figure img { max-width: 320px; }
}

/* ============================  Cards / Services  ============================ */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--soft-blue);
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--cream-warm);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--steel);
}
.card h3 { margin-bottom: 12px; }
.card p { color: #3b4a59; margin-bottom: 0; }
.card .price {
  font-family: var(--slab);
  font-size: 1.4rem;
  color: var(--navy);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.card .price .unit {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--soft-blue);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 6px;
}
.card ul {
  list-style: none; padding: 0; margin: 16px 0 0;
}
.card ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
  color: #3b4a59;
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 12px; height: 1px;
  background: var(--brown);
}

/* ============================  Two-column / Steve  ============================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.two-col.reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse > :first-child { order: initial; }
}
.portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.portrait--logo { padding: 40px; }
.portrait--logo img { object-fit: contain; }

/* ============================  Process strip  ============================ */
.process {
  background: var(--navy);
  color: var(--cream);
}
.process h2 { color: var(--cream); }
.process .eyebrow { color: var(--soft-blue); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 28px;
  height: 1px;
  background: var(--line-on-dark);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: left;
}
.process-step .num {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--soft-blue);
  color: var(--soft-blue);
  font-family: var(--slab);
  font-weight: 700;
  margin-bottom: 20px;
}
.process-step h4 { color: var(--cream); margin-bottom: 8px; font-family: var(--slab); }
.process-step p { color: rgba(242, 239, 230, 0.7); font-size: 0.92rem; margin: 0; }
@media (max-width: 880px) {
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
}

/* ============================  Testimonials  ============================ */
.testimonials { background: var(--cream); }
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column;
  gap: 20px;
}
.testimonial blockquote {
  font-family: var(--slab);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}
.testimonial blockquote::before { content: "\201C"; font-size: 2rem; color: var(--soft-blue); line-height: 0; vertical-align: -.2em; margin-right: 4px; }
.testimonial-meta {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--steel);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--slab);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-meta .name { font-weight: 600; color: var(--navy); display: block; }
.testimonial-meta .dog { font-size: 0.82rem; color: var(--soft-blue); }

/* ============================  Trust / values  ============================ */
.trust-strip {
  background: var(--paper);
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 16px;
}
.trust-item-icon {
  width: 40px; height: 40px;
  color: var(--steel);
  flex-shrink: 0;
}
.trust-item h4 {
  margin: 0 0 2px;
  font-family: var(--slab);
  font-size: 0.95rem;
  color: var(--navy);
}
.trust-item p {
  margin: 0;
  font-size: 0.82rem;
  color: #4a5b6c;
  line-height: 1.4;
}
@media (max-width: 880px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust-strip-inner { grid-template-columns: 1fr; }
}

/* ============================  Coverage / Map  ============================ */
.coverage {
  background: var(--cream-warm);
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .coverage-grid { grid-template-columns: 1fr; } }
.area-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 24px;
}
.area-list li {
  padding: 6px 0 6px 18px;
  position: relative;
  font-size: 0.95rem;
  color: var(--navy);
}
.area-list li::before {
  content: "•"; position: absolute; left: 0; color: var(--brown);
}
.map-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

/* ============================  Footer  ============================ */
.site-footer {
  background: var(--navy);
  color: rgba(242, 239, 230, 0.7);
  padding: 80px 0 24px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-on-dark);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h5 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 18px;
  font-weight: 600;
}
.site-footer a { color: rgba(242, 239, 230, 0.7); display: inline-block; padding: 4px 0; }
.site-footer a:hover { color: var(--cream); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.footer-brand { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; color: var(--cream); }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(242, 239, 230, 0.5);
  gap: 16px;
}

/* ============================  Forms  ============================ */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 22px; }
.field label,
.field-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="password"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(54, 86, 111, 0.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.field .hint { font-size: 0.82rem; color: #5a6b7c; margin-top: 6px; }

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.option-pill {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 14px 12px;
  background: #fff;
  border: 1.5px solid var(--line-light);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy);
  cursor: pointer;
  text-align: center;
  transition: all .2s var(--ease);
  user-select: none;
}
.option-pill input { position: absolute; opacity: 0; pointer-events: none; }
.option-pill:hover { border-color: var(--soft-blue); }
.option-pill.is-selected {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--cream);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

/* ============================  Stepper (booking)  ============================ */
.stepper {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
  counter-reset: step;
}
.stepper-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: 50px;
  font-size: 0.82rem;
  color: #5a6b7c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.stepper-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--line-light);
  color: var(--soft-blue);
  font-family: var(--slab);
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.stepper-item::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 50%;
  width: 100%;
  height: 1px;
  background: var(--line-light);
  z-index: 1;
}
.stepper-item:first-child::after { display: none; }
.stepper-item.is-active::before {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}
.stepper-item.is-done::before {
  background: var(--steel);
  border-color: var(--steel);
  color: var(--cream);
  content: "✓";
}
.stepper-item.is-done::after { background: var(--steel); }

.step-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; }

/* ============================  Page-level helpers  ============================ */
.page-header {
  background: var(--navy);
  color: var(--cream);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(109, 143, 166, 0.15), transparent 60%);
  pointer-events: none;
}
.page-header h1 { color: var(--cream); margin: 0 0 12px; max-width: 800px; }
.page-header .lede { color: rgba(242, 239, 230, 0.78); max-width: 700px; }
.page-header .eyebrow { color: var(--soft-blue); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head.left-aligned { text-align: left; margin: 0 0 48px; }
.section-head .lede { color: #4a5b6c; }

/* FAQ accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--slab);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--steel);
  font-family: var(--sans);
  font-weight: 300;
  transition: all .2s var(--ease);
}
.faq-item[open] summary::after { content: "−"; background: var(--navy); color: var(--cream); border-color: var(--navy); }
.faq-item .faq-answer {
  padding: 0 0 24px;
  color: #3b4a59;
  font-size: 1rem;
  line-height: 1.7;
}

/* CTA block */
.cta-block {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
}
.cta-block h2 { color: var(--cream); margin-bottom: 16px; }
.cta-block .lede { color: rgba(242, 239, 230, 0.82); max-width: 600px; margin: 0 auto 36px; }
.cta-block .btn-secondary { color: var(--cream); border-color: var(--cream); }
.cta-block .btn-secondary:hover { background: var(--cream); color: var(--navy); }

/* Pricing tag inline */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--cream-warm);
  color: var(--brown-deep);
  border-radius: 100px;
}
.tag-blue { background: rgba(109, 143, 166, 0.15); color: var(--steel); }

/* Confirmation card */
.confirmation {
  text-align: center;
  padding: 56px 32px;
}
.confirmation-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel);
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Journey stages — 6-col grid responsive */
@media (max-width: 1100px) {
  .journey-stage { min-height: 0; }
  section [style*="grid-template-columns:repeat(6,1fr)"] { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 640px) {
  section [style*="grid-template-columns:repeat(6,1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 420px) {
  section [style*="grid-template-columns:repeat(6,1fr)"] { grid-template-columns: 1fr !important; }
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: #5a6b7c; }

/* ============================  Admin portal  ============================ */
.admin-shell {
  min-height: 100vh;
  background: var(--paper);
  display: grid;
  grid-template-columns: 240px 1fr;
}
@media (max-width: 880px) {
  .admin-shell { grid-template-columns: 1fr; }
}
.admin-sidebar {
  background: var(--navy);
  color: var(--cream);
  padding: 28px 20px;
  position: sticky; top: 0;
  height: 100vh;
}
@media (max-width: 880px) {
  .admin-sidebar { position: static; height: auto; }
}
.admin-sidebar .brand { color: var(--cream); margin-bottom: 32px; }
.admin-sidebar .brand-wordmark .small { color: var(--soft-blue); }
.admin-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.admin-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  color: rgba(242, 239, 230, 0.7);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all .2s var(--ease);
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(242, 239, 230, 0.08);
  color: var(--cream);
}
.admin-nav .badge {
  margin-left: auto;
  background: var(--brown);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.admin-main { padding: 36px clamp(20px, 4vw, 48px); }
.admin-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap; gap: 16px;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 880px) { .admin-stats { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.stat-card .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--soft-blue);
  font-weight: 600;
}
.stat-card .num {
  font-family: var(--slab);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 8px;
  line-height: 1;
}

.tabs {
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.tab {
  padding: 12px 18px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #5a6b7c;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.tab:hover { color: var(--navy); }
.tab.is-active { color: var(--navy); border-bottom-color: var(--navy); }
.tab .count {
  display: inline-block;
  margin-left: 8px;
  background: var(--cream-warm);
  color: var(--brown-deep);
  font-size: 0.78rem;
  padding: 1px 8px;
  border-radius: 100px;
  font-weight: 700;
}
.tab.is-active .count { background: var(--navy); color: var(--cream); }

.req-table { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.req-row {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1fr auto;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-size: 0.92rem;
}
.req-row:last-child { border-bottom: 0; }
.req-row:hover { background: var(--paper); }
.req-row.head {
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soft-blue);
}
.req-name { font-family: var(--slab); font-weight: 600; color: var(--navy); }
.req-name .dog { display: block; font-size: 0.82rem; color: #5a6b7c; font-family: var(--sans); font-weight: 400; margin-top: 2px; }
.req-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-sm { padding: 8px 14px; font-size: 0.85rem; }
@media (max-width: 880px) {
  .req-row { grid-template-columns: 1fr; gap: 6px; padding: 16px; }
  .req-row.head { display: none; }
  .req-row .label-mobile { font-size: 0.75rem; color: var(--soft-blue); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
}

.status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.status-pending  { background: rgba(140, 111, 85, 0.15); color: var(--brown-deep); }
.status-accepted { background: rgba(54, 86, 111, 0.18);  color: var(--steel); }
.status-declined { background: rgba(15, 27, 38, 0.10);   color: var(--navy); }

/* Request detail layout */
.req-detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
}
@media (max-width: 880px) { .req-detail { grid-template-columns: 1fr; } }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.panel h3 { margin-bottom: 18px; }
.kv { display: grid; grid-template-columns: 160px 1fr; gap: 8px 16px; font-size: 0.95rem; }
.kv dt { color: var(--soft-blue); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; padding-top: 3px; }
.kv dd { margin: 0; color: var(--navy); font-weight: 500; }

/* Print-friendly hero on internal pages */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
