:root {
  --bg: #f7efe1;
  --bg-accent: #fff9f0;
  --surface: rgba(255, 252, 245, 0.78);
  --surface-strong: #fffdf8;
  --text: #1f1a17;
  --muted: #665b53;
  --line: rgba(86, 60, 32, 0.12);
  --orange: #f97316;
  --orange-deep: #c2410c;
  --sand: #efe0c5;
  --leaf: #d7edd7;
  --sky: #d7ebf8;
  --mango: #ffe2ad;
  --coral: #ffd5c9;
  --plum: #e4daf8;
  --shadow: 0 24px 60px rgba(102, 74, 36, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 28%),
    radial-gradient(circle at right 20%, rgba(91, 181, 225, 0.18), transparent 20%),
    linear-gradient(180deg, #fff8ee 0%, var(--bg) 52%, #f4ead8 100%);
}

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

button {
  font: inherit;
}

code {
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(31, 26, 23, 0.08);
}

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 24px auto 48px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(95, 71, 39, 0.08);
}

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

.brand-mark-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffb53d, var(--orange));
  color: #fff;
  font-weight: 700;
}

.brand-mark-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.92rem;
}

.brand-mark-copy span {
  color: var(--muted);
}

.topbar-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.topbar-cta,
.button,
.add-cart-btn,
.chip-button,
.filter-pill {
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.topbar-cta,
.button-primary,
.add-cart-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 14px 24px rgba(249, 115, 22, 0.24);
}

.topbar-cta {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 52px 0 28px;
  align-items: center;
}

.hero-copy,
.hero-stage,
.category-card,
.product-card,
.trust-grid article,
.info-drawer-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 40px;
  border-radius: var(--radius-xl);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.info-drawer-card h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  max-width: 11ch;
}

.hero-summary {
  max-width: 58ch;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 700;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.hero-points {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 200, 94, 0.65), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 247, 233, 0.88));
}

.hero-card {
  border-radius: 20px;
  padding: 20px;
}

.hero-card-main {
  width: min(360px, 100%);
  background: rgba(255, 255, 255, 0.86);
}

.hero-card-main strong,
.hero-card-accent strong,
.hero-tile strong,
.category-card h3,
.product-copy h3,
.trust-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-card-tag,
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange-deep);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-card-accent {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 190px;
  background: #201713;
  color: #fff1e3;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.hero-tile,
.category-card,
.product-card,
.trust-grid article {
  border-radius: var(--radius-lg);
}

.hero-tile {
  min-height: 128px;
  padding: 18px;
}

.hero-tile span,
.category-card p,
.product-copy p,
.trust-grid p,
.info-drawer-card p {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 30px 0 10px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 12ch;
}

.section-heading-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.category-grid,
.product-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

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

.category-card {
  padding: 22px;
}

.chip-button {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 700;
}

.filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.filter-pill.is-active {
  color: #fff;
  background: #201713;
}

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

.product-card {
  padding: 18px;
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 148px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.product-media span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.2rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.add-cart-btn {
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 700;
}

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

.trust-grid article {
  padding: 22px;
}

.info-drawer {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(20, 14, 10, 0.45);
}

.info-drawer[hidden] {
  display: none;
}

.info-drawer-card {
  position: relative;
  width: min(460px, 100%);
  padding: 28px;
  border-radius: 26px;
  background: var(--surface-strong);
}

.drawer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 26, 23, 0.08);
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
}

.tone-mango {
  background-color: rgba(255, 226, 173, 0.72);
}

.tone-sky {
  background-color: rgba(215, 235, 248, 0.76);
}

.tone-leaf {
  background-color: rgba(215, 237, 215, 0.76);
}

.tone-coral {
  background-color: rgba(255, 213, 201, 0.76);
}

.tone-plum {
  background-color: rgba(228, 218, 248, 0.76);
}

.tone-sand {
  background-color: rgba(239, 224, 197, 0.82);
}

.topbar-cta:hover,
.button:hover,
.add-cart-btn:hover,
.chip-button:hover,
.filter-pill:hover,
.drawer-close:hover {
  transform: translateY(-2px);
}

@media (max-width: 1040px) {
  .hero,
  .category-grid,
  .product-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    gap: 22px;
  }

  .section-heading-inline {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1240px);
    margin-top: 16px;
  }

  .topbar {
    position: static;
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .topbar-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .category-grid,
  .product-grid,
  .trust-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-stage {
    padding: 24px;
  }

  .hero-card-accent {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .product-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .add-cart-btn,
  .button,
  .topbar-cta {
    width: 100%;
    text-align: center;
  }
}
