/* OSPA Cabo Verde — bright Norbit-style layout */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

:root {
  --bg: #f0f9ff;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --surface-hover: #f8fafc;
  --border: rgba(2, 132, 199, 0.12);
  --border-strong: rgba(2, 132, 199, 0.22);
  --text: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;
  --accent: #0891b2;
  --accent-bright: #0e7490;
  --accent-glow: rgba(8, 145, 178, 0.28);
  --cyan: #06b6d4;
  --ocean: #0284c7;
  --warm: #f97316;
  --coral: #ea580c;
  --sun: #fbbf24;
  --warm-bg: rgba(249, 115, 22, 0.1);
  --success: #059669;
  --shadow: 0 10px 40px rgba(2, 132, 199, 0.12);
  --shadow-lg: 0 20px 50px rgba(2, 132, 199, 0.16);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --radius-pill: 9999px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 76rem;
  --nav-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 60% at 10% -10%, rgba(56, 189, 248, 0.35), transparent 50%),
    radial-gradient(ellipse 70% 50% at 95% 5%, rgba(251, 191, 36, 0.28), transparent 45%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(249, 115, 22, 0.12), transparent 50%),
    var(--bg);
  pointer-events: none;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent-bright);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--ocean); }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* Demo banner */
.demo-banner {
  position: relative;
  z-index: 210;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: linear-gradient(90deg, #fff7ed, #fef3c7, #fff7ed);
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}
.demo-banner strong { color: var(--coral); }
.demo-banner a { color: var(--ocean); font-weight: 700; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0.5rem clamp(1rem, 4vw, 2rem);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled .header-inner {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.header-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  transition: background 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(var(--nav-h) - 1rem);
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.logo__img {
  height: 2.85rem;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo span {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ocean);
  letter-spacing: 0.04em;
}
.logo:hover .logo__img { opacity: 0.92; }
.logo:hover strong { color: var(--ocean); }
.logo:hover span { color: var(--coral); }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--surface-hover);
}
.nav-links a[aria-current="page"] {
  color: var(--ocean);
  background: rgba(56, 189, 248, 0.15);
  font-weight: 600;
}
.nav-cta { display: none; margin-left: 0.35rem; }
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle svg { width: 1.25rem; height: 1.25rem; }

@media (min-width: 1100px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}
@media (max-width: 1099px) {
  .nav-links a { font-size: 0.8rem; padding: 0.4rem 0.6rem; }
}

.nav-mobile {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + 2.5rem);
  left: 1rem;
  right: 1rem;
  z-index: 199;
  flex-direction: column;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  color: var(--text-muted);
  font-weight: 500;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
}
.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] {
  color: var(--text);
  background: var(--surface-hover);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, #06b6d4, #0284c7);
  color: #fff;
  box-shadow: 0 6px 24px var(--accent-glow);
}
.btn--primary:hover { color: #fff; box-shadow: 0 10px 32px rgba(2, 132, 199, 0.35); }
.btn--warm {
  background: linear-gradient(135deg, #fb923c, #ea580c);
  color: #fff;
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.35);
}
.btn--warm:hover { color: #fff; }
.btn--ghost {
  background: #fff;
  color: var(--ocean);
  border: 2px solid rgba(2, 132, 199, 0.25);
}
.btn--ghost:hover {
  background: #f0f9ff;
  color: var(--ocean);
  border-color: var(--ocean);
}
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.875rem; }
.btn--lg { padding: 0.95rem 1.75rem; font-size: 1rem; }
.btn i { font-size: 0.85em; }

main { flex: 1; padding-top: 1rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  border-radius: 2px;
}

.gradient-text {
  color: var(--accent-bright);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
}
@media (min-width: 768px) {
  .gradient-text {
    background: linear-gradient(135deg, #0284c7 0%, #06b6d4 40%, #f97316 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.text-gradient-warm {
  color: var(--warm);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
}
@media (min-width: 768px) {
  .text-gradient-warm {
    background: linear-gradient(135deg, #ea580c, #f97316, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.section-head { max-width: 36rem; margin-bottom: 3rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* Hero */
.hero {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  padding-block: 1.5rem 3rem;
}
@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-block: 2rem 4rem;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  padding-top: clamp(1.5rem, 4vw, 3rem);
  animation: fadeUp 0.8s var(--ease) both;
}
.hero__tagline {
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.hero__lead {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 32rem;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}
.hero__pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.06);
}
.hero__pills i { font-size: 0.75rem; color: var(--ocean); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero__visual {
  position: relative;
  animation: fadeUp 0.8s 0.15s var(--ease) both;
}
.hero__glow {
  position: absolute;
  width: 80%;
  height: 60%;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(60px);
  z-index: -1;
}
.hero__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  border: 3px solid #fff;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
}
.hero__frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}
.hero__photo {
  object-position: 55% 40%;
}

.content-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
}
.content-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 55% 40%;
}
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) - 2px);
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.55) 100%);
  pointer-events: none;
}
.hero__float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  animation: floatIn 0.6s var(--ease) both;
  color: var(--text);
}
.hero__float i { font-size: 1.1rem; color: var(--ocean); }
.hero__float strong { display: block; font-size: 0.8125rem; line-height: 1.2; color: var(--text); }
.hero__float span { font-size: 0.6875rem; color: var(--text-muted); }
.hero__float--top { top: 1rem; right: -0.5rem; animation-delay: 0.25s; }
.hero__float--mid { top: 38%; left: -0.75rem; animation-delay: 0.4s; }
@media (max-width: 959px) {
  .hero__float--top { right: 0.5rem; }
  .hero__float--mid { left: 0.5rem; }
}
.hero__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  z-index: 2;
  box-shadow: var(--shadow);
  color: var(--text);
}
.hero__badge i { font-size: 1.25rem; color: var(--coral); }
.hero__badge strong { display: block; font-size: 0.875rem; color: var(--text); }
.hero__badge span { font-size: 0.75rem; color: var(--text-muted); }

