@font-face {
  font-family: "Special Elite";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/special-elite/special-elite-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Special Elite";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/special-elite/special-elite-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Biloxi Script";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/biloxi-script/biloxi-script.ttf") format("truetype");
}

:root {
  --bg: #f7f2e8;
  --text: #3a3026;
  --muted: #5b4f42;
  --line: rgba(58, 48, 38, 0.14);
  --lavender-soft: rgba(185, 172, 241, 0.18);
  --lavender-glass: rgba(185, 172, 241, 0.1);
  --notice-violet: #9e8ef0;
  --notice-violet-dark: #6855bf;
  --panel-border: rgba(158, 142, 240, 0.2);
  --panel-border-strong: rgba(158, 142, 240, 0.32);
  --panel-accent: rgba(104, 85, 191, 0.46);
  --panel-accent-strong: rgba(104, 85, 191, 0.34);
  --panel-accent-shadow: rgba(74, 58, 145, 0.12);
  --panel-accent-ring: rgba(104, 85, 191, 0.04);
  --radius: 24px;
  --max: 1120px;
  --control-height: 2.85rem;
  --control-pad-x: 1.15rem;
  --radius-pill: 999px;
  --radius-card: 30px;
  --dur-1: 180ms;
  --dur-2: 250ms;
  --dur-3: 350ms;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --glass-blur: 10px;
  --glass-sat: 120%;
  --glass-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.18));
  --glass-surface-hover: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.2));
  --glass-tint: radial-gradient(circle at 0% 0%, var(--lavender-glass), transparent 70%);
  --shadow-control: 0 6px 14px rgba(45, 38, 29, 0.08);
  --shadow-control-hover: 0 7px 16px rgba(45, 38, 29, 0.1);
  --shadow-button: 0 10px 22px rgba(45, 38, 29, 0.14);
  --shadow-button-hover: 0 12px 26px rgba(45, 38, 29, 0.16);
  --space-0: 0.35rem;
  --space-1: 0.55rem;
  --space-2: 0.8rem;
  --space-3: 1rem;
  --space-4: 1.75rem;
  --space-5: 2rem;
  --space-6: 3.5rem;
  --space-7: 4.75rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.js {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #f9f5ed 0%, var(--bg) 100%);
  line-height: 1.9;
  letter-spacing: 0.01em;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(184, 135, 47, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, var(--lavender-soft), transparent 58%);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bee-plate {
  position: fixed;
  top: calc(50% + 2.5rem);
  right: -12rem;
  transform: translateY(-50%);
  width: min(82vw, 880px);
  opacity: 0.11;
  pointer-events: none;
  z-index: 1;
  filter: grayscale(100%) sepia(12%) contrast(90%) brightness(100%);
  mix-blend-mode: multiply;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.14)),
    linear-gradient(180deg, rgba(184, 135, 47, 0.05), rgba(184, 135, 47, 0)),
    rgba(249, 245, 237, 0.7);
  border-bottom: 1px solid rgba(58, 48, 38, 0.08);
  box-shadow: 0 10px 26px rgba(45, 38, 29, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: var(--space-0);
}

.lang-button {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  text-align: center;
  font-family: "Special Elite", monospace;
  font-size: 0.85rem;
  line-height: 2.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  height: 2.25rem;
  min-width: 2.55rem;
  padding: 0 0.72rem;
  color: var(--muted);
  background: var(--glass-surface), var(--glass-tint);
  backdrop-filter: blur(8px);
  cursor: pointer;
  box-shadow: var(--shadow-control),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06);
  transition:
    transform var(--dur-1) var(--ease),
    border-color var(--dur-1) var(--ease),
    background var(--dur-1) var(--ease),
    box-shadow var(--dur-1) var(--ease),
    color var(--dur-1) var(--ease);
}

.lang-button:hover {
  color: var(--text);
  transform: translateY(-0.6px);
  border-color: rgba(184, 135, 47, 0.32);
  background: var(--glass-surface-hover), var(--glass-tint);
  box-shadow: var(--shadow-control-hover),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.07);
}

