/* ==========================================================================
   Find A Pomsky — design tokens
   Palette drawn from the subject itself: a husky's dusk-blue coat and frost
   eyes, warmed by the pomeranian's honey-gold undertone. Deliberately not
   the cream/terracotta or near-black/acid-green defaults.
   ========================================================================== */
:root {
  /* Warm brownish theme for readability */
  --bg: #FBF7F2;           /* Warm cream background */
  --surface: #FFFFFF;      /* White cards */
  --surface-2: #F5EFE8;    /* Light beige accent */
  --text: #3D2817;         /* Rich brown text */
  --muted: #8B7355;        /* Muted brown */
  --cyan: #C17B58;         /* Warm terracotta */
  --violet: #8B6F47;       /* Deep brown accent */
  --border: rgba(61, 40, 23, 0.12);
  
  /* Legacy tokens for compatibility */
  --ink: #3D2817;
  --ink-soft: #8B7355;
  --frost: #C17B58;
  --frost-pale: #F5EFE8;
  --card: #FFFFFF;
  --honey: #D98E3F;        /* Warm honey/gold */
  --honey-deep: #B96F27;   /* Deep honey */
  --honey-pale: #F6E3C4;   /* Light honey */
  --pine: #7A9B7F;         /* Muted green */
  --pine-pale: #E1EAE4;    /* Light green */
  --danger: #B0473E;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-card: 0 1px 3px rgba(61, 40, 23, 0.08), 0 4px 12px rgba(61, 40, 23, 0.06);
  --shadow-lift: 0 8px 24px rgba(61, 40, 23, 0.12);
  --font-display: "Space Grotesk", "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 0.75em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.8rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { 
  margin: 0 0 1.25em; 
  color: var(--ink-soft);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
}

a { 
  color: var(--honey-deep); 
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
a:hover { 
  color: var(--honey);
  text-decoration: underline;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(48px, 8vw, 96px) 0; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--honey-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--honey-deep); display: inline-block; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  padding: clamp(0.6rem, 1.5vw, 0.85rem) clamp(1rem, 2vw, 1.6rem);
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--honey); outline-offset: 2px; }
.btn:active { transform: scale(0.98); }

/* Glowing button */
.btn-glow {
  background: linear-gradient(135deg, var(--honey), var(--honey-deep));
  border: none;
  color: #fff;
  font-weight: 600;
  padding: clamp(0.55rem, 1.2vw, 0.75rem) clamp(1.2rem, 2.5vw, 1.6rem);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(217, 142, 63, 0.3);
  transition: all 0.2s ease;
}
.btn-glow:hover {
  box-shadow: 0 8px 20px rgba(217, 142, 63, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

/* Outline button */
.btn-outline-glow {
  border: 2px solid var(--honey);
  color: var(--text);
  font-weight: 600;
  background: transparent;
  transition: all 0.2s ease;
}
.btn-outline-glow:hover {
  border-color: var(--honey-deep);
  background: var(--honey-pale);
  color: var(--text);
}

.btn-primary { 
  background: var(--honey);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { 
  background: var(--honey-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 142, 63, 0.4);
  color: #fff;
}

.btn-ghost { 
  background: transparent; 
  border-color: var(--honey-pale);
  color: var(--text);
}
.btn-ghost:hover { 
  border-color: var(--honey);
  background: var(--honey-pale);
  color: var(--text);
}

.btn-light { 
  background: var(--surface-2);
  color: var(--text);
}
.btn-light:hover {
  background: var(--honey-pale);
}

.btn-block { width: 100%; }

/* ---- Navbar ---- */
.navbar {
  background: var(--surface);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--honey-pale);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-card);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.02em;
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--honey);
  box-shadow: 0 0 8px rgba(217, 142, 63, 0.6);
  animation: pulse-dot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.nav-link {
  color: var(--ink-soft) !important;
  font-weight: 500;
  font-size: clamp(0.85rem, 2vw, 1rem);
  padding: 0.6rem 0.8rem !important;
  transition: all 0.2s ease;
  border-radius: 4px;
  white-space: nowrap;
}
.nav-link:hover { 
  color: var(--honey-deep) !important;
  background-color: var(--honey-pale);
}

.navbar-toggler {
  border: 1px solid var(--honey);
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%233D2817' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  filter: none;
}

.navbar-collapse {
  transition: all 0.3s ease;
}

.navbar-nav {
  gap: 0.25rem;
}

.container {
  max-width: 100%;
  padding: 0 1rem;
}

@media (min-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 2rem;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .navbar-collapse {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--honey-pale);
  }
  
  .nav-link {
    padding: 0.5rem 0.6rem !important;
    font-size: 0.9rem;
  }
  
  .navbar-nav .nav-item {
    flex: 1 1 auto;
  }
  
  .navbar-nav .nav-item:last-child {
    margin-top: 0.5rem;
    flex-basis: 100%;
  }
  
  .nav-link {
    text-align: left;
  }
}

