:root {
  color-scheme: only light;
  --cream: #fff5e6;
  --citrus: #f7b733;
  --mango: #f26b21;
  --berry: #e6425e;
  --leaf: #1c3a2a;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(27, 27, 27, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff1cf 0%, #fff9f1 40%, #ffffff 100%);
  line-height: 1.6;
}

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

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

.site-header {
  padding: 24px 6vw;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--leaf);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 700;
}

.logo-title {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cart-icon {
  position: relative;
  padding: 8px;
  color: var(--ink);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--mango);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 26px rgba(28, 58, 42, 0.2);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(28, 58, 42, 0.28);
}

.button.ghost {
  background: rgba(28, 58, 42, 0.08);
  color: var(--leaf);
  box-shadow: none;
}

.hero-shop {
  background: linear-gradient(135deg, #fff1cf 0%, #ffe2c3 45%, #fff7eb 100%);
  padding: 80px 6vw 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-shop::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 183, 51, 0.35), transparent 70%);
  top: -140px;
  right: -120px;
}

.hero-content.centered {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s ease both;
}

.hero-content h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  margin: 0 0 24px;
  line-height: 1.1;
}

.lead {
  font-size: 1.05rem;
  color: #3d3d3d;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-card {
  background: var(--card);
  padding: 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card-label {
  margin: 0 0 12px;
  font-weight: 600;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  margin: 0;
}

.stat-label {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-note {
  margin-top: 18px;
  color: var(--muted);
}

.trusted {
  padding: 24px 6vw 0;
  text-align: center;
}

.section-title {
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pill-row span {
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(27, 27, 27, 0.08);
  font-weight: 600;
}

.section {
  padding: 72px 6vw;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  margin: 10px 0;
}

.section-note {
  color: var(--muted);
}

.two-column {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  background: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 22px rgba(27, 27, 27, 0.08);
}

/* Products Section */
.products {
  background: #fff;
}

.product-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.product-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-image {
  background: #f8f8f8;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info h3 {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  margin: 0 0 6px;
}

.product-info .price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 16px;
}

.add-to-cart {
  width: 100%;
  padding: 12px;
  border: none;
  background: var(--ink);
  color: #fff;
  border-radius: 99px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.add-to-cart:hover {
  background: var(--mango);
}

.pricing {
  background: linear-gradient(140deg, #fff5e6 0%, #ffffff 55%);
}

.compliance {
  padding-top: 48px;
}

.license-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.license-card {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 28px rgba(27, 27, 27, 0.08);
  border: 1px solid rgba(27, 27, 27, 0.05);
}

.license-count {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  margin: 0 0 6px;
  color: var(--leaf);
}

.license-title {
  margin: 0 0 6px;
  font-weight: 600;
}

.license-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.price-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 14px 30px rgba(27, 27, 27, 0.08);
  border: 1px solid rgba(27, 27, 27, 0.04);
}

.price-card h3 {
  font-family: "Fraunces", serif;
  margin-top: 0;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 500;
}

.distribution .stats-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.image-stack {
  display: grid;
  gap: 16px;
}

.image-stack img {
  border-radius: var(--radius-md);
  box-shadow: 0 18px 34px rgba(27, 27, 27, 0.12);
}

.funding {
  background: linear-gradient(120deg, rgba(247, 183, 51, 0.14), rgba(230, 66, 94, 0.1));
}

/* Team Section */
.team {
  background: #f9f9f9;
}

.team-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.team-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.team-initials {
  width: 80px;
  height: 80px;
  background: var(--cream);
  color: var(--mango);
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.team-card h3 {
  font-family: "Fraunces", serif;
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.team-role {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Mobile menu hidden for simplicity in this demo */
  }
}

.doc-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.doc-card {
  background: #fff;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(27, 27, 27, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.doc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(27, 27, 27, 0.1);
}

.doc-title {
  font-weight: 600;
  margin: 0 0 6px;
}

.doc-note {
  margin: 0;
  color: var(--muted);
}

.contact-card {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.contact-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
}

.contact-text {
  margin: 0;
  font-weight: 600;
}

.contact-note {
  margin-top: 16px;
  color: var(--muted);
}

.footer {
  padding: 32px 6vw 48px;
  text-align: center;
  color: var(--muted);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content {
    animation: none;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }
}
