/* Kamukunji Utensils — Utenzo Homepage 03 system. Zero JavaScript. */

:root {
  --navy: #0C2C48;
  --navy-hover: #0A243B;
  --dust: #5A86A9;
  --ink: #0C2C48;
  --text: #5A6167;
  --stone: #5A6167;
  --muted: #8A9198;
  --line: #E9E9E9;
  --soft: #F4F6F8;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --cream: #FFFFFF;
  --ash: #F4F6F8;
  --ember: #0C2C48;
  --ember-hover: #0A243B;
  --forest: #0C2C48;
  --forest-ink: #FFFFFF;
  --wa: #25D366;
  --wa-hover: #1EBE5A;
  --wa-ink: #FFFFFF;
  --radius: 8px;
  --radius-pill: 999px;
  --shadow: 0 8px 24px rgba(12, 44, 72, 0.06);
  --shadow-hover: 0 14px 32px rgba(12, 44, 72, 0.10);
  --measure: 68ch;
  --max: 1320px;
  --header-h: 78px;
  --tap: 48px;
  --font: "Urbanist", "Segoe UI", sans-serif;
  --font-display: "Urbanist", "Segoe UI", sans-serif;
  --font-body: "Urbanist", "Segoe UI", sans-serif;
  --ease: 280ms cubic-bezier(0.32, 0.72, 0, 1);
}

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

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
  letter-spacing: 0.2px;
}

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

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--dust); }

:focus-visible {
  outline: 2px solid var(--dust);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
}
.skip:focus { left: 8px; }

.wrap {
  width: min(100% - 30px, var(--max));
  margin-inline: auto;
}

.tabular,
.price,
.chips,
table,
.spec-table td,
.spec-table th { font-variant-numeric: tabular-nums; }

h1, h2, h3, .display {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.5em;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 3.4vw + 0.6rem, 3.25rem); }
h2 { font-size: clamp(1.5rem, 1.6vw + 0.8rem, 2.1rem); }
h3 { font-size: 1.05rem; font-weight: 600; }
p { margin: 0 0 1em; }
.lede { font-size: 1.05rem; max-width: 42ch; color: var(--text); }
.fine { font-size: 0.88rem; color: var(--muted); }

/* ----- Top bar ----- */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
}
.topbar a { color: var(--navy); }
.topbar p { margin: 0; font-weight: 500; color: var(--text); }
@media (max-width: 767px) {
  .topbar-inner { justify-content: center; }
  .topbar .hide-sm { display: none; }
}