/* Legacy styles (kept for compatibility) */
.header-link {
  color: var(--text);
  font-weight: 600;
  font-size: .96rem;
  padding: 8px 10px;
}
.header-link:hover { color: var(--honey-deep); }
.nav-toggle { display: none; }

/* Nav link entrance animation (used on mobile open) */
.nav-links a { transform: translateY(6px); opacity: 0; transition: transform .32s cubic-bezier(.2,.9,.2,1), opacity .28s ease; }
.nav-links.ready a { transform: translateY(0); opacity: 1; }

/* Contact links in header */
.contact-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 6px;
}
.contact-phone,
.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-size: .96rem;
  font-weight: 500;
}
.contact-phone:hover,
.contact-whatsapp:hover { color: var(--honey-deep); }
.contact-phone svg,
.contact-whatsapp svg { display: block; }

/* Mobile nav */
@media (max-width: 860px) {
  .nav-row { padding: 12px 18px; min-height: 68px; }
  .brand-text { font-size: 1.15rem; }
  .nav-links {
    position: fixed; inset: 64px 0 0 0; background: rgba(251, 247, 242, .98); flex-direction: column; padding: 28px 20px; gap: 18px; transform: translateX(100%); transition: transform .42s cubic-bezier(.2,.9,.2,1); box-shadow: 0 20px 40px rgba(61, 40, 23, .12); }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: block; background: none; border: none; cursor: pointer; }
  .nav-cta { gap: 8px; }
  .contact-links { display: flex; gap: 8px; }
  .contact-phone span,
  .contact-whatsapp span { display: none; }
  .nav-links a { font-size: 1.02rem; }
}

/* When nav opens, mark ready to animate links in */
.nav-links.open.ready a { transform: translateY(0); opacity: 1; }

/* Floating WhatsApp button */
#whatsapp-fab { position: fixed; right: 1rem; bottom: 1rem; z-index: 9999; }
#whatsapp-fab a { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 12px 14px; border-radius: 999px; box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3); font-weight: 700; text-decoration: none; transition: all 0.2s ease; }
#whatsapp-fab a:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5); }

@media (max-width: 480px) {
  #whatsapp-fab { right: 0.75rem; bottom: 0.75rem; }
  #whatsapp-fab a { padding: 10px 12px; font-size: 0.85rem; }
}

