:root {
  --bg: #fff9ec;
  --bg-alt: #fff3d4;
  --card: #ffffff;
  --text: #2f2411;
  --muted: #6a5c43;
  --primary: #d68a00;
  --primary-dark: #b86f00;
  --accent: #ffcf4d;
  --shadow: 0 18px 40px rgba(112, 74, 0, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 207, 77, 0.34), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 100%);
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header,
.site-footer {
  padding: 1.2rem 0;
}

.header-grid,
.hero-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.header-grid {
  grid-template-columns: 1.3fr 1fr auto;
}

.brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center;
  display: block;
}

.brand-kicker,
.eyebrow,
.news-meta {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.brand h1,
.section-heading h2,
.footer-grid h2 {
  margin: 0.15rem 0 0;
  line-height: 1.05;
  font-weight: 700;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary-dark);
}

.header-cta,
.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cta-link {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-link:hover,
.cta-link:focus-visible {
  color: var(--primary-dark);
}

.cta-link-primary {
  color: var(--muted);
}

.cta-link-secondary {
  color: var(--muted);
}

.hero {
  padding: 2.5rem 0 1rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hero-content,
.hero-card,
.card,
.footer-card {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(214, 138, 0, 0.12);
  box-shadow: var(--shadow);
}

.hero-content {
  padding: 0;
  border-radius: var(--radius-xl);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-image {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hero-image .card-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  background: transparent;
  display: block;
}

.hero-card {
  padding: 0;
  border-radius: var(--radius-xl);
  height: 100%;
  display: grid;
  gap: 0;
  overflow: hidden;
}

.hero-card .card-content {
  padding: 1rem 1.25rem 1.25rem;
}

.section {
  padding: 3.6rem 0 0;
}

.section-alt {
  padding-bottom: 3.2rem;
}

.section-heading {
  margin-bottom: 1.2rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.product-card-photo {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.card-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 1.25rem;
}

.product-card,
.news-card {
  min-height: 100%;
}

.product-card h3,
.news-card h3 {
  margin: 0.85rem 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.product-card p,
.news-card p,
.footer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: relative;
  background: linear-gradient(135deg, #ffe37b, #ffbc34);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: inherit;
}

.icon.honey::before {
  width: 1rem;
  height: 1rem;
  background: rgba(255, 255, 255, 0.65);
}

.icon.candle::before {
  width: 0.7rem;
  height: 1.35rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  top: -0.2rem;
}

.icon.candle::after {
  width: 0.4rem;
  height: 0.4rem;
  background: #fff;
  top: -1rem;
}

.icon.pollen::before {
  width: 1.5rem;
  height: 1.5rem;
  border: 4px dotted rgba(255, 255, 255, 0.75);
}

.icon.royal::before {
  width: 1.25rem;
  height: 1.7rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50% 50% 45% 45%;
}

.icon.royal::after {
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.85);
  bottom: -0.2rem;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.18);
}

.site-footer {
  padding-bottom: 2.4rem;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.footer-card {
  border-radius: var(--radius-xl);
  padding: 1.25rem;
}

@media (max-width: 980px) {
  .header-grid,
  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .products-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h2 {
    max-width: 13ch;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .header-cta,
  .hero-actions {
    width: 100%;
  }

  .cta-link {
    width: 100%;
  }

  .hero-stats,
  .products-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 1rem;
  }

  .jar-visual {
    min-height: 280px;
  }

  .site-nav {
    gap: 0.9rem;
  }
}
