:root {
  --cream: #fff8ee;
  --paper: #fffdf8;
  --sage: #a7b89a;
  --sage-dark: #63755c;
  --terracotta: #d97757;
  --yellow: #f2c14e;
  --charcoal: #2f3437;
  --muted: #676d69;
  --line: rgba(47, 52, 55, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(167, 184, 154, 0.2), transparent 28rem),
    var(--cream);
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: auto;
  max-width: 1200px;
  padding: 24px 28px;
}
.brand { align-items: center; display: flex; gap: 12px; }
.brand img {
  border: 1px solid rgba(99,117,92,.25);
  border-radius: 50%;
  height: 56px;
  width: 56px;
}
.brand span { display: grid; gap: 3px; }
.brand strong, h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.brand strong { font-size: 18px; font-weight: 700; }
.brand small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
nav { display: flex; gap: 30px; }
nav a, .footer-links a {
  color: #505651;
  font-size: 13px;
  font-weight: 700;
}
nav a:hover, .footer-links a:hover { color: var(--terracotta); }

.hero {
  align-items: center;
  display: grid;
  gap: clamp(48px, 7vw, 104px);
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .8fr);
  margin: auto;
  max-width: 1200px;
  min-height: 690px;
  padding: 76px 28px 100px;
}
.eyebrow {
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
h1, h2 { letter-spacing: -.045em; }
.hero h1 {
  font-size: clamp(58px, 7vw, 92px);
  line-height: .95;
  margin: 0;
}
.hero h1 em { color: var(--terracotta); font-weight: 500; }
.lead {
  color: #555c58;
  font-size: 18px;
  line-height: 1.75;
  margin: 32px 0 0;
  max-width: 600px;
}
.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
}
.button.dark { background: var(--charcoal); color: white; }
.button.dark:hover { background: var(--terracotta); }
.text-link {
  border-bottom: 1px solid var(--sage-dark);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
  padding-bottom: 4px;
}
.microcopy { color: #777c78; font-size: 11px; margin-top: 30px; }

.hero-card {
  background: var(--paper);
  border: 1px solid rgba(99,117,92,.2);
  border-radius: 38px;
  box-shadow: 0 34px 90px rgba(75,76,64,.13);
  min-height: 490px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transform: rotate(1.8deg);
}
.hero-card::before {
  background: var(--sage);
  border-radius: 50%;
  content: "";
  height: 180px;
  opacity: .18;
  position: absolute;
  right: -65px;
  top: -75px;
  width: 180px;
}
.card-top {
  align-items: center;
  display: flex;
  font-size: 10px;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: .15em;
}
.card-top b {
  align-items: center;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  height: 42px;
  justify-content: center;
  letter-spacing: 0;
  width: 42px;
}
.kitchen-mark { height: 255px; margin: 22px 0 8px; position: relative; }
.bowl {
  background: var(--sage);
  border-radius: 18px 18px 95px 95px;
  bottom: 35px;
  height: 92px;
  left: 12%;
  position: absolute;
  width: 76%;
}
.tool {
  color: var(--sage-dark);
  font: 700 130px/1 Georgia, serif;
  position: absolute;
  top: 5px;
}
.tool-one { left: 22%; transform: rotate(35deg); }
.tool-two { color: var(--terracotta); right: 25%; transform: rotate(-32deg); }
.benefit-list { border-top: 1px solid var(--line); padding-top: 16px; }
.benefit-list p { font: 17px Georgia, serif; margin: 11px 0; }
.benefit-list span {
  color: var(--terracotta);
  font: 800 9px Arial, sans-serif;
  margin-right: 16px;
}

.content-section {
  margin: auto;
  max-width: 1200px;
  padding: 96px 28px;
}
.section-heading {
  align-items: end;
  display: grid;
  gap: 72px;
  grid-template-columns: 1fr .78fr;
}
.section-heading h2, .categories > h2, .how h2, .about h2, .page-title {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.03;
  margin: 0;
}
.section-heading > p, .about p, .how p, .legal-card p, .product-copy > p,
.detail-card p, .detail-card li {
  color: #5d635f;
  font-size: 16px;
  line-height: 1.75;
}
.empty-state {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  display: grid;
  gap: 34px;
  grid-template-columns: 150px 1fr;
  margin-top: 54px;
  padding: 44px;
}
.product-card {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(180px, 280px) 1fr;
  margin-top: 54px;
  overflow: hidden;
  padding: 24px 44px 24px 24px;
}
.product-card-image {
  aspect-ratio: 2 / 3;
  border-radius: 22px;
  display: block;
  overflow: hidden;
}
.product-card-image img { height: 100%; object-fit: cover; width: 100%; }
.product-card h3 { font-size: 34px; margin: 0 0 14px; }
.product-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 22px;
}
.plus {
  align-items: center;
  background: var(--sage);
  border-radius: 26px;
  color: var(--paper);
  display: flex;
  font: 300 58px Georgia, serif;
  height: 132px;
  justify-content: center;
}
.empty-state h3 { font-size: 31px; margin: 0 0 10px; }
.empty-state p:last-child { color: var(--muted); line-height: 1.7; margin: 0; }
.categories { padding-top: 38px; }
.category-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}
.category-grid article {
  background: rgba(255,253,248,.7);
  border: 1px solid var(--line);
  border-radius: 25px;
  min-height: 270px;
  padding: 30px;
}
.category-grid article > span {
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 900;
}
.category-grid h3 { font-size: 27px; margin: 76px 0 14px; }
.category-grid p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.how {
  background: var(--charcoal);
  border-radius: 38px;
  color: white;
  margin: 0 auto 96px;
  max-width: 1144px;
  padding: 96px 28px;
}
.how .eyebrow { color: var(--yellow); }
.how > div {
  display: grid;
  gap: 82px;
  grid-template-columns: 1fr .75fr;
}
.how p { color: #d8d8d2; margin-top: 0; }
.about {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 160px 1fr;
  padding-top: 52px;
}
.about img { border: 1px solid var(--line); border-radius: 50%; }
.about h2 { font-size: 46px; }

footer {
  align-items: end;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto;
  margin: auto;
  max-width: 1200px;
  padding: 38px 28px;
}
footer strong { font: 700 19px Georgia, serif; }
footer p { color: var(--muted); font-size: 12px; }
.footer-links { display: flex; gap: 24px; }
.copyright { grid-column: 1/-1; margin: 0; }

.inner-header { border-bottom: 1px solid var(--line); }
.inner-page { margin: auto; max-width: 1200px; min-height: 70vh; padding: 74px 28px 96px; }
.inner-intro { max-width: 820px; }
.inner-intro > p:last-child { color: var(--muted); font-size: 18px; line-height: 1.75; }
.legal-card, .detail-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  margin-top: 46px;
  max-width: 850px;
  padding: 36px;
}
.legal-card h2, .detail-card h2 { font-size: 27px; margin: 30px 0 8px; }
.legal-card h2:first-child { margin-top: 0; }
.back-link {
  color: var(--sage-dark);
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 38px;
}
.product-shell {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: .9fr 1.1fr;
}
.product-image {
  align-items: center;
  aspect-ratio: 1;
  background: var(--sage);
  border-radius: 34px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.product-image.product-poster { aspect-ratio: 2 / 3; background: var(--paper); }
.product-image img { height: 100%; object-fit: cover; width: 100%; }
.product-image span { color: white; font: 300 90px Georgia, serif; }
.product-copy h1 { font-size: clamp(44px, 5vw, 68px); line-height: 1; margin: 0 0 24px; }
.affiliate-note { color: #7b807c; font-size: 11px; line-height: 1.55; }
.price-note { color: #7b807c; font-size: 11px; line-height: 1.55; margin-top: 8px; }
.detail-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 52px;
}
.detail-card { margin-top: 0; }

@media (max-width: 820px) {
  nav { display: none; }
  .hero, .section-heading, .how > div, .product-shell { grid-template-columns: 1fr; }
  .hero-card { min-height: 450px; transform: none; }
  .category-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: minmax(150px, 220px) 1fr; }
}
@media (max-width: 560px) {
  .site-header, footer { padding-left: 18px; padding-right: 18px; }
  .brand small { display: none; }
  .brand img { height: 48px; width: 48px; }
  .hero, .content-section, .inner-page { padding-left: 18px; padding-right: 18px; }
  .hero { min-height: auto; padding-top: 56px; }
  .hero h1 { font-size: 52px; }
  .hero-card { border-radius: 28px; min-height: 400px; padding: 22px; }
  .empty-state { grid-template-columns: 1fr; padding: 24px; }
  .product-card { grid-template-columns: 1fr; padding: 18px; }
  .product-card-image { max-height: 520px; }
  .plus { height: 96px; }
  .how { border-radius: 0; padding: 72px 24px; }
  .about { grid-template-columns: 90px 1fr; }
  .about h2 { font-size: 36px; }
  footer { align-items: start; grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
  .detail-grid { grid-template-columns: 1fr; }
}
