:root {
  --teal: #0f6f7f;
  --teal-dark: #0a4f5a;
  --orange: #e8935b;
  --peach: #f2b98a;
  --yellow: #f4c542;
  --cream: #fffaf1;
  --ink: #26333a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Quicksand', 'Baloo 2', 'Comic Neue', sans-serif;
  color: var(--ink);
  background: var(--cream);
}

h1, h2, h3 {
  font-family: 'Baloo 2', 'Quicksand', sans-serif;
  color: var(--teal-dark);
  margin: 0 0 0.5em;
}

a { color: inherit; }

.top-bar {
  background: var(--teal);
  color: white;
}
.top-bar nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.9rem 1.5rem;
}
.top-bar nav a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}
.top-bar .logo-mark {
  height: 48px;
  margin-right: auto;
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(244,197,66,0.25), transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(232,147,91,0.18), transparent 55%);
}
.hero-copy { flex: 1 1 480px; }
.hero-kicker {
  display: inline-block;
  background: white;
  border: 2px solid var(--peach);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.hero p {
  font-size: 1.15rem;
  max-width: 34em;
}
.hero .cta {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--orange);
  color: white;
  font-weight: 700;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(232,147,91,0.4);
  transition: transform 0.15s ease;
}
.hero .cta:hover { transform: translateY(-2px); }
.hero-mascot {
  flex: 0 0 260px;
  max-width: 260px;
  filter: drop-shadow(0 12px 20px rgba(15,111,127,0.25));
}

.tiles {
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.tile {
  display: block;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 111, 127, 0.12);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(15, 111, 127, 0.2);
}
.tile .swatch {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.tile h3 {
  padding: 1rem 1rem 0;
  font-size: 1.1rem;
}
.tile p {
  padding: 0 1rem 1.2rem;
  font-size: 0.95rem;
  color: #5a6a70;
}

.trust {
  background: var(--teal-dark);
  color: white;
  padding: 3rem 1.5rem;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.trust h3 { color: var(--yellow); }
.trust p { color: #cfe6e9; font-size: 0.95rem; }

.products {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}
.products h2 { text-align: center; margin-bottom: 1.5rem; }
.products h3 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
}
.product-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}
.product {
  display: block;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 111, 127, 0.12);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s ease;
}
.product:hover { transform: translateY(-3px); }
.product img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: white;
  padding: 0.5rem;
}
.product h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  padding: 0 0.9rem;
  line-height: 1.3;
  height: 2.6em;
  overflow: hidden;
}
.product .price {
  display: block;
  padding: 0.5rem 0.9rem 1rem;
  font-weight: 700;
  color: var(--orange);
}
.disclosure {
  text-align: center;
  font-size: 0.8rem;
  color: #8a9aa0;
  margin-top: 2rem;
}

.brands {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  text-align: center;
}
.brands h2 { margin-bottom: 1.5rem; }
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}
.brand-strip span {
  font-weight: 700;
  color: var(--teal);
  border: 2px solid var(--peach);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.9rem;
}

footer {
  background: var(--teal);
  color: white;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
}
