:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #596a72;
  --line: #d7e1e5;
  --paper: #ffffff;
  --soft: #fff7e9;
  --mist: #e8f4f2;
  --accent: #0f8d83;
  --accent-dark: #13505b;
  --sun: #ffd166;
  --green: #6f9f6a;
  --pink: #f08ab3;
  --coral: #ff6b5f;
  --lavender: #b7a4ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffdfa;
  line-height: 1.56;
}

body::selection {
  background: var(--sun);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: 0;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 4px;
  background: var(--sun);
}

.logo-mark span {
  border: 1px solid rgba(23, 33, 38, 0.45);
  border-radius: 3px;
  background: rgba(240, 138, 179, 0.28);
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--accent);
}

.hero {
  min-height: 84vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  padding: clamp(58px, 8vw, 102px) clamp(20px, 5vw, 72px) 48px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 209, 102, 0.42), transparent 26%),
    radial-gradient(circle at 10% 82%, rgba(240, 138, 179, 0.32), transparent 24%),
    linear-gradient(115deg, rgba(255,247,233,0.98), rgba(232,244,242,0.9)),
    repeating-linear-gradient(90deg, rgba(19,80,91,0.08) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(19,80,91,0.06) 0 1px, transparent 1px 48px);
}

.hero.compact {
  min-height: 68vh;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(40px, 6.4vw, 82px);
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  font-size: 23px;
}

p {
  margin: 0;
}

.lead {
  max-width: 720px;
  margin-top: 22px;
  color: #33434a;
  font-size: clamp(18px, 2vw, 22px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--accent-dark);
  color: white;
  font-weight: 750;
  text-decoration: none;
}

.button.secondary {
  background: white;
  color: var(--ink);
}

.button.amazon {
  border-color: var(--coral);
  background: var(--coral);
  color: white;
}

.button.small {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 14px;
}

.visual-stage {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 0.72;
  justify-self: center;
  border: 2px solid #94a4ab;
  border-radius: 8px;
  background: white;
  box-shadow: 0 22px 60px rgba(23, 33, 38, 0.15);
  padding: 36px 36px 28px;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  background: white;
}

.hook {
  position: absolute;
  top: 14px;
  width: 54px;
  height: 20px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.hook.left { left: 88px; }
.hook.right { right: 88px; }

.door-organizer {
  width: 75%;
  height: 86%;
  margin: 12px auto 0;
  display: grid;
  gap: 9px;
  padding: 12px;
  border-radius: 8px;
  background: #22282b;
}

.door-organizer.five {
  grid-template-rows: repeat(5, 1fr);
}

.door-organizer.four {
  height: 70%;
  grid-template-rows: repeat(4, 1fr);
}

.pocket {
  position: relative;
  border: 2px solid rgba(255,255,255,0.66);
  border-radius: 6px;
  background: rgba(255,255,255,0.24);
}

.pocket::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 11px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.38);
}

.mesh {
  position: absolute;
  width: 25px;
  height: 54px;
  border: 1px solid rgba(255,255,255,0.75);
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.38) 0 2px, transparent 2px 6px);
}

.mesh.left { left: -29px; }
.mesh.right { right: -29px; }
.mesh.a { top: 18%; }
.mesh.b { top: 42%; }
.mesh.c { top: 66%; }

.callout {
  position: absolute;
  right: -10px;
  bottom: 24px;
  max-width: 210px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(23, 33, 38, 0.12);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.sticker-row {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.sticker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgba(23, 33, 38, 0.18);
  border-radius: 999px;
  background: white;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 7px 18px rgba(23, 33, 38, 0.08);
}

.article-copy {
  max-width: 980px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
}

.article-copy p + p {
  margin-top: 12px;
}

main section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 660px;
  color: var(--muted);
}

.answer {
  max-width: 980px;
  margin-bottom: 28px;
  padding: 18px;
  border-left: 5px solid var(--accent);
  background: var(--soft);
  font-size: 18px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(23, 33, 38, 0.06);
}

.card p {
  margin-top: 10px;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
}

.product-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
  box-shadow: 0 12px 36px rgba(23, 33, 38, 0.07);
}

.mini-organizer {
  width: 116px;
  height: 156px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 10px;
  display: grid;
  gap: 8px;
  background: #f7fafb;
}

.mini-organizer.four { grid-template-rows: repeat(4, 1fr); height: 136px; }
.mini-organizer.five { grid-template-rows: repeat(5, 1fr); }

.mini-organizer div {
  border: 1px solid rgba(23,33,38,0.55);
  border-radius: 4px;
  background: rgba(23,117,138,0.12);
}

.type-badge {
  min-height: 116px;
  border: 2px solid rgba(23, 33, 38, 0.12);
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  color: var(--accent-dark);
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.34), rgba(240, 138, 179, 0.2)),
    white;
}

.type-badge.ten {
  background:
    linear-gradient(135deg, rgba(15, 141, 131, 0.18), rgba(183, 164, 255, 0.28)),
    white;
}

.colors {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0;
}

.colors span {
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}

.links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: white;
  font-size: 15px;
}

th, td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--soft);
}

.checklist {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.checklist li {
  margin: 8px 0;
}

details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin-top: 10px;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, var(--accent-dark), #23214d);
  color: white;
  padding: clamp(22px, 4vw, 34px);
}

.cta-band p {
  margin-top: 8px;
  color: rgba(255,255,255,0.78);
}

footer {
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  .hero,
  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-band {
    display: block;
  }

  .section-head p,
  .cta-band .actions {
    margin-top: 14px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

}

@media (max-width: 560px) {
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card > .hero-photo {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
  }

  .product-card h3 {
    font-size: 30px;
  }

  .product-card p {
    font-size: 18px;
  }

  .visual-stage {
    padding-left: 28px;
    padding-right: 28px;
  }

  .callout {
    right: 10px;
    bottom: 10px;
  }

  table {
    display: block;
    overflow-x: auto;
  }

}
