/* Kamukunji Plastics — static HTML site */
:root {
  --bg: #f7f8fc;
  --ink: #0b1220;
  --muted: #5b6577;
  --blue: #1b3a8c;
  --blue-hover: #142d70;
  --red: #e30613;
  --white: #ffffff;
  --surface: #eef1f8;
  --wa: #25d366;
  --radius: 1rem;
  --shadow: 0 12px 40px -18px rgba(27, 58, 140, 0.18);
  --font: "Outfit", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: min(1280px, 100% - 2rem);
  margin-inline: auto;
}

@media (min-width: 640px) {
  .container {
    width: min(1280px, 100% - 3rem);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.logo-link img {
  height: 2.25rem;
  width: auto;
  max-width: 8rem;
  object-fit: contain;
}

.logo-text strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.7rem;
  color: var(--muted);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
  .logo-text {
    display: block;
  }
  .menu-toggle {
    display: none !important;
  }
  .header-cta {
    display: flex !important;
  }
}

.logo-text {
  display: none;
}

.nav-desktop a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(11, 18, 32, 0.75);
  transition: 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  background: rgba(27, 58, 140, 0.1);
  color: var(--blue);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.05);
  font-size: 1.25rem;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(11, 18, 32, 0.5);
  backdrop-filter: blur(6px);
}

.mobile-menu.open {
  display: block;
}

.mobile-panel {
  background: #fff;
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mobile-panel nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-panel nav a {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
}

.mobile-panel nav a:hover {
  background: rgba(27, 58, 140, 0.08);
}

.mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-md {
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.8125rem;
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(27, 58, 140, 0.45);
}

.btn-blue:hover {
  background: var(--blue-hover);
}

.btn-wa {
  background: var(--wa);
  color: #fff;
}

.btn-wa:hover {
  background: #1ebe57;
}

.btn-outline {
  background: #fff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(27, 58, 140, 0.2);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(227, 6, 19, 0.08), transparent 48%),
    radial-gradient(ellipse at bottom left, rgba(27, 58, 140, 0.12), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem 0 4rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 3.5rem 0 5rem;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(27, 58, 140, 0.1);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero h1 {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero h1 .blue {
  color: var(--blue);
}
.hero h1 .red {
  color: var(--red);
}

.lead {
  margin: 1rem 0 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.check {
  color: var(--blue);
  font-weight: 700;
}

/* Carousel */
.carousel {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(11, 18, 32, 0.75));
  color: #fff;
}

.carousel-caption strong {
  display: block;
  font-size: 1.1rem;
}

.carousel-caption span {
  font-size: 0.85rem;
  opacity: 0.85;
}

.carousel-dots {
  position: absolute;
  z-index: 3;
  bottom: 0.75rem;
  right: 0.75rem;
  display: flex;
  gap: 0.35rem;
}

.carousel-dots button {
  width: 0.5rem;
  height: 0.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
}

.carousel-dots button.active {
  background: #fff;
  width: 1.25rem;
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  max-width: 36rem;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.875rem;
}

.link-more:hover {
  color: var(--blue-hover);
}

.bg-white {
  background: #fff;
}
.bg-surface {
  background: rgba(238, 241, 248, 0.55);
}
.bg-blue {
  background: var(--blue);
  color: #fff;
}

/* Why buyers — premium blue band */
.why-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(227, 6, 19, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(255, 255, 255, 0.08), transparent 50%),
    var(--blue);
  color: #fff;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-head {
  max-width: 36rem;
}

.why-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.why-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.why-head p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  max-width: 32rem;
}

.border-y {
  border-top: 1px solid rgba(11, 18, 32, 0.06);
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}

/* Categories */
.cat-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .cat-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.cat-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.25rem 1.4rem;
  border-radius: 1.15rem;
  background: rgba(238, 241, 248, 0.75);
  box-shadow: inset 0 0 0 1px rgba(11, 18, 32, 0.06);
  transition: 0.25s ease;
}

.cat-card:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -20px rgba(27, 58, 140, 0.55);
}

.cat-card img {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
  background: #fff;
  border-radius: 1rem;
  padding: 0.4rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(11, 18, 32, 0.06);
}

