:root {
  --background: #f6f0e7;
  --surface: rgba(255, 250, 243, 0.92);
  --surface-border: rgba(138, 96, 51, 0.16);
  --text: #5e4028;
  --text-muted: rgba(94, 64, 40, 0.76);
  --accent: #b98538;
  --shadow: 0 24px 60px rgba(74, 48, 22, 0.18);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-body: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255, 246, 232, 0.95), transparent 30%),
    linear-gradient(180deg, #fbf7f0 0%, var(--background) 100%);
  color: var(--text);
  font-family: var(--font-body);
}

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

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

.shell {
  width: min(calc(100% - 40px), 1200px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 240, 0.84);
  border-bottom: 1px solid rgba(138, 96, 51, 0.08);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 18px 0;
}

.brand-mark img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(138, 96, 51, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.78);
  box-shadow: 0 6px 20px rgba(74, 48, 22, 0.05);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 96px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(79, 47, 18, 0.46) 0%, rgba(79, 47, 18, 0.14) 34%, rgba(79, 47, 18, 0.2) 100%),
    url("assets/background.png") center/cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 245, 231, 0.18), rgba(255, 245, 231, 0.4));
  z-index: -1;
}

.hero__grid {
  min-height: calc(100vh - 152px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  color: #fff8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-copy img {
  width: min(100%, 460px);
  margin-bottom: 12px;
}

.hero-copy p,
.page-hero p,
.card p {
  line-height: 1.65;
  color: var(--text-muted);
}

.hero-copy p {
  max-width: 760px;
  color: #fff8f0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 2.8rem);
  line-height: 1.2;
  margin: 28px 0 0;
}

.product-panel,
.card {
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow);
}

.product-panel {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 32px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.08), rgba(251, 245, 236, 0.2)),
    url("assets/honeyimage.jpg") center center / cover no-repeat;
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.7) 0%, rgba(255, 250, 243, 0.18) 38%, rgba(255, 250, 243, 0.08) 100%);
}

.product-panel__content {
  position: relative;
  z-index: 1;
  max-width: 300px;
}

.product-panel h1,
.page-hero h1,
.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
}

.product-panel h1 {
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  line-height: 1.05;
}

.price {
  margin: 24px 0 12px;
  font-family: var(--font-display);
  font-size: 3rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.pill {
  border: 1px solid rgba(185, 133, 56, 0.26);
  background: rgba(185, 133, 56, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  margin-top: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #c59143 0%, #ab752e 100%);
  color: #fffaf3;
}

.section,
.page-main {
  padding: 70px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 14px;
}

.card-grid,
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.page-grid--single {
  grid-template-columns: minmax(0, 760px);
}

.card {
  padding: 28px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(251, 245, 236, 0.92));
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font: inherit;
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.field--trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-notice {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--surface-border);
}

.form-notice--success {
  background: rgba(117, 154, 84, 0.12);
  border-color: rgba(117, 154, 84, 0.24);
}

.form-notice--error {
  background: rgba(158, 72, 61, 0.1);
  border-color: rgba(158, 72, 61, 0.22);
}

.kicker {
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.page-hero {
  padding: 30px 0 18px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-top: 8px;
}

.footer {
  padding: 30px 0 44px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero__grid,
  .card-grid,
  .page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 24px), 1200px);
  }

  .site-header__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    position: static;
    transform: none;
    width: 100%;
    justify-content: center;
  }

  .product-panel {
    min-height: 560px;
  }
}
