:root {
  --green: #1e3a2f;
  --green-dark: #142b23;
  --gold: #d4a23a;
  --cream: #f3ebdc;
  --cream-light: #fffaf0;
  --brown: #3b2a1a;
  --olive: #718253;
  --muted: #725f46;
  --line: rgba(30, 58, 47, .18);
  --shadow: 0 24px 80px rgba(31, 42, 32, .14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--green-dark);
  background:
    radial-gradient(circle at 15% 0%, rgba(212, 162, 58, .12), transparent 32rem),
    linear-gradient(180deg, var(--cream-light), var(--cream));
  font-family: var(--sans);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(30, 58, 47, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 47, .025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .45), transparent 75%);
  z-index: -1;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 82px;
  padding: .9rem clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid rgba(30, 58, 47, .12);
  background: rgba(255, 250, 240, .88);
  backdrop-filter: blur(18px);
}

.site-header.compact {
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  color: var(--gold);
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: .78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.site-nav a {
  padding: .65rem .85rem;
  border-radius: 999px;
  color: var(--green);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(30, 58, 47, .08);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream-light);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 82px));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(5rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem);
  color: var(--cream-light);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--cream);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 43, 35, .94), rgba(20, 43, 35, .66) 48%, rgba(20, 43, 35, .14)),
    linear-gradient(0deg, rgba(20, 43, 35, .52), transparent 56%);
}

.hero-art svg {
  width: 100%;
  height: 100%;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1,
h1,
h2,
h3 {
  margin: 0;
  color: var(--green);
  font-family: var(--serif);
  line-height: 1.05;
}

.hero h1 {
  color: var(--cream-light);
  max-width: 12ch;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  text-transform: uppercase;
}

.hero p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 250, 240, .9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: var(--green-dark);
}

.button.secondary {
  border-color: rgba(255, 250, 240, .42);
  color: var(--cream-light);
}

section {
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.band {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .78), rgba(243, 235, 220, .96)),
    var(--cream);
  border-block: 1px solid rgba(30, 58, 47, .1);
}