.cat-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.cat-card p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.cat-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

.cat-card .browse {
  display: inline-flex;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}

.cat-card:hover .browse {
  color: #fff;
}

/* Product cards */
.product-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .product-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: #fff;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-media {
  aspect-ratio: 1;
  background: var(--surface);
  overflow: hidden;
  position: relative;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.55s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.product-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.product-body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.product-body .desc {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.95rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

/* Why us cards */
.reason-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .reason-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .reason-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.reason-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.15rem;
  padding: 1.35rem 1.25rem 1.4rem;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.reason-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.45);
}

.reason-card .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.35);
}

.reason-card .icon-wrap svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}

.reason-card .icon-wrap.accent {
  background: var(--red);
  color: #fff;
}

.reason-card h3 {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.reason-card p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
}

.reason-card .step {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
}

.why-cta {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.why-cta .why-cta-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  max-width: 22rem;
}

.why-cta .cta-row {
  margin-top: 0;
}

/* Delivery chips */
.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.eac-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .eac-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .eac-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.eac-card {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 0.85rem;
  padding: 0.9rem;
}

.eac-card strong {
  display: block;
  font-size: 0.95rem;
}

.eac-card span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Blog cards */
.blog-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.blog-card {
  background: #fff;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.blog-card .thumb {
  aspect-ratio: 16/10;
  background: var(--surface);
  overflow: hidden;
}

.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .thumb img {
  transform: scale(1.03);
}

.blog-card .body {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card .cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
}

.blog-card h3 {
  margin: 0.4rem 0 0;
  font-size: 1rem;
  line-height: 1.35;
}

.blog-card .excerpt {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  flex: 1;
}

.meta {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Testimonials */
.quote-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .quote-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.quote-card {
  background: #fff;
  border-radius: 1.15rem;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.quote-card p {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
}

.quote-card footer {
  margin-top: 1.15rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(11, 18, 32, 0.06);
}

.quote-card strong {
  display: block;
  font-size: 0.9rem;
}

.quote-card span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Location */
.two-col {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.map-frame {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 18, 32, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 18rem;
  border: 0;
  display: block;
}

/* FAQ */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border-radius: 1rem;
  padding: 1.15rem 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(11, 18, 32, 0.06);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Page hero */
.page-hero {
  padding: 2.5rem 0 1rem;
}

.page-hero h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.05rem;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.filters button {
  border: 0;
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(11, 18, 32, 0.08);
}

.filters button.active,
.filters button:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: none;
}

/* Footer — logo brand blue */
.site-footer {
  margin-top: auto;
  background: var(--blue);
  color: #fff;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  height: 2.25rem;
  background: #fff;
  border-radius: 0.4rem;
  padding: 0.25rem 0.4rem;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
}

.site-footer h4 {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.site-footer a:hover {
  color: var(--red);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Floating WA + mobile bar */
.float-wa {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  z-index: 45;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.float-wa:hover {
  background: #1ebe57;
  transform: scale(1.06);
}

.float-wa .wa-icon,
.btn-wa .wa-icon {
  display: block;
  flex-shrink: 0;
}

.btn-wa .wa-icon {
  width: 1.15rem;
  height: 1.15rem;
}

@media (min-width: 640px) {
  .float-wa {
    bottom: 1.5rem;
  }
  .mobile-bar {
    display: none !important;
  }
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 44;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(11, 18, 32, 0.08);
}

main {
  flex: 1;
  padding-bottom: 5rem;
}

@media (min-width: 640px) {
  main {
    padding-bottom: 0;
  }
}

/* Article */
.article {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.article h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.article-hero {
  border-radius: 1.15rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--surface);
  margin: 1.5rem 0;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prose h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: rgba(11, 18, 32, 0.85);
  font-size: 1.02rem;
  line-height: 1.65;
}

.prose ul {
  padding-left: 1.25rem;
}

/* County grid */
.county-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .county-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .county-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.county-card {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 1rem;
  padding: 1rem;
}

.county-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1rem;
}

.county-card p {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.cta-banner {
  background: var(--ink);
  color: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  margin-top: 2.5rem;
}

.cta-banner h2 {
  margin: 0;
}

.cta-banner p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  max-width: 32rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
