:root {
  --ink: #17201c;
  --muted: #65716c;
  --line: #d8ded8;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --green: #1f7a4d;
  --green-dark: #0c4b31;
  --gold: #d98a16;
  --clay: #a44f38;
  --sky: #d9ecf4;
  --shadow: 0 24px 70px rgba(23, 32, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Tahoma, Arial, sans-serif;
  letter-spacing: 0;
}

html[dir="rtl"] main,
html[dir="rtl"] .site-footer {
  direction: rtl;
}

html[dir="rtl"] .site-header {
  direction: ltr;
}

html[dir="rtl"] .hero {
  justify-items: end;
}

html[dir="rtl"] .hero-overlay {
  background: linear-gradient(
    270deg,
    rgba(9, 31, 23, 0.96) 0%,
    rgba(9, 31, 23, 0.82) 34%,
    rgba(9, 31, 23, 0.34) 60%,
    rgba(9, 31, 23, 0.06) 78%,
    transparent 100%
  );
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .intro-band,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .product-tile,
html[dir="rtl"] .product-detail-copy,
html[dir="rtl"] .about-copy,
html[dir="rtl"] .statement-panel,
html[dir="rtl"] .statement-card,
html[dir="rtl"] .values-panel,
html[dir="rtl"] .contact-copy,
html[dir="rtl"] .contact-form,
html[dir="rtl"] .site-footer {
  text-align: right;
}

html[dir="rtl"] .variety-card,
html[dir="rtl"] .values-panel div {
  grid-template-columns: 1fr 18px;
}

html[dir="rtl"] .variety-swatch,
html[dir="rtl"] .values-panel span {
  grid-column: 2;
}

html[dir="rtl"] .product-interest-button {
  text-align: right;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 10px;
  left: clamp(12px, 3vw, 38px);
  right: clamp(12px, 3vw, 38px);
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(16px, 2.8vw, 42px);
  min-height: 78px;
  padding: 8px 18px;
  background: rgba(246, 242, 233, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(30, 27, 22, 0.12);
  backdrop-filter: blur(18px);
  transition:
    min-height 220ms ease,
    padding 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.site-header.is-compact {
  min-height: 62px;
  padding: 5px 14px;
  background: rgba(246, 242, 233, 0.96);
  box-shadow: 0 14px 34px rgba(30, 27, 22, 0.11);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.35vw, 18px);
  width: min(100%, clamp(314px, 36vw, 475px));
  max-width: 100%;
  min-height: clamp(55px, 5.1vw, 68px);
  min-width: 0;
  overflow: hidden;
  transition:
    width 220ms ease,
    min-height 220ms ease,
    gap 220ms ease;
}

.site-header.is-compact .logo-group {
  width: min(100%, clamp(285px, 31.5vw, 409px));
  min-height: clamp(46px, 4vw, 57px);
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  height: auto;
  line-height: 0;
  min-width: 0;
  overflow: hidden;
  transition: max-width 220ms ease;
}

.logo-link img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-parent {
  flex-basis: 52%;
  max-width: 261px;
}

.site-header.is-compact .logo-parent {
  max-width: 223px;
}

.logo-primary {
  flex-basis: 48%;
  max-width: 238px;
}

.site-header.is-compact .logo-primary {
  max-width: 209px;
}

.logo-divider {
  flex: 0 0 1px;
  width: 1px;
  height: clamp(49px, 4.55vw, 63px);
  background: #cac2b4;
  transition: height 220ms ease;
}

.site-header.is-compact .logo-divider {
  height: clamp(40px, 3.6vw, 51px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3.2vw, 46px);
  color: #6b7374;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.45vw, 1.25rem);
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--gold);
}

.main-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px var(--gold);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switcher button {
  min-width: 42px;
  height: 38px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #7d8384;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.05rem;
}

.language-switcher button + button {
  border-left: 1px solid #c8c1b5;
}

.language-switcher .is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
}

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

.hero {
  position: relative;
  display: grid;
  align-items: end;
  align-content: end;
  row-gap: 0;
  min-height: 100vh;
  padding: 112px clamp(18px, 4vw, 56px) clamp(36px, 5vh, 56px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/prairie-trade-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 31, 23, 0.96) 0%,
    rgba(9, 31, 23, 0.82) 34%,
    rgba(9, 31, 23, 0.34) 60%,
    rgba(9, 31, 23, 0.06) 78%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  max-width: 735px;
  color: white;
  padding-bottom: 0;
  transform: translateY(-52px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.75rem, 4.25vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  line-height: 1.44;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #1b1206;
  box-shadow: 0 15px 28px rgba(217, 138, 22, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
}

.intro-band,
.section,
.site-footer {
  padding-inline: clamp(22px, 6vw, 86px);
}

.intro-band {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(22px, 5vw, 78px);
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.intro-band h2,
.section-heading h2,
.about h2,
.traceability h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.intro-band p:last-child,
.contact-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.section {
  padding-top: clamp(68px, 9vw, 118px);
  padding-bottom: clamp(68px, 9vw, 118px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-lede {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.product-browser {
  display: grid;
  gap: 24px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.product-tile {
  display: grid;
  grid-column: span 2;
  grid-template-rows: auto 1fr;
  width: 100%;
  min-height: 310px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(23, 32, 28, 0.08);
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-tile:hover,
.product-tile:focus-visible {
  border-color: rgba(31, 122, 77, 0.55);
  box-shadow: 0 22px 52px rgba(23, 32, 28, 0.14);
  transform: translateY(-2px);
  outline: none;
}

.product-tile.is-active {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.14), 0 22px 52px rgba(23, 32, 28, 0.14);
}

.product-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-tile-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-tile h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.05;
}

.product-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  scroll-margin-top: 120px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}

.product-detail-media {
  min-height: 430px;
}

.product-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(24px, 4vw, 44px);
}

.detail-kicker {
  margin: 0;
  color: #ffbf58;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.product-detail-description {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
}

.variety-title {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 800;
}

.variety-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.variety-card {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  min-height: 112px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.variety-swatch {
  width: 15px;
  height: 15px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--swatch, var(--gold));
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.variety-card h4 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.variety-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

.honey-accordion {
  display: grid;
  gap: 14px;
}

.honey-accordion-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.honey-accordion-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 14px;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  text-align: left;
}

.honey-accordion-trigger:focus-visible {
  outline: 2px solid #ffbf58;
  outline-offset: -3px;
}

.honey-accordion-photo {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.08);
}

.honey-accordion-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.honey-accordion-heading {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.honey-accordion-title {
  color: white;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-weight: 800;
  line-height: 1.1;
}

.honey-accordion-description {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.55;
}

.honey-accordion-icon {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.honey-accordion-icon::before,
.honey-accordion-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  background: #ffbf58;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.honey-accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.honey-accordion-trigger[aria-expanded="true"] .honey-accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.honey-accordion-content {
  padding: 0 14px 14px;
}

.honey-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.honey-compact-group {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(10, 26, 21, 0.28);
}

.honey-compact-group h4 {
  margin: 0 0 9px;
  color: white;
  font-size: 0.94rem;
  line-height: 1.35;
}

.honey-compact-group ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.honey-compact-group li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.4;
}

.honey-compact-group li::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.honey-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.honey-option-card {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  min-height: 74px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(10, 26, 21, 0.28);
}

.honey-option-swatch {
  width: 15px;
  height: 15px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--swatch, var(--gold));
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.honey-option-card h4 {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.35;
}

.honey-option-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.5;
}

.honey-availability-note {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.honey-certifications {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.honey-certifications-copy {
  display: grid;
  gap: 8px;
}

.honey-certifications-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.honey-certifications-copy .variety-title {
  color: rgba(255, 255, 255, 0.92);
}

.honey-certification-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.honey-certification-card {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-height: 128px;
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(10, 26, 21, 0.28);
  color: white;
  text-align: center;
  direction: ltr;
}

.honey-certification-card[hidden] {
  display: none;
}

.honey-certification-image {
  display: block;
  width: min(100%, 168px);
  height: 96px;
  object-fit: contain;
  object-position: center;
}

.honey-certification-name {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.about-page {
  padding-top: 102px;
  background: #f8faf6;
}

.about-page .about {
  padding-top: clamp(44px, 6vw, 76px);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  background: #f8faf6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-copy {
  max-width: 790px;
}

.about-copy > p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.about-copy h2 + p {
  margin-top: 24px;
}

.traceability {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.traceability-copy {
  max-width: 960px;
}

.traceability-copy > p:not(.section-kicker) {
  max-width: 880px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.traceability-copy > [data-i18n="traceabilityOrigins"] {
  color: var(--green-dark);
  font-weight: 700;
}

.traceability-trust-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 20px;
  margin-top: 34px;
}

.traceability-sourcing,
.about-honey-certifications {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.traceability-sourcing > p:last-child,
.about-honey-certifications-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-honey-certifications {
  display: grid;
  gap: 20px;
}

.about-honey-certifications-copy h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.15;
}

.about-honey-certifications .honey-certification-card {
  border-color: var(--line);
  background: var(--cream);
  color: var(--green-dark);
}

.about-honey-certifications .honey-certification-name {
  color: var(--green-dark);
}

.traceability-copy > .honey-photo-credit {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.5;
}

.honey-photo-credit a {
  color: var(--green-dark);
}

.statement-panel {
  display: grid;
  gap: 14px;
}

.statement-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 40px rgba(23, 32, 28, 0.06);
}

.statement-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.statement-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.15;
}

.statement-card p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.values-panel {
  display: grid;
  gap: 14px;
}

.values-panel div {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 15px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.values-panel span {
  width: 13px;
  height: 13px;
  margin-top: 6px;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.values-panel div:nth-child(2) span {
  background: var(--gold);
}

.values-panel div:nth-child(3) span {
  background: var(--clay);
}

.values-panel p {
  margin: 0;
  color: #39443f;
  font-weight: 700;
  line-height: 1.55;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-copy p:last-child {
  margin-top: 22px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 3.5vw, 36px);
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.contact-form label,
.contact-form fieldset,
.contact-form .full {
  grid-column: span 1;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form span,
.contact-form legend {
  display: block;
  margin-bottom: 7px;
  color: #4e5a55;
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd6d0;
  border-radius: 8px;
  background: #fbfaf6;
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a928d;
  font-weight: 400;
  opacity: 1;
}

.contact-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: auto;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--green);
  cursor: pointer;
}

.product-interest-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.product-interest-dropdown {
  position: relative;
}

.product-interest-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 49px;
  padding: 13px 16px;
  border: 1px solid #cfd6d0;
  border-radius: 8px;
  background: #fbfaf6;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.product-interest-button::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.product-interest-button.is-placeholder {
  color: #8a928d;
}

.product-interest-button [data-product-interest-label] {
  margin: 0;
  color: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.product-interest-dropdown.is-open .product-interest-button,
.product-interest-button:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.12);
  outline: none;
}

.interest-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 20;
  display: none;
  max-height: min(360px, 60vh);
  overflow: auto;
  padding: 12px;
  border: 1px solid #cfd6d0;
  border-radius: 8px;
  background: #fbfaf6;
  box-shadow: var(--shadow);
}

.product-interest-dropdown.is-open .interest-options {
  display: grid;
}

.interest-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(31, 122, 77, 0.12);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

.interest-option span {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
}

.contact-form select {
  min-height: 49px;
  cursor: pointer;
}

.contact-form select.is-placeholder {
  color: #8a928d;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form select option[value=""] {
  color: #8a928d;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.12);
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  padding-bottom: 28px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffbf58;
  font-weight: 800;
}

.thank-you-page {
  min-height: 100vh;
  background: var(--cream);
}

.thank-you {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(28px, 6vw, 86px);
  text-align: center;
}

.thank-you > div {
  max-width: 640px;
}

.thank-you h1 {
  max-width: none;
  margin-bottom: 18px;
  color: var(--ink);
}

.thank-you p:not(.section-kicker) {
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
}

@media (min-width: 1021px) {
  .product-grid .product-tile:nth-child(1),
  .product-grid .product-tile:nth-child(6) {
    grid-column: 2 / span 2;
  }

  .product-grid .product-tile:nth-child(2),
  .product-grid .product-tile:nth-child(7) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 16px;
  }

  .main-nav {
    gap: 20px;
  }

  .logo-group {
    width: min(100%, 380px);
    gap: 12px;
    min-height: 53px;
  }

  .site-header.is-compact .logo-group {
    width: min(100%, 333px);
    min-height: 44px;
  }

  .logo-parent {
    max-width: 204px;
  }

  .site-header.is-compact .logo-parent {
    max-width: 179px;
  }

  .logo-primary {
    max-width: 195px;
  }

  .site-header.is-compact .logo-primary {
    max-width: 169px;
  }

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

  .product-grid .product-tile {
    grid-column: auto;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    min-height: 330px;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 16px 36px rgba(23, 32, 28, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .language-switcher button {
    min-width: 34px;
    font-size: 0.9rem;
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 16px 36px rgba(23, 32, 28, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .language-switcher {
    grid-column: auto;
  }

  .language-switcher button {
    min-width: 34px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 92vh;
    padding-top: 128px;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(9, 31, 23, 0.94) 0%,
      rgba(9, 31, 23, 0.66) 58%,
      rgba(9, 31, 23, 0.24) 100%
    );
  }

  h1 {
    max-width: 10ch;
  }

  .intro-band,
  .product-grid,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .honey-option-grid {
    grid-template-columns: 1fr;
  }

  .honey-compact-grid,
  .traceability-trust-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .about-page {
    padding-top: 126px;
  }

  .about-page .about {
    padding-top: 44px;
  }

  .site-header {
    left: 8px;
    right: 8px;
    top: 8px;
    padding: 7px 10px;
  }

  .logo-group {
    gap: 8px;
    width: 100%;
    min-height: 40px;
  }

  .site-header.is-compact .logo-group {
    min-height: 32px;
  }

  .logo-parent {
    max-width: 135px;
  }

  .site-header.is-compact .logo-parent {
    max-width: 118px;
  }

  .logo-primary {
    max-width: 125px;
  }

  .site-header.is-compact .logo-primary {
    max-width: 110px;
  }

  .logo-divider {
    height: 33px;
  }

  .language-switcher {
    order: 3;
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }

  .hero {
    min-height: auto;
    padding: 150px 18px 18px;
  }

  .hero-content {
    padding-bottom: 26px;
    transform: translateY(-20px);
  }

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

  .honey-accordion-trigger {
    grid-template-columns: minmax(0, 1fr) 30px;
  }

  .honey-accordion-photo {
    grid-column: 1 / -1;
  }

  .product-tile {
    min-height: 0;
  }

  .product-detail-media {
    min-height: 240px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label,
  .contact-form fieldset {
    grid-column: 1 / -1;
  }

  .interest-options {
    grid-template-columns: 1fr;
  }

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

/* About page redesign */
.about-page {
  overflow: hidden;
  color: var(--ink);
}

.about-page .about-page-intro {
  padding-top: clamp(54px, 7vw, 92px);
  background:
    radial-gradient(circle at 88% 8%, rgba(217, 138, 22, 0.11), transparent 27rem),
    linear-gradient(180deg, #fffdf8 0%, #f8faf6 100%);
  border-bottom: 1px solid var(--line);
}

.about-page-heading {
  max-width: 970px;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.about-page-heading h1 {
  max-width: 15ch;
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(2.65rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.company-operation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
}

.company-operation-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(12, 75, 49, 0.18);
  border-top: 4px solid var(--gold);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(23, 32, 28, 0.07);
}

.company-operation-card--crops {
  border-top-color: var(--green);
}

.company-operation-header {
  display: grid;
  gap: 12px;
}

.company-operation-label,
.purpose-card-label {
  width: fit-content;
  margin: 0;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(217, 138, 22, 0.12);
  color: #9b5c00;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-operation-card--crops .company-operation-label {
  background: rgba(31, 122, 77, 0.11);
  color: var(--green-dark);
}

.company-operation-header h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.company-operation-description {
  max-width: 540px;
  margin: 22px 0 34px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.company-story {
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.company-story summary {
  position: relative;
  padding: 18px 34px 2px 0;
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.company-story summary::-webkit-details-marker {
  display: none;
}

.company-story summary::after {
  position: absolute;
  top: 17px;
  right: 2px;
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}

.company-story[open] summary::after {
  content: "−";
}

.company-story-copy {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.company-story-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.company-experience-note {
  max-width: 900px;
  margin: clamp(26px, 4vw, 44px) 0 0;
  padding-left: 22px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.about-page .about-traceability {
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.035), transparent 52%),
    var(--green-dark);
  color: white;
}

.about-traceability-heading {
  max-width: 1000px;
}

.about-traceability-heading h2 {
  max-width: 17ch;
  margin: 0;
  color: white;
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.traceability-feature-statement {
  max-width: 980px;
  margin: clamp(26px, 4vw, 42px) 0 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 191, 88, 0.38);
  border-left: 4px solid #ffbf58;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.6;
}

.traceability-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: clamp(38px, 5vw, 60px) 0 0;
  padding: 0;
  list-style: none;
}

.traceability-steps li {
  position: relative;
  min-height: 154px;
  padding: 0 clamp(16px, 2vw, 26px);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.traceability-steps li:first-child {
  padding-left: 0;
  border-left: 0;
}

.traceability-step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 191, 88, 0.6);
  border-radius: 50%;
  color: #ffbf58;
  font-size: 0.75rem;
  font-weight: 800;
}

.traceability-steps p {
  max-width: 190px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.5;
}

.about-page .about-honey-support {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.honey-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

.honey-origin-card,
.about-certifications-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(24px, 3.5vw, 38px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(23, 32, 28, 0.055);
}

.honey-support-heading h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.06;
}

.honey-support-heading > p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.honey-origin-map {
  display: grid;
  gap: 16px;
  margin: auto 0 0;
  padding-top: 28px;
}

.honey-origin-map-frame {
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f7f3ea;
}

.honey-origin-map img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: contain;
}

.honey-origin-map figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.honey-origin-map figcaption span {
  padding: 6px 9px;
  border: 1px solid rgba(12, 75, 49, 0.14);
  border-radius: 999px;
  background: rgba(31, 122, 77, 0.08);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.about-certifications-card .honey-certification-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: auto;
  padding-top: 28px;
}

.about-certifications-card .honey-certification-card {
  min-height: 148px;
  padding: 14px 10px;
  border-color: var(--line);
  background: var(--cream);
  color: var(--green-dark);
}

.about-certifications-card .honey-certification-name {
  color: var(--green-dark);
}

.about-page .about-purpose {
  background: #f8faf6;
}

.about-purpose-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.about-purpose-heading h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.03;
}

.purpose-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

.purpose-card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.purpose-card h3 {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--green-dark);
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  line-height: 1.25;
}

.purpose-card > p:last-child {
  max-width: 590px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-values-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
}

.about-values-row > div {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 13px;
  padding: 20px 24px;
  border-left: 1px solid var(--line);
}

.about-values-row > div:first-child {
  border-left: 0;
}

.about-values-row span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.about-values-row p {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.about-page-footer {
  align-items: flex-start;
}

.about-footer-copy {
  display: grid;
  gap: 9px;
  max-width: 900px;
}

.about-page-footer .image-credits {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.55;
}

.about-page-footer .image-credits span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.about-page-footer .image-credits a {
  font-weight: 600;
}

@media (max-width: 1040px) {
  .traceability-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 0;
  }

  .traceability-steps li:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .company-operation-grid,
  .honey-support-grid,
  .purpose-card-grid {
    grid-template-columns: 1fr;
  }

  .company-operation-card {
    min-height: 310px;
  }

  .about-values-row {
    grid-template-columns: 1fr;
  }

  .about-values-row > div {
    min-height: 74px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-values-row > div:first-child {
    border-top: 0;
  }
}

@media (max-width: 620px) {
  .about-page-heading h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .company-operation-card {
    min-height: 0;
  }

  .traceability-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .traceability-steps li {
    min-height: 0;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .traceability-steps li:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .traceability-steps p {
    max-width: none;
    margin-top: 12px;
  }

  .about-certifications-card .honey-certification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page-footer {
    align-items: flex-start;
  }
}