/* ----- Header ----- */
.site-header {
  background: var(--white);
  color: var(--navy);
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-h);
  border-bottom: 1px solid var(--line);
}
.site-header a { color: var(--navy); text-decoration: none; }
.site-header a:hover { color: var(--dust); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px 20px;
  min-height: var(--header-h);
  position: relative;
}
.header-wa {
  margin-left: auto;
  flex-shrink: 0;
  min-height: 44px;
  padding: 10px 18px;
  white-space: nowrap;
}
.header-search { flex: 1 1 180px; max-width: 280px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img {
  display: block;
  height: 48px;
  width: auto;
}
.nav-toggle { display: none; }
.nav-btn {
  display: none;
  width: var(--tap);
  height: var(--tap);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
}
.nav-btn .bar,
.nav-btn .bar::before,
.nav-btn .bar::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}
.nav-btn .bar::before,
.nav-btn .bar::after { content: ""; position: absolute; left: 0; }
.nav-btn .bar::before { top: -6px; }
.nav-btn .bar::after { top: 6px; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px 22px;
  flex: 1;
}
.nav a {
  padding: 8px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.nav a[aria-current="page"] { color: var(--dust); }
.nav .btn { margin-left: 8px; }

.site-search {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 180px;
  max-width: 320px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--soft);
  overflow: hidden;
}
.site-search:focus-within {
  border-color: var(--dust);
  background: var(--white);
}
.site-search input[type="search"] {
  flex: 1;
  min-height: 0;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0 8px 0 16px;
  border-radius: 0;
  font-size: 14px;
  color: var(--navy);
}
.site-search input[type="search"]::placeholder { color: var(--muted); }
.site-search input[type="search"]::-webkit-search-cancel-button { appearance: none; }
.site-search button {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-search button:hover { color: var(--dust); }
.page-search {
  max-width: 560px;
  height: 52px;
  margin: 8px 0 20px;
}
.page-search input[type="search"] { font-size: 16px; }
.search-status { color: var(--text); font-weight: 600; margin: 0 0 24px; }
.card[hidden] { display: none !important; }

@media (max-width: 1023px) {
  .header-inner { flex-wrap: wrap; }
  .header-search {
    order: 8;
    flex: 1 1 100%;
    width: 100%;
    max-width: none;
    margin: 0 0 12px;
  }
  .header-wa { margin-left: auto; }
  .nav-btn { display: inline-flex; }
  @media (max-width: 520px) {
    .header-wa span { display: none; }
    .header-wa { min-width: 48px; padding: 10px 12px; }
  }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav {
    flex: none;
  }
  .nav a { padding: 14px 8px; min-height: var(--tap); }
  .nav .btn { margin: 8px 0 0; width: 100%; justify-content: center; }
  .header-inner:has(#nav-toggle:checked) .nav { display: flex; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.btn:hover { color: inherit; }
.btn:active { transform: translateY(1px); }
.btn-ember,
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-ember:hover,
.btn-navy:hover { background: var(--navy-hover); color: #fff; }
.btn-wa {
  background: var(--wa);
  color: var(--wa-ink);
  border-color: #1DA851;
  font-weight: 700;
  box-shadow: 0 1px 0 rgba(16, 80, 40, 0.12);
}
.btn-wa:hover { background: var(--wa-hover); color: #fff; }
.btn-wa .wa-icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn-wa-lg { min-height: 52px; padding: 14px 28px; }
.btn-wa-block { width: 100%; border-radius: 8px; }
.btn-wa-outline {
  background: transparent;
  color: #128C4A;
  border-color: #25D366;
}
.btn-wa-outline:hover { background: #E8F8EE; color: #0E6E3A; }
.btn-ghost,
.btn-ghost-ink {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover,
.btn-ghost-ink:hover { background: var(--soft); color: var(--navy); }
.btn-call { background: var(--white); color: var(--navy); border-color: var(--line); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.chip {
  display: inline-block;
  padding: 4px 10px;
  background: var(--soft);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

/* ----- Hero slider (Utenzo HP03) ----- */
.hero-slider {
  position: relative;
  background: #f3efe8;
}
.hero-slider > input { position: absolute; opacity: 0; pointer-events: none; }
.slides {
  display: grid;
  position: relative;
  min-height: min(82vh, 760px);
}
.slide {
  grid-area: 1 / 1;
  position: relative;
  min-height: min(82vh, 760px);
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease, visibility 700ms ease;
  z-index: 0;
}
#hs1:checked ~ .slides .slide-1,
#hs2:checked ~ .slides .slide-2,
#hs3:checked ~ .slides .slide-3 {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 50%;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 252, 247, 0.22) 0%, rgba(255, 252, 247, 0.06) 36%, transparent 58%);
  pointer-events: none;
}
.slide > .wrap {
  position: relative;
  z-index: 2;
  padding: 72px 0;
}
.slide-copy {
  max-width: 34em;
  padding: 32px 36px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(12, 44, 72, 0.08);
}
.slide-kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dust);
}
.slide-copy h1 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 3.8vw, 3.5rem);
  line-height: 1.08;
}
.slide-copy .lede {
  color: var(--text);
  margin: 0 0 24px;
  font-size: 1.08rem;
  max-width: 36ch;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dots label {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(12, 44, 72, 0.25);
  cursor: pointer;
}
#hs1:checked ~ .hero-dots label[for="hs1"],
#hs2:checked ~ .hero-dots label[for="hs2"],
#hs3:checked ~ .hero-dots label[for="hs3"] { background: var(--navy); }

/* ----- Sections ----- */
.section { padding: 80px 0 72px; }
.section-tight { padding: 48px 0; }
.section-forest {
  background: var(--navy);
  color: #fff;
}
.section-forest h2,
.section-forest a { color: #fff; }
.section-white { background: var(--white); }
.section-soft { background: var(--soft); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}
.section-head h2 { margin: 0; }
.section-head .sub { margin: 6px 0 0; color: var(--text); }
.section-head a.more {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  white-space: nowrap;
}
.section-head a.more:hover { color: var(--dust); }

/* ----- Category circles ----- */
.cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 18px;
  text-align: center;
}
@media (min-width: 640px) { .cats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cats { grid-template-columns: repeat(5, 1fr); } }
.cat {
  color: inherit;
  text-decoration: none;
}
.cat-media {
  width: min(100%, 200px);
  aspect-ratio: 1;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--soft);
}
.cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.32, 0.72, 0, 1);
}
.cat:hover .cat-media img { transform: scale(1.06); }
.cat strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

/* ----- Product grid ----- */
.grid {
  display: grid;
  gap: 28px 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.card:hover {
  border-color: #d5dce2;
  box-shadow: var(--shadow);
}
.card-media {
  display: block;
  position: relative;
  background: var(--soft);
  overflow: hidden;
}
.card-media img,
.card > a > img,
.card img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  background: var(--soft);
  transition: transform 500ms cubic-bezier(0.32, 0.72, 0, 1);
}
.card:hover .card-media img { transform: scale(1.03); }
.card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card-body h3 { font-size: 16px; margin: 0; line-height: 1.4; font-weight: 600; }
.card-body h3 a { color: var(--navy); text-decoration: none; }
.card-body h3 a:hover { color: var(--dust); }
.card-body .btn-wa {
  margin-top: auto;
  min-height: 46px;
}
.price {
  font-weight: 700;
  font-size: 16px;
  margin: 2px 0 4px;
  color: var(--navy);
}
.hub-buy { margin: 8px 0 28px; }
.gallery-buy {
  margin-top: 16px;
}
.gallery-buy .btn-wa { width: 100%; }

.runway { display: contents; }
.tile { color: inherit; }
.tile-cap { padding: 0; }
.tile-cap strong { font-size: 16px; }

/* ----- Split / banners ----- */
.split {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.promo-row {
  display: grid;
  gap: 24px;
}
@media (min-width: 800px) { .promo-row { grid-template-columns: 1fr 1fr; } }
.promo {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--navy);
}
.promo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-copy {
  position: relative;
  z-index: 1;
  padding: 32px;
  max-width: 18em;
}
.promo h2 { font-size: 1.6rem; margin-bottom: 8px; }
.deal {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--soft);
}
.deal img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.deal-copy {
  position: relative;
  z-index: 1;
  padding: 56px 0;
  max-width: 28em;
}

/* Instagram */
.ig {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 768px) { .ig { grid-template-columns: repeat(5, 1fr); } }
.ig img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* Product page */
.crumb {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 20px 0 0;
}
.crumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.crumb li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--muted); }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--navy); }