.topbar .lang-button:hover {
  border-color: var(--panel-accent-strong);
  box-shadow:
    var(--shadow-control-hover),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.07),
    0 0 0 1px var(--panel-accent-ring);
}

.lang-button.is-active {
  color: var(--text);
  border-color: rgba(184, 135, 47, 0.35);
  box-shadow:
    0 7px 16px rgba(184, 135, 47, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}

.topbar .lang-button.is-active {
  color: var(--notice-violet-dark);
  border-color: var(--panel-accent-strong);
  box-shadow:
    0 7px 16px var(--panel-accent-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}

.product-kicker,
h1,
h2 {
  font-family: "Special Elite", monospace;
}

.brand {
  display: inline-block;
  font-family: "Biloxi Script", "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2.35rem, 3.6vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--muted);
  white-space: nowrap;
  padding: 0.36em 0 0.04em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.nav a {
  position: relative;
  padding: 0 0.4rem;
  font-size: 1rem;
  color: var(--muted);
}

.nav a::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  bottom: -0.35rem;
  height: 2px;
  border-radius: var(--radius-pill);
  background: rgba(184, 135, 47, 0.52);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-1) var(--ease);
}

.nav a:hover::before,
.nav a:focus-visible::before {
  transform: scaleX(1);
}

.nav a:not(:last-child)::after {
  content: "\00b7";
  position: absolute;
  right: -0.6rem;
  color: var(--muted);
  opacity: 0.6;
}

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

.button {
  --button-border: rgba(255, 250, 242, 0.24);
  --button-border-hover: rgba(255, 250, 242, 0.3);
  --button-text: #fffaf2;
  --button-bg: linear-gradient(135deg, rgba(184, 135, 47, 0.92), rgba(141, 102, 32, 0.84));
  --button-shadow-base: var(--shadow-button);
  --button-shadow-hover: var(--shadow-button-hover);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  min-height: var(--control-height);
  padding: 0 var(--control-pad-x);
  border-radius: var(--radius-pill);
  border: 1px solid var(--button-border);
  background: var(--button-bg);
  color: var(--button-text);
  font-size: 1rem;
  line-height: 1.1;
  transition:
    transform var(--dur-1) var(--ease),
    background var(--dur-1) var(--ease),
    border-color var(--dur-1) var(--ease),
    box-shadow var(--dur-1) var(--ease),
    filter var(--dur-1) var(--ease);
  box-shadow:
    var(--button-shadow-base),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 60%);
  opacity: 0.84;
  pointer-events: none;
}

.button:hover::before {
  opacity: 0.9;
}

.button > * {
  position: relative;
  z-index: 1;
}

.button svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: currentColor;
  opacity: 0.9;
}

.button:hover {
  transform: translateY(-0.6px);
  border-color: var(--button-border-hover);
  filter: brightness(1.02) saturate(1.05);
  box-shadow:
    var(--button-shadow-hover),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.09);
}

.button.secondary {
  --button-border: rgba(184, 135, 47, 0.24);
  --button-border-hover: rgba(184, 135, 47, 0.36);
  --button-text: var(--text);
  --button-bg:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.14)),
    linear-gradient(135deg, rgba(184, 135, 47, 0.12), rgba(184, 135, 47, 0.05));
  box-shadow:
    var(--button-shadow-base),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, rgba(184, 135, 47, 0.14), rgba(184, 135, 47, 0.07));
  filter: brightness(1.01) saturate(1.05);
  box-shadow:
    var(--button-shadow-hover),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.contact-card .button {
  --button-border: rgba(255, 250, 242, 0.22);
  --button-border-hover: rgba(255, 250, 242, 0.28);
  --button-text: #fffaf8;
  --button-bg: linear-gradient(135deg, rgba(158, 142, 240, 0.92), rgba(104, 85, 191, 0.84));
  --button-shadow-base: 0 10px 22px rgba(74, 58, 145, 0.16);
  --button-shadow-hover: 0 12px 26px rgba(74, 58, 145, 0.18);
}