.section-grid,
.section-heading,
.product-layout,
.wax-grid,
.apiary,
.contact,
.legal {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

h1 {
  font-size: clamp(2.7rem, 8vw, 5.6rem);
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.section-grid p,
.section-heading p,
.apiary-copy p,
.contact p,
.wax-copy p,
.legal p,
.legal li {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.section-heading p {
  margin: 1rem 0 0;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 1.5rem;
}

.product-card,
.promise-list article,
.contact-panel {
  background: rgba(255, 250, 240, .72);
  border: 1px solid rgba(30, 58, 47, .14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-card.featured {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.2rem, 4vw, 3rem);
}

.honey-art {
  width: min(100%, 460px);
  margin-inline: auto;
}

.honey-art svg {
  filter: drop-shadow(0 22px 38px rgba(59, 42, 26, .18));
}

.honey-scroll-svg .honey-fill {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transform: scaleY(var(--honey-fill, 0));
  transition: transform .08s linear;
}

.honey-scroll-svg .honey-stream {
  opacity: var(--honey-stream-opacity, 0);
  transform: translateY(var(--honey-stream-y, -36px));
  transition: opacity .08s linear, transform .08s linear;
}

.honey-scroll-svg .honey-ribbon {
  stroke-dasharray: 11 8;
  stroke-dashoffset: calc(var(--honey-fill, 0) * -34);
}

.honey-scroll-svg .honey-drop {
  opacity: var(--honey-stream-opacity, 0);
  transform-box: fill-box;
  transform-origin: center;
}

.honey-scroll-svg .drop-one {
  transform: translateY(calc(var(--honey-fill, 0) * 26px)) scale(.95);
}

.honey-scroll-svg .drop-two {
  transform: translateY(calc(var(--honey-fill, 0) * 18px)) scale(.8);
}

.honey-scroll-svg .jar-lid-animated {
  opacity: var(--lid-opacity, 0);
  transform: translateY(var(--lid-y, -92px));
  transition: opacity .08s linear, transform .08s linear;
}

.svg-kicker,
.svg-small {
  fill: var(--green-dark);
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.svg-kicker {
  font-size: 20px;
}

.svg-small {
  font-size: 14px;
  letter-spacing: .08em;
}

.svg-title {
  fill: var(--green);
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: .05em;
}

.svg-script {
  fill: var(--gold);
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
}

.product-card p {
  color: var(--muted);
}

.facts {
  display: grid;
  gap: .7rem;
  margin: 1.5rem 0 0;
}

.facts div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: .8rem;
  padding-top: .7rem;
  border-top: 1px solid var(--line);
}

.facts dt {
  color: var(--green);
  font-weight: 800;
}

.facts dd {
  margin: 0;
  color: var(--muted);
}

.promise-list {
  display: grid;
  gap: 1rem;
}

.promise-list article {
  padding: 1.35rem;
  box-shadow: none;
}

.promise-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.wax-grid {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.wax-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 1rem;
  min-height: 340px;
}

.wax-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: calc(92px + 128px * var(--wax-puddle, 0));
  height: calc(12px + 18px * var(--wax-puddle, 0));
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 46%, rgba(255, 232, 154, .82), transparent 34%),
    radial-gradient(circle at 62% 54%, rgba(212, 162, 58, .48), transparent 38%),
    rgba(212, 162, 58, .22);
  opacity: calc(.68 * var(--wax-puddle, 0));
  transform: translateX(-50%);
  transition: width .08s linear, height .08s linear, opacity .08s linear;
}

.wax-visual span {
  position: relative;
  width: 82px;
  height: 260px;
  border-radius: 38px 38px 10px 10px;
  background:
    radial-gradient(ellipse at 32% 28%, rgba(255, 244, 195, .78), transparent 32%),
    radial-gradient(ellipse at 58% 8%, rgba(255, 239, 171, .62), transparent 28%),
    linear-gradient(90deg, rgba(97, 61, 15, .22), transparent 18%, rgba(255, 248, 216, .58) 44%, transparent 67%, rgba(82, 51, 13, .26)),
    repeating-linear-gradient(0deg, rgba(119, 76, 19, .1) 0 1px, transparent 1px 24px),
    linear-gradient(180deg, #f5d074 0%, #e6b852 48%, #ca8f2e 100%);
  background-blend-mode: normal;
  box-shadow:
    inset -18px 0 26px rgba(59, 42, 26, .18),
    inset 15px 0 24px rgba(255, 248, 215, .25),
    inset 0 -12px 18px rgba(108, 69, 18, .16),
    0 18px 24px rgba(59, 42, 26, .1);
  isolation: isolate;
  transition: height .08s linear;
}

.wax-visual span:nth-child(2) {
  height: 315px;
}

.wax-visual span:nth-child(3) {
  height: 220px;
}

.wax-visual span b {
  position: absolute;
  left: 50%;
  top: -2px;
  z-index: 2;
  width: 100%;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255, 238, 164, .98) 0 42%, transparent 43%),
    radial-gradient(ellipse at 50% 50%, rgba(177, 115, 30, .3) 0 60%, transparent 61%),
    linear-gradient(180deg, #f8d982, #d9a33c);
  box-shadow:
    inset 0 5px 8px rgba(255, 250, 224, .58),
    inset 0 -6px 9px rgba(112, 72, 18, .18),
    0 2px 0 rgba(119, 76, 19, .14);
  transform: translateX(-50%);
}

.wax-visual span i {
  position: absolute;
  left: 50%;
  top: -24px;
  z-index: 3;
  width: 4px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, #564029, #1e3a2f 62%, #3b2a1a);
  transform: translateX(-50%) rotate(-5deg);
  box-shadow: 0 1px 0 rgba(255, 250, 240, .36);
}

.wax-visual span::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 50%;
  z-index: 4;
  width: 28px;
  height: 42px;
  border-radius: 54% 46% 58% 42%;
  background:
    radial-gradient(circle at 50% 72%, rgba(255, 250, 220, .95) 0 18%, transparent 19%),
    linear-gradient(180deg, #fff1a5, #f2b642 58%, #d6861d 100%);
  box-shadow:
    0 0 calc(22px * var(--glow, 1)) rgba(212, 162, 58, .38),
    0 0 calc(42px * var(--glow, 1)) rgba(246, 180, 54, .2);
  opacity: var(--flame-opacity, 0);
  transform: translateX(-50%) scale(var(--flame-scale, 1));
  transform-origin: 50% 82%;
  transition: opacity .08s linear, transform .08s linear, box-shadow .08s linear;
}

.wax-visual span::after {
  content: "";
  position: absolute;
  inset: 4px 10px auto;
  z-index: 2;
  height: calc(100% - 10px);
  border-radius: 28px 28px 8px 8px;
  background:
    radial-gradient(ellipse at 11px var(--drip-length, 16px), rgba(255, 239, 181, .96) 0 7px, transparent 8px),
    linear-gradient(180deg, rgba(255, 239, 181, .94), rgba(226, 171, 64, .7)) 5px 11px / 12px var(--drip-length, 16px) no-repeat,
    radial-gradient(ellipse at 52px calc(var(--drip-length, 16px) * .7), rgba(255, 239, 181, .88) 0 5px, transparent 6px),
    linear-gradient(180deg, rgba(247, 209, 118, .84), rgba(218, 158, 51, .54)) 47px 12px / 9px calc(var(--drip-length, 16px) * .72) no-repeat;
  opacity: var(--drip-opacity, 0);
  transition: opacity .08s linear, background-size .08s linear;
}

.check-list {
  display: grid;
  gap: .8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--green-dark);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38rem;
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(212, 162, 58, .16);
}

.apiary {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.apiary-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.apiary-copy p {
  margin-top: 1rem;
}

.landscape-card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(30, 58, 47, .12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.brand-board {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: stretch;
  border: 1px solid rgba(30, 58, 47, .12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--cream-light);
}

.brand-landscape {
  min-height: 360px;
  overflow: hidden;
  background: var(--cream-light);
}

.brand-landscape svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, rgba(30, 58, 47, .94), rgba(20, 43, 35, .98)),
    var(--green);
  color: var(--cream-light);
}

.brand-copy h3 {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.brand-copy p:not(.eyebrow) {
  color: rgba(255, 250, 240, .82);
}

.swatches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 1.5rem;
}

.swatches span {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255, 250, 240, .86);
  font-size: .9rem;
  font-weight: 800;
}