.product {
  display: grid;
  gap: 40px;
  padding: 28px 0 56px;
}
@media (min-width: 900px) {
  .product { grid-template-columns: 1fr 1fr; align-items: start; }
}
.gallery { position: relative; }
.gallery input { position: absolute; opacity: 0; pointer-events: none; }
.gallery-main { background: var(--soft); overflow: hidden; }
.gallery-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: none;
}
#g1:checked ~ .gallery-main img:nth-child(1),
#g2:checked ~ .gallery-main img:nth-child(2),
#g3:checked ~ .gallery-main img:nth-child(3) { display: block; }
.thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.thumbs label {
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
  min-height: var(--tap);
}
.thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; }
#g1:checked ~ .thumbs label[for="g1"],
#g2:checked ~ .thumbs label[for="g2"],
#g3:checked ~ .thumbs label[for="g3"] { border-color: var(--navy); }

.buy { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.promise {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text);
  margin: 8px 0 16px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.spec-table th { width: 38%; font-weight: 600; color: var(--navy); }

.range-links { display: flex; flex-wrap: wrap; gap: 8px; }
.range-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--navy);
  background: var(--white);
}
.range-links a[aria-current="page"] {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  min-height: var(--tap);
  display: flex;
  align-items: center;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { padding-bottom: 12px; }

.prose { max-width: var(--measure); }
.prose h2 { margin-top: 1.6em; }
.prose > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin: 0 0 1.5em;
}
.meta-date { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.2em; }
.byline { margin-top: 2em; font-size: 0.95rem; color: var(--muted); }

label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
input, textarea, select {
  width: 100%;
  min-height: var(--tap);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font: inherit;
}
textarea { min-height: 140px; }
.field { margin-bottom: 16px; }

.site-footer {
  background: var(--navy);
  color: #D7E2EA;
  padding: 72px 0 120px;
}
.site-footer a { color: #D7E2EA; }
.site-footer a:hover { color: #fff; }
.site-footer .logo img { height: 48px; background: #fff; border-radius: 4px; padding: 4px; }
.foot-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.site-footer h2 {
  font-size: 16px;
  font-family: var(--font);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 10px; }
.map-frame {
  aspect-ratio: 16 / 9;
  border: 0;
  width: 100%;
  background: #081824;
}

.sticky-bar { display: none; }
@media (max-width: 767px) {
  .sticky-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: var(--white);
    border-top: 1px solid var(--line);
  }
  .sticky-bar .btn { width: 100%; }
}

.note {
  background: var(--soft);
  border-left: 3px solid var(--navy);
  padding: 12px 16px;
  margin: 16px 0;
}
.steps { display: grid; gap: 24px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step-num {
  font-family: var(--font);
  font-size: 2rem;
  color: var(--navy);
  display: block;
  font-weight: 700;
}
.link-row { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 16px 0; }

.trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trust-list {
  list-style: none;
  margin: 0;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}
@media (min-width: 768px) {
  .trust-list { grid-template-columns: repeat(4, 1fr); }
}

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