.hero {
  position: relative;
  z-index: 2;
  padding: 8.5rem 0 6.5rem;
}

.hero-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.hero-copy {
  max-width: 48rem;
  padding: 2.5rem 0;
}

h1,
h2 {
  margin: 0;
  line-height: 1.1;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.01em;
  max-width: 100%;
  word-break: break-word;
}

p {
  margin: 0;
}

p + p {
  margin-top: var(--space-3);
}

.lead {
  max-width: 42rem;
  margin-top: var(--space-5);
  font-size: 1.25rem;
  color: var(--muted);
}

.site-notice {
  position: relative;
  z-index: 10;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.3);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(184, 135, 47, 0.72), rgba(141, 102, 32, 0.58)),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(214, 178, 102, 0.16), transparent 42%);
  box-shadow:
    var(--shadow-button),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(96, 68, 18, 0.14);
  backdrop-filter: blur(15px) saturate(132%);
  -webkit-backdrop-filter: blur(15px) saturate(132%);
  color: #fffaf2;
  font-size: clamp(0.92rem, 1.35vw, 1.05rem);
  line-height: 1.25;
  padding: 1.2rem var(--space-5);
}

.site-notice-copy {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.62;
  text-align: center;
  text-wrap: pretty;
}

.site-notice::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 58%);
  opacity: 0.94;
  pointer-events: none;
}

@media (max-width: 640px) {
  .site-notice {
    padding: 1rem;
  }

  .site-notice-copy {
    max-width: none;
    line-height: 1.58;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: 2.5rem;
}

.rule-wrap {
  position: relative;
  z-index: 2;
  padding: var(--space-4) 0;
}

.rule {
  width: 100%;
  max-width: 110px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(to right, transparent, rgba(184, 135, 47, 0.36), transparent);
}

section {
  position: relative;
  z-index: 2;
  padding: var(--space-6) 0 var(--space-7);
}

.honige-stack {
  display: grid;
  gap: var(--space-5);
}

.intro {
  max-width: 44rem;
  text-align: center;
}

.intro p {
  font-size: 1.16rem;
}

.intro .intro-lead {
  font-family: "Special Elite", monospace;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.intro p + p {
  margin-top: 1.1rem;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.product {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--panel-border);
  cursor: pointer;
  box-shadow:
    0 18px 50px rgba(45, 38, 29, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(10px) saturate(108%);
  transition:
    transform var(--dur-2) var(--ease),
    box-shadow var(--dur-2) var(--ease),
    border-color var(--dur-2) var(--ease),
    background var(--dur-2) var(--ease);
}

.product-hit {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  text-decoration: none;
}

.product-hit:focus-visible {
  outline: 2px solid var(--panel-accent);
  outline-offset: 3px;
}

.product-media {
  position: relative;
  z-index: 2;
  min-height: 0;
  aspect-ratio: 4 / 3;
  background-image: url("../images/spring-and-summer-honey.png");
  background-image: image-set(
    url("../images/spring-and-summer-honey.webp") type("image/webp"),
    url("../images/spring-and-summer-honey.png") type("image/png")
  );
  background-repeat: no-repeat;
  background-size: 200% auto;
  opacity: 0.72;
  transition:
    background-size var(--dur-3) var(--ease),
    filter var(--dur-3) var(--ease),
    opacity var(--dur-3) var(--ease);
}

.product-media-spring {
  background-position: left center;
}

.product-media-summer {
  background-position: right center;
}

.product:hover,
.product:focus-within {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--panel-border-strong);
  box-shadow:
    0 24px 60px rgba(45, 38, 29, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.product:hover .product-media,
.product:focus-within .product-media {
  background-size: 212% auto;
  filter: saturate(1.04) contrast(1.02);
  opacity: 1;
}

.product-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  flex: 1 1 auto;
  padding: 2.4rem 2.4rem 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08)), var(--glass-tint);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.product:hover .product-body,
.product:focus-within .product-body {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.14)), var(--glass-tint);
}

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

.product h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.product p {
  max-width: 30rem;
  font-size: 1.12rem;
  color: var(--muted);
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0.6rem;
  display: grid;
  gap: var(--space-1);
}