.swatches span::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid rgba(255, 250, 240, .42);
  border-radius: 50%;
  background: var(--swatch);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-panel {
  padding: 1.5rem;
  background: var(--green);
  color: var(--cream-light);
}

.contact-panel h3 {
  color: var(--gold);
  font-size: 1.6rem;
}

.contact-panel p {
  color: rgba(255, 250, 240, .86);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  background: var(--green-dark);
  color: var(--cream-light);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: rgba(255, 250, 240, .64);
  font-size: .92rem;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-footer a {
  color: var(--cream-light);
  font-weight: 700;
  text-decoration-color: rgba(212, 162, 58, .7);
  text-underline-offset: .25em;
}

.legal {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.legal h1 {
  color: var(--green);
  margin-bottom: 2rem;
}

.legal h2 {
  margin-top: 2rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal p {
  max-width: 760px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--cream-light);
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    border-radius: 6px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-art::after {
    background:
      linear-gradient(90deg, rgba(20, 43, 35, .92), rgba(20, 43, 35, .66)),
      linear-gradient(0deg, rgba(20, 43, 35, .48), transparent 52%);
  }

  .section-grid,
  .product-layout,
  .product-card.featured,
  .wax-grid,
  .brand-board,
  .contact {
    grid-template-columns: 1fr;
  }

  .apiary {
    grid-template-columns: 1fr;
  }

  .section-heading {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 74px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    top: 74px;
  }

  .brand-mark {
    width: 2.55rem;
    height: 2.55rem;
  }

  .hero {
    min-height: 620px;
    padding-inline: 1rem;
    padding-top: 4rem;
  }

  .hero-content {
    max-width: calc(100vw - 2rem);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 9.8vw, 2.42rem);
    overflow-wrap: normal;
  }

  .hero .eyebrow {
    font-size: .66rem;
    letter-spacing: .12em;
  }

  .button {
    width: 100%;
  }

  .facts div {
    grid-template-columns: 1fr;
    gap: .2rem;
  }

  .honey-art {
    max-width: 340px;
  }

  .brand-landscape {
    min-height: 250px;
  }

  .swatches {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
