:root {
  --red: #ff001a;
  --yellow: #fffb00;
  --charcoal: #1a1a1a;
  --white: #ffffff;
  --cream: #fffef7;
  --gray: #6d6d6d;
  --border: rgba(26, 26, 26, 0.12);
  --shadow: 0 24px 60px rgba(26, 26, 26, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --shell: min(1220px, calc(100vw - 2rem));
  --header-height: 92px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(255, 0, 26, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(255, 251, 0, 0.12), transparent 24%),
    var(--white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(45deg, rgba(26, 26, 26, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(26, 26, 26, 0.08) 25%, transparent 25%);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  position: relative;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.split,
.story-grid,
.services-grid,
.contact-layout,
.foundation-grid,
.feature-story,
.dual-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

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

h1,
h2,
h3,
.wordmark-main,
.nav-link,
.button,
.filter-tab,
.impact-number {
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
}

p {
  margin-top: 0;
  line-height: 1.7;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 4px solid var(--red);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lede {
  max-width: 62ch;
  font-size: 1.08rem;
  color: rgba(26, 26, 26, 0.82);
}

.skip-link,
.sr-only {
  position: absolute;
}

.skip-link {
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-top: 0.75rem;
  transition: background-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  background: transparent;
}

.header-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 22px;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 36px rgba(26, 26, 26, 0.12);
}

.wordmark,
.footer-wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
}

.wordmark-main {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wordmark-underline {
  width: 86px;
  height: 5px;
  background: var(--red);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.nav-link {
  position: relative;
  padding: 0.35rem 0;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.8rem;
}

.desktop-shop {
  box-shadow: none;
}

.button,
.icon-button,
.filter-tab,
.selector-tab,
.map-toggle {
  transition: transform var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button:hover,
.icon-button:hover,
.filter-tab:hover,
.selector-tab:hover,
.map-toggle:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 30px rgba(255, 0, 26, 0.22);
}

.button-secondary {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--charcoal);
}

.button-shop {
  background: var(--yellow);
  color: var(--charcoal);
}

.button-outline-red {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.cart-badge {
  position: absolute;
  top: -0.15rem;
  right: -0.15rem;
  min-width: 1.3rem;
  height: 1.3rem;
  display: grid;
  place-items: center;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}

.mobile-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
}

.hero-split {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.hero-media-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media-panel::before,
.pattern-corner::before,
.pattern-corner::after {
  content: "";
  position: absolute;
  background-image:
    linear-gradient(45deg, rgba(255, 251, 0, 0.18) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 0, 26, 0.18) 25%, transparent 25%);
  background-size: 28px 28px;
}

.hero-media-panel::before {
  inset: 0;
  background-color: rgba(26, 26, 26, 0.12);
}

.hero-media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(calc(var(--offset, 0px) * -1));
}

.hero-copy-panel {
  position: relative;
  z-index: 2;
  margin-left: calc((100vw - var(--shell)) / 2);
  margin-top: 2.5rem;
  width: min(52%, 760px);
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(14px);
  padding: 2.1rem 2.6rem;
  border-radius: 30px;
  box-shadow: 0 28px 60px rgba(26, 26, 26, 0.16);
}

.hero-copy-panel::after {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.hero-copy-panel h1 {
  max-width: none;
  width: 100%;
  font-size: clamp(1.7rem, 2.45vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.accent-line {
  width: 120px;
  height: 6px;
  margin: 1rem 0 1.25rem;
  background: var(--red);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.trust-badge {
  position: absolute;
  left: 2.2rem;
  bottom: 2.2rem;
  max-width: 360px;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-left: 6px solid var(--red);
  box-shadow: var(--shadow);
  font-weight: 700;
}

.pattern-corner {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pattern-corner::before {
  top: 1.2rem;
  right: 1.2rem;
  width: 120px;
  height: 120px;
}

.pattern-corner::after {
  left: 1.2rem;
  bottom: 1.2rem;
  width: 100px;
  height: 100px;
}

.highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.8rem;
  background: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel,
.product-card,
.faq-item,
.contact-card,
.contact-form-card,
.value-card,
.story-panel,
.timeline-card,
.selector-panel,
.testimonial-card,
.policy-card,
.service-step,
.team-card,
.impact-card,
.social-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.founder-frame,
.media-frame,
.hero-image-frame {
  position: relative;
}

.founder-portrait,
.media-card,
.hero-image-frame img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card {
  overflow: hidden;
}

.founder-portrait {
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  max-width: 300px;
}

.founder-portrait img,
.media-card img,
.hero-image-frame img {
  height: 100%;
  object-fit: cover;
}

.story-copy {
  position: relative;
  padding-left: 1.5rem;
}

.story-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 8px;
  height: 80%;
  background: var(--yellow);
}

.feature-story {
  grid-template-columns: 0.9fr 1.1fr;
}


.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.text-link::after {
  content: "→";
  transition: transform var(--transition);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.hashtag {
  display: inline-block;
  color: var(--yellow);
  background: var(--charcoal);
  padding: 0.2rem 0.5rem;
  margin-right: 0.45rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card {
  overflow: hidden;
  border-top: 8px solid transparent;
}

.product-card:hover {
  border-top-color: var(--red);
}

.product-image-button {
  width: 100%;
  padding: 1.4rem;
  border: 0;
  background: var(--white);
}

.product-image-button img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 16px 30px rgba(26, 26, 26, 0.08);
}

.product-card-copy {
  padding: 0 1.4rem 1.4rem;
}

.origin-badge,
.quality-badge,
.metric-chip,
.filter-tab,
.selector-tab,
.map-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 0.9rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.metric-chip {
  background: var(--yellow);
  color: var(--charcoal);
}

.origin-badge {
  background: rgba(255, 251, 0, 0.32);
  margin-bottom: 0.9rem;
}

.badge-row,
.filter-row,
.metric-row,
.map-toggle-row,
.selector-tabs,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.quality-badge {
  background: rgba(255, 0, 26, 0.08);
  color: var(--red);
}

.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
}

.product-card-bottom strong,
.price-tag {
  font-size: 1.6rem;
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  align-items: stretch;
}

.size-selector .qty-inline {
  margin-left: auto;
  flex-shrink: 0;
}

.size-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 0.8rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 36px;
}

.size-btn:hover {
  border-color: var(--red);
}

.size-btn.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.product-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  height: 36px;
}

.product-qty .qty-btn {
  width: 36px;
  height: 100%;
  border: none;
  background: var(--cream);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  line-height: 1;
  padding: 0;
}

.product-qty .qty-btn:hover {
  background: var(--yellow);
}

.product-qty .qty-value {
  width: 36px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
}

.add-to-cart-btn {
  padding: 0.6rem 1.2rem;
}

.services-preview {
  display: grid;
  gap: 1.5rem;
}

.service-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-band::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 48%;
  width: 80px;
  background: linear-gradient(135deg, transparent 0 45%, var(--white) 45% 55%, transparent 55% 100%);
  pointer-events: none;
}

.service-photo img {
  height: 100%;
  object-fit: cover;
}

.service-copy {
  position: relative;
  padding: 2rem;
  background: var(--red);
  color: var(--white);
}

.service-copy .eyebrow {
  border-color: var(--yellow);
}

.service-copy h3 {
  color: var(--yellow);
}

.service-copy .text-link {
  color: var(--yellow);
}

.service-copy ul,
.service-list,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-copy li,
.service-list li {
  padding-left: 1rem;
  position: relative;
}

.service-copy li + li,
.service-list li + li {
  margin-top: 0.65rem;
}

.service-copy li::before,
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--yellow);
}

.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item + .faq-item {
  margin-top: 1rem;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: var(--white);
  padding: 1.2rem 1.3rem;
  font-weight: 700;
  text-align: left;
}

.faq-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 800;
  transition: transform var(--transition), color var(--transition);
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  color: var(--yellow);
  transform: rotate(90deg);
}

.faq-panel {
  padding: 0 1.3rem 1.2rem;
}

.page-hero {
  padding-top: calc(var(--header-height) + 2rem);
}

.page-hero-card {
  padding: 3rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 251, 0, 0.12));
  border-left: 10px solid var(--red);
}