.product-list li::before {
  content: "\2022";
  color: var(--notice-violet);
  margin-right: 0.6rem;
}

.contact {
  padding-top: 3.75rem;
  padding-bottom: 6rem;
}

.contact-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: var(--radius-card);
  padding: 2.8rem 2.4rem 2.9rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08)), var(--glass-tint);
  border: 1px solid var(--panel-border);
  box-shadow:
    0 18px 50px rgba(45, 38, 29, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(108%);
  -webkit-backdrop-filter: blur(10px) saturate(108%);
}

.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.1rem;
}

.contact-card p {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--muted);
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: 1.8rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  min-height: var(--control-height);
  padding: 0 var(--control-pad-x);
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--glass-surface), var(--glass-tint);
  color: var(--text);
  backdrop-filter: blur(var(--glass-blur)) saturate(110%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(110%);
  box-shadow:
    var(--shadow-control),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06);
  transition:
    transform var(--dur-1) var(--ease),
    border-color var(--dur-1) var(--ease),
    background var(--dur-1) var(--ease),
    box-shadow var(--dur-1) var(--ease);
}

.contact-chip span {
  line-height: 1.1;
}

.contact-chip svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: currentColor;
  opacity: 0.82;
}

.contact-chip:hover,
.contact-chip:focus-visible {
  transform: translateY(-0.6px);
  border-color: var(--panel-accent-strong);
  background: var(--glass-surface-hover), var(--glass-tint);
  box-shadow:
    var(--shadow-control-hover),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.07),
    0 0 0 1px var(--panel-accent-ring);
}

footer {
  position: relative;
  z-index: 2;
  padding: 0 0 6rem;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

footer p {
  margin: 0;
}

footer p:first-child {
  font-weight: 700;
}

footer p + p {
  margin-top: 0.6rem;
}

.footer-flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  margin: 0 5px;
  vertical-align: -1px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, transparent 0 29%, #f4d45e 29% 41%, transparent 41% 100%),
    linear-gradient(180deg, transparent 0 39%, #f4d45e 39% 61%, transparent 61% 100%),
    #346b9a;
  box-shadow: 0 0 0 1px rgba(255, 244, 239, 0.26);
}

@media (max-width: 1100px) {
  .bee-plate {
    top: calc(50% + 2.75rem);
    right: -10rem;
    width: 110vw;
    opacity: 0.085;
  }
}

@media (max-width: 960px) {
  .products {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5.5rem;
    padding-bottom: 4.5rem;
  }

  .bee-plate {
    position: fixed !important;
    width: 220vw !important;
    height: auto !important;
    max-width: none !important;
    right: -104vw !important;
    left: auto !important;
    top: calc(50% + 3.25rem) !important;
    transform: translateY(-50%) !important;
    opacity: 0.07 !important;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-0);
    padding: var(--space-2) 0;
  }

  .lang-switch {
    margin-top: 0.25rem;
  }

  .brand {
    font-size: clamp(2rem, 9vw, 2.5rem);
    text-align: center;
    padding: 0.32em 0 0.05em;
  }

  .nav {
    gap: var(--space-1);
    justify-content: center;
  }

  .nav a {
    font-size: 0.95rem;
    padding: 0 0.28rem;
  }

  .nav a:not(:last-child)::after {
    right: -0.38rem;
    opacity: 0.38;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero {
    padding-top: 4.5rem;
    padding-bottom: 3.75rem;
  }

  section {
    padding: 2.75rem 0 3.5rem;
  }

  .rule-wrap {
    padding: 1.25rem 0;
  }

  .product-body,
  .contact-card {
    padding: 1.6rem;
  }

  .contact-meta {
    gap: 0.75rem;
  }

  .bee-plate {
    position: fixed !important;
    width: 220vw !important;
    height: auto !important;
    max-width: none !important;
    right: -104vw !important;
    left: auto !important;
    top: calc(50% + 4rem) !important;
    transform: translateY(-50%) !important;
    opacity: 0.07 !important;
  }
}