/* Footer contact small tweaks */
.contact-phone-footer, .contact-whatsapp-footer { color: #B9C6D3; }
.contact-phone-footer:hover, .contact-whatsapp-footer:hover { color: #fff; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; padding: 64px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-copy p.lede { font-size: 1.15rem; max-width: 46ch; }
.hero-stats { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.hero-stat b { font-family: var(--font-mono); font-size: 1.5rem; color: var(--ink); display: block; }
.hero-stat span { font-size: .8rem; color: var(--ink-soft); }
.hero-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); aspect-ratio: 4/5; background: linear-gradient(145deg, var(--frost-pale), var(--honey-pale)); display: flex; align-items: center; justify-content: center; }
.hero-media img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.hero-badge {
  position: absolute; bottom: 18px; left: 18px; background: rgba(255,255,255,.92);
  border-radius: var(--radius-md); padding: 12px 16px; box-shadow: var(--shadow-card);
  font-size: .82rem; display: flex; align-items: center; gap: 10px;
  animation: floatUp .6s ease both; animation-delay: .3s;
}
@keyframes floatUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Trust ribbon ---- */
.trust-ribbon { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.trust-chip { display: flex; align-items: center; gap: 8px; background: var(--pine-pale); color: var(--pine); border-radius: 999px; padding: 8px 14px; font-size: .82rem; font-weight: 600; }
.trust-chip svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ---- Paw trail (signature element): the four-step adoption journey ---- */
.paw-trail { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.paw-trail::before {
  content: ""; position: absolute; top: 26px; left: 6%; right: 6%; height: 2px;
  background-image: radial-gradient(circle, var(--honey) 2px, transparent 2.5px);
  background-size: 22px 2px; background-repeat: repeat-x; opacity: .55;
}
@media (max-width: 1024px) { .paw-trail { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .paw-trail { grid-template-columns: 1fr; } .paw-trail::before { display: none; } }
.paw-step { position: relative; text-align: left; }
.paw-step .num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--card); border: 2px solid var(--honey);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700;
  color: var(--honey-deep); margin-bottom: 1rem; position: relative; z-index: 1; box-shadow: var(--shadow-card);
}
.paw-step h3 { margin-bottom: 0.5rem; font-size: clamp(1rem, 2.5vw, 1.2rem); }
.paw-step p { font-size: clamp(0.85rem, 2vw, 0.95rem); }

/* ---- Conversion content blocks ---- */
.section-header { margin-bottom: 32px; }
.section-header.center { text-align: center; }
.section-header.center p { max-width: 60ch; margin: 0 auto; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 18px; }
@media (max-width: 1024px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 3vw, 2rem); border: 1px solid var(--border); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.info-card .icon-badge {
  width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--honey-pale); color: var(--honey-deep);
  font-size: 1.2rem; margin-bottom: 12px; font-weight: 700;
}
.info-card h3 { margin-bottom: 0.5rem; }
.story-block { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center; }
@media (max-width: 1024px) { .story-block { grid-template-columns: 1fr; gap: 1.5rem; } }
.story-panel {
  background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 4vw, 2.25rem); border: 1px solid var(--border);
}
.story-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: 0.75rem; }
.story-list li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--ink-soft); font-size: clamp(0.9rem, 2vw, 0.95rem); line-height: 1.5; }
.story-list li::before {
  content: "✓"; display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center;
  background: var(--pine-pale); color: var(--pine); border-radius: 50%; font-weight: 700; font-size: .8rem; flex-shrink: 0; margin-top: 2px;
}
.quote-panel {
  background: linear-gradient(135deg, var(--text), #6B5344);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.25rem); color: #fff;
  box-shadow: var(--shadow-lift);
}
.quote-panel h3, .quote-panel p { color: #fff; }
.quote-panel .eyebrow { color: var(--honey); }
.cta-band {
  border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--honey-pale), #fff);
  border: 1px solid rgba(217, 142, 63, .25); box-shadow: var(--shadow-card); padding: clamp(1.5rem, 4vw, 2.25rem);
  display: flex; justify-content: space-between; gap: 1.25rem; align-items: center; flex-wrap: wrap;
}
.social-links { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center; min-width: 110px; padding: 10px 12px;
  border-radius: 999px; border: 1px solid var(--border); color: var(--text); background: var(--surface-2); transition: all 0.2s ease;
}
.social-links a:hover { border-color: var(--honey); background: var(--honey-pale); }

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

/* ---- Puppy cards ---- */
.puppy-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
@media (max-width: 640px) { .puppy-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; } }
@media (max-width: 480px) { .puppy-grid { grid-template-columns: 1fr; gap: 1rem; } }
.puppy-card {
  background: var(--card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column; border: 1px solid var(--border);
}
.puppy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.puppy-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--frost-pale); }
.puppy-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.puppy-card:hover .thumb img { transform: scale(1.06); }
.status-pill { position: absolute; top: 12px; left: 12px; padding: 5px 12px; border-radius: 999px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.status-available { background: var(--pine-pale); color: var(--pine); }
.status-reserved { background: var(--honey-pale); color: var(--honey-deep); }
.status-coming_soon { background: var(--frost-pale); color: var(--frost); }
.puppy-card .body { padding: clamp(1rem, 2vw, 1.4rem); flex: 1; display: flex; flex-direction: column; }
.puppy-card h3 { margin-bottom: 2px; font-size: clamp(1rem, 2.5vw, 1.2rem); }
.puppy-card .meta { font-size: clamp(0.8rem, 1.8vw, 0.9rem); color: var(--ink-soft); margin-bottom: 0.75rem; }
.puppy-card .price { font-family: var(--font-mono); font-weight: 700; font-size: clamp(1rem, 2vw, 1.15rem); margin-top: auto; padding-top: 0.75rem; color: var(--honey-deep); }

/* ---- Filters ---- */
.filter-bar { background: var(--card); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-card); display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; align-items: end; margin-bottom: 2rem; border: 1px solid var(--border); }
.filter-field label { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 0.5rem; font-weight: 600; }
.filter-field select, .filter-field input {
  width: 100%; padding: 10px 12px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: var(--bg); font-family: var(--font-body); font-size: .92rem; color: var(--text); transition: border-color 0.2s ease;
}
.filter-field select:focus, .filter-field input:focus { outline: 2px solid var(--honey); outline-offset: 1px; border-color: var(--honey); }