.hero__mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.hero__mini-card {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.hero__mini-card:hover {
  border-color: var(--ocean);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.hero__mini-card i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 1rem;
  color: var(--coral);
}
.hero__mini-card strong { display: block; font-size: 0.8125rem; margin-bottom: 0.15rem; }
.hero__mini-card span { font-size: 0.6875rem; line-height: 1.4; color: var(--text-muted); }

/* Stats */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  padding: 1.5rem 1rem;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ocean), var(--cyan));
}
.stat-card:nth-child(2)::before { background: linear-gradient(90deg, var(--sun), var(--warm)); }
.stat-card:nth-child(3)::before { background: linear-gradient(90deg, var(--success), #34d399); }
.stat-card:nth-child(4)::before { background: linear-gradient(90deg, #8b5cf6, var(--ocean)); }
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.stat-card__icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  width: 2.75rem;
  height: 2.75rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  color: var(--ocean);
}
.stat-card:nth-child(2) .stat-card__icon { background: linear-gradient(135deg, #ffedd5, #fed7aa); color: var(--coral); }
.stat-card:nth-child(3) .stat-card__icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: var(--success); }
.stat-card:nth-child(4) .stat-card__icon { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #7c3aed; }
.stat-card__num {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
}
.stat-card__label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  padding: 1.5rem 0;
  margin-bottom: 4rem;
  border-block: 1px solid var(--border);
}
.trust-strip span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-strip i { color: var(--success); font-size: 0.75rem; }

/* Bento */
.bento {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) and (max-width: 959px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card:nth-child(3), .bento__card:nth-child(4) { grid-column: span 1; }
}
@media (min-width: 960px) { .bento { grid-template-columns: repeat(4, 1fr); } }

.bento__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
a.bento__card:hover { color: inherit; }
.bento__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean), var(--cyan));
  opacity: 1;
}
.bento__card:nth-child(2)::before { background: linear-gradient(90deg, var(--warm), var(--sun)); }
.bento__card:nth-child(3)::before { background: linear-gradient(90deg, var(--success), #34d399); }
.bento__card:nth-child(4)::before { background: linear-gradient(90deg, #a855f7, var(--ocean)); }
.bento__card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.bento__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  color: var(--ocean);
}
.bento__card:nth-child(2) .bento__icon { background: linear-gradient(135deg, #ffedd5, #fdba74); color: var(--coral); }
.bento__card:nth-child(3) .bento__icon { background: linear-gradient(135deg, #d1fae5, #6ee7b7); color: var(--success); }
.bento__card:nth-child(4) .bento__icon { background: linear-gradient(135deg, #ede9fe, #c4b5fd); color: #7c3aed; }
.bento__card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; font-weight: 700; }
.bento__card p { margin: 0; font-size: 0.9rem; color: var(--text-muted); flex: 1; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.tag-list li {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  background: #f0f9ff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--ocean);
}

/* Spotlight / urgent */
.spotlight {
  position: relative;
  margin-bottom: 5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: none;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 45%, #ea580c 100%);
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.35);
}
.spotlight__inner {
  display: grid;
  gap: 1.75rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
@media (min-width: 900px) {
  .spotlight__inner { grid-template-columns: 1fr auto; align-items: center; }
}
.spotlight__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a3412;
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.spotlight h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.spotlight p { margin: 0; color: rgba(255, 255, 255, 0.92); max-width: 36rem; }
.spotlight .text-gradient-warm {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}
.spotlight .btn--warm {
  background: #fff;
  color: var(--coral);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.spotlight .btn--warm:hover { color: var(--coral); background: #fff7ed; }

/* Visitor quote — no screenshot */
.quote-card {
  margin-bottom: 5rem;
  padding: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: "\201C";
  position: absolute;
  top: -0.1em;
  left: 0.35rem;
  font-size: 8rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(2, 132, 199, 0.08);
  pointer-events: none;
}
.quote-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ocean);
  background: #e0f2fe;
  border-radius: var(--radius-pill);
}
.quote-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
}
.quote-card p { margin: 0 0 1rem; color: var(--text-muted); position: relative; max-width: 42rem; }
.quote-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--border);
  position: relative;
}
.quote-card__avatars {
  display: flex;
  gap: 0.35rem;
}
.quote-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #bae6fd, #7dd3fc);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.15);
}
.quote-card__avatar:nth-child(2) { background: linear-gradient(135deg, #fed7aa, #fdba74); }
.quote-card__who { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.quote-card__who span { display: block; font-weight: 500; color: var(--text-muted); font-size: 0.8rem; }
.quote-card__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-left: auto; }
@media (max-width: 640px) {
  .quote-card__meta { flex-direction: column; align-items: flex-start; }
  .quote-card__actions { margin-left: 0; width: 100%; }
}

.mb-0 { margin-bottom: 0 !important; }

/* Legacy visitor-feature hidden */
.visitor-feature { display: none; }

/* Dog cards */
.dog-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .dog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .dog-grid { grid-template-columns: repeat(3, 1fr); } }

.dog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.dog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.dog-card__visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  background: linear-gradient(145deg, #e0f2fe, #bae6fd);
}
.dog-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ocean);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.1);
}
.dog-card__body { padding: 1.25rem; }
.dog-card__body h3 { margin: 0 0 0.5rem; font-size: 1.05rem; font-weight: 700; }
.dog-card__body p { margin: 0 0 1rem; font-size: 0.875rem; color: var(--text-muted); }
.dog-card__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.dog-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.4rem 1rem;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-btn:hover { color: var(--text); border-color: var(--border-strong); }
.filter-btn.active {
  background: linear-gradient(135deg, #06b6d4, #0284c7);
  border-color: transparent;
  color: #fff;
}

/* Inner pages */
.about-hero {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
  padding-block: 1rem 1.5rem;
  animation: fadeUp 0.7s var(--ease) both;
}
.about-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.about-hero p { margin: 0; font-size: 1.0625rem; color: var(--text-muted); }

.story-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: start; }
}
.story-grid__prose p { margin: 0 0 1.15rem; color: var(--text-muted); }
.story-grid__prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.story-grid__prose h2:first-child { margin-top: 0; }

.story-card, .info-card, .donate-card, .step-card {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.story-card h3, .info-card h3, .donate-card h3 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.story-card p, .info-card p { margin: 0 0 0.65rem; font-size: 0.9rem; color: var(--text-muted); }
.story-card p:last-child { margin-bottom: 0; }

.card-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .card-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.donate-card { height: 100%; transition: transform 0.25s var(--ease), border-color 0.25s; }
.donate-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.donate-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  color: var(--ocean);
  font-size: 1.1rem;
}
.donate-card h3 { margin: 0 0 0.65rem; font-size: 1.05rem; font-weight: 700; color: var(--text); text-transform: none; letter-spacing: normal; }
.donate-card p { margin: 0 0 1rem; font-size: 0.9rem; color: var(--text-muted); }
.donate-card .bank-details { font-size: 0.85rem; color: var(--text-muted); }
.donate-card .bank-details strong { color: var(--text); }

.contact-cards .donate-card--contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-cards .donate-card--urgent {
  border-color: rgba(231, 111, 81, 0.3);
}
.contact-cards .donate-card--contact p {
  flex: 1;
  margin-bottom: 1.25rem;
}
.contact-cards .donate-card--contact .btn {
  width: 100%;
  margin-top: auto;
}

.step-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .step-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card { text-align: center; }
.step-card__num {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  background: linear-gradient(135deg, #06b6d4, #0284c7);
  color: #fff;
  box-shadow: 0 4px 14px var(--accent-glow);
}
.step-card h3 { margin: 0 0 0.5rem; font-size: 0.95rem; font-weight: 700; }
.step-card p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }

.faq-card {
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.faq-card h3 { margin: 0 0 0.5rem; font-size: 1rem; font-weight: 700; }
.faq-card p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--success);
  font-size: 0.75rem;
}

/* CTA */
.cta-banner {
  position: relative;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 2rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  border: 2px solid rgba(2, 132, 199, 0.15);
  background: linear-gradient(135deg, #ffffff, #e0f2fe);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 55%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.cta-banner p {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  max-width: 28rem;
  margin-inline: auto;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-banner--warm {
  border-color: rgba(249, 115, 22, 0.2);
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 4rem 0 2rem;
  border-top: none;
  background: linear-gradient(160deg, #0369a1 0%, #0c4a6e 100%);
  color: #e0f2fe;
}
.footer-top {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1.5fr repeat(2, 1fr); }
}
.footer-brand .logo__img {
  height: 2.5rem;
  width: auto;
  margin-bottom: 0.35rem;
}
.footer-brand .logo-sub {
  display: block;
  font-size: 0.7rem;
  color: #7dd3fc;
  margin-top: 0.15rem;
}
.footer-brand p {
  margin: 1rem 0 0;
  max-width: 22rem;
  font-size: 0.9rem;
  color: #bae6fd;
}
.site-footer h3 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3fc;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: #bae6fd; font-size: 0.9rem; }
.site-footer a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.site-footer .container > .footer-social {
  justify-content: center;
  margin-bottom: 1rem;
}
.footer-social a {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.2); color: #fff; }
.footer-copy {
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  color: #7dd3fc;
  text-align: center;
}
.footer-norbit {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  color: #7dd3fc;
  text-align: center;
}
.footer-norbit a { color: #fff; }

.footer-visitors {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  color: #7dd3fc;
  text-align: center;
}
.footer-visitors i {
  margin-right: 0.35rem;
  opacity: 0.9;
}
.footer-visitors__count {
  font-weight: 700;
  color: #fff;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.page-section { margin-bottom: 4rem; }

/* —— Our Dogs card grid + lightbox —— */
.dog-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .dog-gallery { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}
@media (min-width: 960px) {
  .dog-gallery { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.dog-gallery.dog-gallery--home {
  grid-template-columns: 1fr;
  max-width: 56rem;
  margin-inline: auto;
  justify-content: center;
}
@media (min-width: 640px) {
  .dog-gallery.dog-gallery--home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 960px) {
  .dog-gallery.dog-gallery--home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.dog-gallery__error {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
}

.dog-card--photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.dog-card--photo:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.dog-card__btn {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: none;
  cursor: pointer;
  background: #1e293b;
  overflow: hidden;
}
.dog-card__btn:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px var(--ocean);
}

.dog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s var(--ease);
}
.dog-card--photo:hover .dog-card__img,
.dog-card__btn:focus-visible .dog-card__img {
  transform: scale(1.06);
}

.dog-card--photo .dog-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 3;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.28rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ocean);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.dog-card__name-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2.25rem 0.85rem 0.85rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.45) 55%, transparent 100%);
  pointer-events: none;
}
.dog-card__name {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.dog-card__hover {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.dog-card--photo:hover .dog-card__hover,
.dog-card__btn:focus-visible .dog-card__hover {
  opacity: 1;
}

.dog-card__details {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ocean);
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

body.dog-lightbox-open { overflow: hidden; }

.dog-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.dog-lightbox[hidden] { display: none; }
.dog-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
}
.dog-lightbox__panel {
  position: relative;
  width: 100%;
  max-width: 52rem;
  max-height: min(92vh, 900px);
  overflow: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.35s var(--ease) both;
}
.dog-lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #0284c7, #06b6d4);
  color: #fff;
}
.dog-lightbox__header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.dog-lightbox__close {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.dog-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}
.dog-lightbox__body {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .dog-lightbox__body { grid-template-columns: 1fr 1fr; align-items: start; }
}
.dog-lightbox__photo {
  background: linear-gradient(145deg, #f0f9ff, #e0f2fe);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  box-shadow: inset 0 0 0 1px var(--border);
}
.dog-lightbox__photo img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  border-radius: calc(var(--radius-sm) - 4px);
  display: block;
}
.dog-lightbox__meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.dog-lightbox__row {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 0.5rem 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.dog-lightbox__row:last-child { border-bottom: none; }
.dog-lightbox__row dt {
  margin: 0;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ocean);
}
.dog-lightbox__row dd {
  margin: 0;
  color: var(--text);
  line-height: 1.45;
}
.dog-lightbox__history {
  padding: 0 1.5rem 1.25rem;
}
.dog-lightbox__history-title {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
}
.dog-lightbox__history p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.dog-lightbox__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0 1.5rem 1.5rem;
}
@media (max-width: 767px) {
  .dog-lightbox__row { grid-template-columns: 1fr; gap: 0.2rem; }
}
