:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --sand: #ffffff;
  --image-bg: #ffffff;
  --ink: #18222a;
  --teal: #0f9f93;
  --pink: #ef4d7d;
  --line: rgb(24 34 42 / 14%);
}

* { box-sizing: border-box; }

body.pulled-mode {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a { color: inherit; }

.kw-header,
.kw-hero,
.kw-section,
.kw-footer {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.kw-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.kw-logo,
.eyebrow,
.kw-section h2,
.kw-hero h1,
.kw-footer h3 {
  font-family: "Outfit", system-ui, sans-serif;
}

.kw-logo {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.kw-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.kw-nav a,
.kw-link {
  text-decoration: none;
  color: rgb(24 34 42 / 78%);
  font-weight: 600;
  font-size: 0.95rem;
}

.kw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  min-height: 44px;
  padding: 0.6rem 1.2rem;
  font-weight: 700;
}

.kw-hero {
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 3.5rem 0;
}

.hero-media img,
.product-media img,
.story-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-media,
.product-media,
.story-media {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 22px;
}

.hero-media {
  background: var(--image-bg);
}

.hero-media img {
  width: min(100%, 360px);
  max-height: 680px;
  filter: none;
}

.hero-media .can-image {
  object-fit: contain;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  font-size: 0.74rem;
  font-weight: 700;
}

.kw-hero h1 {
  margin: 0.25rem 0 0.8rem;
  line-height: 0.92;
  font-size: clamp(2.8rem, 10vw, 7.2rem);
  text-transform: uppercase;
}

.kw-hero h1 span,
.product-stats span,
.kw-footer h3 {
  color: var(--teal);
}

.lede {
  max-width: 36ch;
  margin: 0;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.kw-section {
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
}

.kw-section h2 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 0.95;
  margin: 0.35rem 0 1rem;
}

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

.three-col article {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.1rem;
  border-radius: 14px;
}

.three-col h3 {
  margin: 0 0 0.35rem;
}

.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--surface);
}

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

.product-stats div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.65rem;
  background: #f8f7f1;
}

.product-stats span {
  display: block;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
}

.product-stats small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(24 34 42 / 62%);
}

.product-media img {
  width: min(100%, 560px);
  max-height: 520px;
  filter: none;
  border-radius: 18px;
}

.kw-section.sand {
  background: var(--sand);
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 18px;
}

#story p {
  max-width: 72ch;
}

#story blockquote {
  margin: 1rem 0 1.2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--teal);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
}

.story-image {
  margin-top: 1rem;
  width: 100%;
  max-height: 520px;
  filter: none;
  border-radius: 16px;
}

.story-media {
  margin: 1rem auto 0;
  width: min(100%, 760px);
  padding: 0;
}

#story {
  text-align: center;
}

#story p,
#story blockquote {
  margin-left: auto;
  margin-right: auto;
}

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

.image-row img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}

.community-portrait {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.community-media {
  width: min(100%, 460px);
  margin-left: auto;
  border-radius: 24px;
  overflow: hidden;
  align-self: end;
}

.team-square {
  max-width: 760px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
}

.image-row .team-square {
  height: auto;
  max-height: 520px;
}

.giveback-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.giveback-copy p {
  max-width: 62ch;
}


.kw-footer {
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
}

.kw-footer h3 {
  margin: 0;
  font-size: clamp(3.5rem, 14vw, 9rem);
  line-height: 0.88;
}

.kw-footer p {
  margin: 0.65rem 0 0;
}

@media (max-width: 980px) {
  .kw-nav { display: none; }
  .kw-header { min-height: 66px; }
  .kw-hero,
  .product-split {
    grid-template-columns: 1fr;
  }
  .kw-hero {
    min-height: auto;
    padding-top: 2rem;
  }
  .hero-media { order: -1; }
  .hero-media img {
    width: min(100%, 280px);
    max-height: 520px;
  }
}

@media (max-width: 700px) {
  .kw-btn { min-height: 42px; }
  .kw-section { padding: 3.3rem 0; }
  .three-col,
  .product-stats {
    grid-template-columns: 1fr;
  }
  .kw-section.sand {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
  .giveback-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .image-row {
    grid-template-columns: 1fr;
  }
}