/* ---- Forms ---- */
.form-card { background: var(--card); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-card); max-width: 640px; border: 1px solid var(--border); }
.field-group { margin-bottom: 1.2rem; }
.field-group label { display: block; font-weight: 600; font-size: clamp(0.8rem, 1.5vw, 0.95rem); margin-bottom: 0.5rem; color: var(--text); }
.field-group input, .field-group select, .field-group textarea {
  width: 100%; padding: 10px 12px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--surface-2); color: var(--text); transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field-group input:focus, .field-group select:focus, .field-group textarea:focus { outline: 2px solid var(--honey); outline-offset: 1px; border-color: var(--honey); box-shadow: 0 0 0 3px rgba(217, 142, 63, 0.1); }
.radio-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.radio-row label { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; font-size: clamp(0.85rem, 2vw, 0.95rem); }
.errorlist { list-style: none; padding: 0; margin: 0.25rem 0 0; color: var(--danger); font-size: .82rem; }
.help-text { font-size: .8rem; color: var(--ink-soft); margin-top: 4px; }

/* ---- Testimonials ---- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
@media (max-width: 640px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: var(--card); border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-card); border: 1px solid var(--border); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.testimonial-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.stars { color: var(--honey); letter-spacing: 2px; margin-bottom: 0.5rem; }
.author-block { display: flex; align-items: flex-start; gap: 1rem; margin-top: 1rem; }
.reviewer-photo, .reviewer-avatar { width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0; }
.reviewer-photo { object-fit: cover; }
.reviewer-avatar { background: linear-gradient(135deg, #D4A574 0%, #B8956A 100%); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.5rem; color: #fff; }
.author-info { flex: 1; }
.testimonial-card .author { font-weight: 700; color: var(--text); margin: 0; }
.testimonial-card .location { font-size: .8rem; color: var(--ink-soft); margin: 0.25rem 0 0; }

/* ---- Footer ---- */
.site-footer { background: var(--text); color: #E4ECF1; padding: 3rem 0 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; font-family: var(--font-body); }
.site-footer a { color: #B9C6D3; transition: color 0.2s ease; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 40px; padding-top: 20px; font-size: .8rem; color: #8CA0B3; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ---- Badges / misc ---- */
.badge-guarantee { display: inline-flex; align-items: center; gap: 6px; background: var(--pine-pale); color: var(--pine); border-radius: 999px; padding: 4px 10px; font-size: .75rem; font-weight: 700; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--honey); color: #fff; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; }