.page-hero-card h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.page-hero-card .lede {
  max-width: none;
}

.page-hero-media img {
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.timeline-grid,
.values-grid,
.stats-grid,
.process-grid,
.team-grid,
.social-grid,
.testimonial-grid {
  display: grid;
  gap: 1.4rem;
}

.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-card {
  padding: 1.5rem;
  border-top: 8px solid var(--red);
}

.timeline-marker {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  background: var(--yellow);
  color: var(--red);
  font-weight: 800;
}

.vision-callout {
  padding: 2rem;
  background: var(--yellow);
  color: var(--red);
  box-shadow: var(--shadow);
}

.values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card {
  padding: 1.5rem;
  border-top: 8px solid var(--red);
}

.value-card:hover {
  background: var(--yellow);
}

.story-panel {
  padding: 1.8rem;
}

.value-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  background: rgba(255, 0, 26, 0.08);
  color: var(--red);
  font-weight: 800;
}

.quote-block {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--yellow);
  background: var(--charcoal);
  padding: 1rem 1.15rem;
}

.route-map {
  position: relative;
  min-height: 240px;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.route-point {
  position: absolute;
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid var(--yellow);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  text-transform: uppercase;
}

.route-point.lagos {
  left: 12%;
  top: 24%;
}

.route-point.houston {
  right: 12%;
  bottom: 18%;
}

.route-line {
  position: absolute;
  left: 24%;
  top: 46%;
  width: 52%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transform: rotate(8deg);
  animation: pulse-line 2.4s infinite ease-in-out;
}

@keyframes pulse-line {
  0%,
  100% {
    opacity: 0.45;
    transform: rotate(8deg) scaleX(0.98);
  }
  50% {
    opacity: 1;
    transform: rotate(8deg) scaleX(1.02);
  }
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.filter-tab,
.selector-tab,
.map-toggle {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
}

.filter-tab.is-active,
.selector-tab.is-active,
.map-toggle.is-active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.product-modal,
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 130;
}

.modal-overlay,
.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
}

