:root {
  --bg: #fffaf3;
  --surface: #fffdf9;
  --surface-alt: #f7efe4;
  --text: #2f261f;
  --muted: #6d6258;
  --line: #e7d8c3;
  --primary: #d77a45;
  --primary-deep: #8b4b2c;
  --accent: #7fb3a1;
  --accent-deep: #466f61;
  --shadow: 0 18px 40px rgba(84, 53, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(127, 179, 161, 0.16), transparent 28%),
    radial-gradient(circle at left 20%, rgba(215, 122, 69, 0.12), transparent 24%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.top-ribbon {
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid var(--line);
}

.top-ribbon a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 216, 195, 0.88);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #efb56c);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

.brand strong,
h1,
h2,
h3 {
  font-family: 'Fraunces', serif;
}

.brand strong {
  display: block;
  font-size: 1.15rem;
}

.brand small {
  display: block;
  color: var(--muted);
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.25rem;
  font-weight: 700;
}

.menu a:last-child {
  color: var(--accent-deep);
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-card,
.section-card,
.product-card {
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(231, 216, 195, 0.95);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding: 2rem;
}

.eyebrow,
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(127, 179, 161, 0.14);
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
}

h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.lead,
.section-copy,
.product-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #e99553);
}

.button-secondary {
  color: var(--accent-deep);
  background: rgba(127, 179, 161, 0.12);
  border: 1px solid rgba(127, 179, 161, 0.28);
}

.hero-visual {
  min-height: 320px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.45)),
    linear-gradient(135deg, #f2c88d, #f7eee0 45%, #b8d5c9 100%);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.hero-visual-inner {
  width: min(100%, 320px);
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), var(--shadow);
  display: grid;
  place-items: center;
  padding: 1.25rem;
  text-align: center;
}

.hero-visual-inner strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
}

.hero-visual-inner span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 1rem 0 3rem;
}

.section-card {
  padding: 1.6rem;
}

.product-grid,
.feature-grid {
  display: grid;
  gap: 1.25rem;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  padding: 1.4rem;
}

.product-top {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  margin-bottom: 1rem;
  background:
    linear-gradient(140deg, rgba(127, 179, 161, 0.18), rgba(255,255,255,0.36)),
    var(--surface-alt);
  display: grid;
  place-items: center;
  color: var(--accent-deep);
  font-weight: 800;
}

.price {
  margin: 0.25rem 0 0.8rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 3rem;
  background: #2f261f;
  color: rgba(255,255,255,0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 1.5rem;
}

.site-footer h2,
.site-footer h3 {
  margin-top: 0;
}

.site-footer a {
  color: #f8d7a4;
}

@media (max-width: 900px) {
  .hero-card,
  .footer-grid,
  .product-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-card,
  .section-card,
  .product-card {
    border-radius: 22px;
  }

  .cta-row {
    flex-direction: column;
  }

  .button,
  .button-secondary {
    width: 100%;
  }
}