.modal-panel,
.cart-panel {
  position: absolute;
  right: 0;
  background: var(--white);
  box-shadow: -20px 0 60px rgba(26, 26, 26, 0.28);
}

.modal-panel {
  top: 50%;
  right: 50%;
  width: min(1120px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  transform: translate(50%, -50%);
  padding: 2rem;
  overflow: auto;
}

.cart-panel {
  top: 0;
  width: min(420px, 100vw);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cart-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--red);
  color: var(--white);
}

.cart-close,
.modal-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 1.6rem;
  font-weight: 800;
}

.cart-items {
  flex: 1;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  overflow: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
}

.cart-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cart-summary {
  padding: 1.2rem;
  background: var(--charcoal);
  color: var(--white);
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.summary-row strong {
  color: var(--yellow);
}

.cart-link {
  margin-top: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--yellow);
  font-weight: 700;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.7rem;
}

.quantity-control button {
  width: 36px;
  height: 36px;
  border: 0;
  background: var(--yellow);
  font-size: 1.1rem;
  font-weight: 800;
}

.modal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.modal-main-image {
  max-height: 420px;
  object-fit: cover;
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.thumbnail-button {
  padding: 0;
  border: 3px solid transparent;
  background: transparent;
}

.thumbnail-button.is-active {
  border-color: var(--red);
}

.thumbnail-button img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.modal-info-grid {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0;
}

.shipping-note {
  padding: 1rem 1.1rem;
  background: rgba(255, 251, 0, 0.22);
  font-weight: 600;
}

.modal-buy-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.related-row,
.review-list {
  display: grid;
  gap: 1rem;
}

.related-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-item {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 700;
}

.related-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 0.7rem;
}

.review-card {
  margin: 0;
  padding: 1rem;
  border-left: 6px solid var(--red);
  background: rgba(26, 26, 26, 0.04);
}

.service-hero,
.charity-hero,
.contact-hero {
  padding-top: calc(var(--header-height) + 2rem);
}

.service-step {
  padding: 1.5rem;
  border-top: 8px solid var(--red);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  background: var(--yellow);
  color: var(--red);
  font-weight: 800;
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.impact-card {
  padding: 1.6rem;
  border-top: 8px solid var(--red);
}

.impact-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--red);
  font-weight: 800;
}

.selector-panel,
.contact-card,
.contact-form-card,
.team-card,
.policy-card,
.social-card {
  padding: 1.6rem;
}

.selector-panels {
  margin-top: 1.2rem;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 1.4rem;
  border-left: 8px solid var(--red);
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.partner-chip {
  padding: 0.5rem 0.8rem;
  background: rgba(26, 26, 26, 0.06);
  font-weight: 700;
}

.contact-layout {
  align-items: start;
}

.contact-card {
  background: var(--red);
  color: var(--white);
}

.contact-card h2,
.contact-card h3 {
  color: var(--white);
}

.contact-card .eyebrow {
  border-color: var(--yellow);
}

.contact-block + .contact-block {
  margin-top: 1.5rem;
}

.contact-form,
.newsletter-form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
}

.site-footer input {
  background: rgba(255, 0, 26, 0.08);
  border-color: rgba(255, 0, 26, 0.28);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
}

.map-panel iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 1rem;
}

.social-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 1rem;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
}

.policy-page {
  padding-top: calc(var(--header-height) + 2rem);
}

.policy-card {
  max-width: 920px;
  margin: 0 auto;
}

.policy-card section + section {
  margin-top: 2rem;
}

.policy-card h2 {
  color: var(--red);
}

.policy-highlight {
  display: inline-block;
  background: rgba(255, 251, 0, 0.52);
  padding: 0.15rem 0.35rem;
}

.site-footer {
  margin-top: 4rem;
  background: var(--charcoal);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 1.5rem;
  padding: 3rem 0;
}

.site-footer h2 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-links a:hover {
  color: var(--yellow);
}

.social-row a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bar-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.is-cart-open,
body.is-modal-open,
body.menu-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .hero-split,
  .split,
  .story-grid,
  .services-grid,
  .contact-layout,
  .foundation-grid,
  .feature-story,
  .dual-panel,
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .service-band {
    grid-template-columns: 1fr;
  }

  .service-band::after {
    display: none;
  }

  .product-grid,
  .values-grid,
  .timeline-grid,
  .testimonial-grid,
  .team-grid,
  .social-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .desktop-shop {
    display: none;
  }

  .mobile-toggle,
  .mobile-menu {
    display: block;
  }

  .mobile-menu {
    background: var(--red);
    color: var(--white);
    margin-top: 0.6rem;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.18);
  }

  .mobile-menu-inner {
    padding: 1.5rem 0 2rem;
  }

  .mobile-nav {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .mobile-shop {
    background: var(--yellow);
    color: var(--charcoal);
  }

  .hero-copy-panel {
    position: static;
    transform: none;
    width: auto;
    margin: -7rem 1rem 1rem;
    padding: 2rem;
  }

  .trust-badge {
    position: static;
    margin-top: 1.5rem;
  }

  .product-grid,
  .stats-grid,
  .values-grid,
  .timeline-grid,
  .testimonial-grid,
  .team-grid,
  .social-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 82px;
  }

  .section,
  .section-tight {
    padding: 3.5rem 0;
  }

  .hero-split {
    min-height: auto;
  }

  .hero-media-panel {
    min-height: 360px;
  }

  .hero-copy-panel h1 {
    max-width: none;
  }

  .field-grid,
  .footer-bar-inner,
  .product-card-bottom,
  .modal-buy-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }

  .related-row {
    grid-template-columns: 1fr;
  }

  .modal-panel {
    width: calc(100vw - 1rem);
    padding: 1rem;
  }
}
