:root {
  --ink: #f7f0df;
  --muted: #b8b0a2;
  --paper: #151515;
  --panel: #202020;
  --panel-2: #2a2926;
  --honey: #d99a24;
  --honey-light: #ffd36a;
  --gold-soft: rgba(255, 198, 82, 0.28);
  --line: rgba(255, 211, 106, 0.24);
  --ash: #343434;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --hero-hex: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  --hero-hex-mobile: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 211, 106, 0.09), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(217, 154, 36, 0.08), transparent 32%),
    linear-gradient(135deg, #080808 0%, #111111 45%, #181613 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='96'%20height='84'%20viewBox='0%200%2096%2084'%3E%3Cg%20fill='none'%20stroke='%23ffd36a'%20stroke-opacity='.22'%20stroke-width='1'%3E%3Cpath%20d='M24%201%2047%2014%2047%2040%2024%2053%201%2040%201%2014Z'/%3E%3Cpath%20d='M72%201%2095%2014%2095%2040%2072%2053%2049%2040%2049%2014Z'/%3E%3Cpath%20d='M48%2043%2071%2056%2071%2082%2048%2095%2025%2082%2025%2056Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 96px 84px;
  background-position: center top;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.honeycomb {
  position: fixed;
  z-index: -2;
  width: 470px;
  height: 470px;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at center, rgba(255, 200, 72, 0.12), transparent 62%),
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='86'%20height='75'%20viewBox='0%200%2086%2075'%3E%3Cg%20fill='none'%20stroke='%23ffd36a'%20stroke-opacity='.86'%20stroke-width='1.35'%3E%3Cpath%20d='M21.5%201%2042%2012.8%2042%2036.4%2021.5%2048.2%201%2036.4%201%2012.8Z'/%3E%3Cpath%20d='M64.5%201%2085%2012.8%2085%2036.4%2064.5%2048.2%2044%2036.4%2044%2012.8Z'/%3E%3Cpath%20d='M43%2038%2063.5%2049.8%2063.5%2073.4%2043%2085.2%2022.5%2073.4%2022.5%2049.8Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 86px 75px;
  background-position: center;
  filter: drop-shadow(0 0 16px rgba(255, 185, 55, 0.18));
  mask-image:
    radial-gradient(circle at 58% 42%, black 0 42%, transparent 72%),
    linear-gradient(black, black);
  -webkit-mask-image:
    radial-gradient(circle at 58% 42%, black 0 42%, transparent 72%),
    linear-gradient(black, black);
  mask-composite: intersect;
}

.honeycomb-one {
  top: 88px;
  right: -128px;
}

.honeycomb-two {
  left: -158px;
  bottom: 10%;
  transform: rotate(10deg);
  opacity: 0.34;
}

.honeycomb-three {
  top: 54%;
  right: 18%;
  width: 280px;
  height: 280px;
  transform: rotate(-8deg);
  opacity: 0.2;
}

.site-header {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(12, 12, 12, 0.92) 45%, rgba(10, 10, 10, 0.72)),
    url("../images/da1cd867de40edce.png") center / cover;
}

.site-header--compact {
  min-height: auto;
  background: rgba(12, 12, 12, 0.96);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(20, 20, 20, 0.88);
  border-bottom: 1px solid rgba(255, 211, 106, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(255, 211, 106, 0.38));
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--honey-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover {
  color: var(--honey-light);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 44px 0 70px;
}

.hero-copy {
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--honey-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: #fff8e6;
  font-size: 19px;
  line-height: 1.25;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: #ddd2bd;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: #171717;
  background: linear-gradient(135deg, var(--honey-light), var(--honey));
  box-shadow: 0 0 26px rgba(255, 192, 64, 0.32);
}

.button.secondary {
  border-color: rgba(255, 211, 106, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: #fff7de;
}

.hero-collage {
  position: relative;
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.8vw, 18px);
  align-items: center;
  justify-items: center;
  width: min(100%, 720px);
  aspect-ratio: 1.18;
  min-height: 560px;
}

.hero-menu-item {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 260px);
  aspect-ratio: 1;
  overflow: hidden;
  padding: 1px;
  color: #fff8e6;
  text-decoration: none;
  background: rgba(255, 211, 106, 0.82);
  clip-path: var(--hero-hex);
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 42px rgba(255, 180, 44, 0.08));
}

.hero-menu-item img {
  position: absolute;
  inset: 1px;
  z-index: 0;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  object-fit: cover;
  clip-path: var(--hero-hex);
  filter: saturate(0.95) brightness(0.48);
}



.hero-menu-item span {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 70%;
  color: #fff8e6;
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.76);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-menu-honey span {
  font-size: clamp(18px, 1.6vw, 28px);
}

.hero-menu-wax span,
.hero-menu-wood span,
.hero-menu-gallery span {
  font-size: clamp(13px, 1.1vw, 22px);
}

.hero-menu-wax span {
  max-width: 76%;
  font-size: clamp(14px, 1.05vw, 21px);
}

.hero-menu-honey {
  grid-column: 1;
  grid-row: 2;
}

.hero-menu-wax {
  grid-column: 2;
  grid-row: 1;
  width: min(100%, 310px);
}

.hero-menu-gallery {
  grid-column: 2;
  grid-row: 3;
}

.hero-menu-wood {
  grid-column: 3;
  grid-row: 2;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.intro > p,
.split p,
.product-card p {
  color: var(--muted);
}

.intro > p {
  margin: 0;
  font-size: 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 5vw, 68px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255, 211, 106, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 211, 106, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 211, 106, 0.08), transparent 52%),
    rgba(21, 21, 21, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.30);
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: linear-gradient(135deg, rgba(255, 211, 106, 0.18), rgba(217, 154, 36, 0.04));
  clip-path: var(--hero-hex);
}

.product-visual > img {
  position: relative;
  z-index: 1;
  width: min(74%, 320px);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.46));
  transition: opacity 180ms ease, transform 220ms ease;
}

.product-showcase.is-changing .product-visual > img {
  opacity: 0;
  transform: translateY(10px) scale(0.96);
}

.product-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: 50%;
  color: var(--honey-light);
  background: rgba(12, 12, 12, 0.72);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  transform: translateY(-50%);
}

.product-arrow:hover {
  background: rgba(217, 154, 36, 0.22);
}

.product-arrow-prev {
  left: 0;
}

.product-arrow-next {
  right: 0;
}

.product-detail {
  position: relative;
  min-height: 350px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255, 211, 106, 0.18);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.52);
}

.product-detail h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.product-detail p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

.product-detail .price {
  margin: 24px 0 0;
  color: var(--honey-light);
  font-size: 26px;
  font-weight: 900;
}

.product-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.product-thumb {
  display: inline-grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 7px 12px 7px 7px;
  border: 1px solid rgba(255, 211, 106, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-weight: 800;
}

.product-thumb img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 5px;
  background: rgba(255, 211, 106, 0.08);
}

.product-thumb.is-active {
  border-color: rgba(255, 211, 106, 0.62);
  background: rgba(217, 154, 36, 0.20);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.split.reverse {
  grid-template-columns: minmax(280px, 1.05fr) minmax(0, 0.95fr);
}

.split.reverse > div:first-child {
  order: 2;
}

.split > img,
.media-stack img,
.media-stack video,
.hex-photo img,
.hex-photo video {
  width: 100%;
}

.split > img,
.media-stack img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hex-photo {
  position: relative;
  margin: 0;
  isolation: isolate;
  clip-path: var(--hero-hex);
  background: rgba(10, 10, 10, 0.72);
  cursor: pointer;
  filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.46));
  transition: transform 240ms ease, filter 240ms ease;
}

.hex-photo img,
.hex-photo video {
  height: 100%;
  object-fit: cover;
  clip-path: var(--hero-hex);
}

.hex-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: var(--hero-hex);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 211, 106, 0.55), rgba(255, 211, 106, 0.10) 48%, rgba(217, 154, 36, 0.56));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
  transition: inset 240ms ease, padding 240ms ease, background 240ms ease;
}

.hover-hex-outline:hover,
.hover-hex-outline:focus-visible {
  transform: translateY(-4px);
  filter: drop-shadow(0 28px 64px rgba(0, 0, 0, 0.50)) drop-shadow(0 0 44px rgba(255, 198, 82, 0.18));
  outline: none;
}

.hover-hex-outline:hover::before,
.hover-hex-outline:focus-visible::before {
  inset: -12px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(255, 211, 106, 0.92), rgba(255, 211, 106, 0.22) 48%, rgba(217, 154, 36, 0.84));
}

.breeding-media {
  align-self: center;
  aspect-ratio: 1.14;
  transform: translateY(10px);
}

.breeding-media img {
  object-position: 50% 42%;
  transform: scale(1.06);
}

.breeding-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: var(--hero-hex);
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 211, 106, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.22));
  pointer-events: none;
}

.price-box {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 18px 22px;
  color: #fff7df;
  border: 1px solid rgba(255, 211, 106, 0.32);
  background:
    linear-gradient(90deg, rgba(217, 154, 36, 0.24), rgba(255, 211, 106, 0.06)),
    var(--panel);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.price-box span {
  color: var(--honey-light);
  font-size: 24px;
  font-weight: 900;
}

.price-box small{
  color: var(--muted);
}

.note {
  margin-top: 22px;
  padding: 14px 16px;
  color: #fff7df;
  border: 1px solid rgba(255, 211, 106, 0.38);
  border-radius: 6px;
  background: rgba(217, 154, 36, 0.14);
  font-weight: 800;
}

.price-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.price-list strong {
  color: var(--honey-light);
}

.media-stack {
  display: grid;
  gap: 16px;
}

.wax-media {
  align-self: center;
  aspect-ratio: 1.08;
}

.gallery-coverflow {
  position: relative;
  isolation: isolate;
}
.gallery-plugin,
.gallery-plugin .gallery,
.gallery-plugin .wp-block-gallery {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 24px 12px 32px;
  scroll-snap-type: x mandatory;
}

.gallery-plugin figure,
.gallery-plugin .gallery-item,
.gallery-plugin .wp-block-image {
  flex: 0 0 min(58vw, 620px);
  margin: 0;
  scroll-snap-align: center;
}

.gallery-plugin img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 211, 106, 0.24);
  border-radius: 8px;
}

.gallery-track {
  display: flex;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  padding: 24px min(18vw, 180px) 28px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  position: relative;
  flex: 0 0 min(58vw, 620px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 211, 106, 0.24);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  scroll-snap-align: center;
  opacity: 0.54;
  transform: scale(0.86);
  transition: opacity 240ms ease, transform 240ms ease, filter 240ms ease;
  filter: saturate(0.75);
}

.gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1.05);
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 211, 106, 0.32);
  border-radius: 50%;
  color: var(--honey-light);
  background: rgba(12, 12, 12, 0.78);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.carousel-button:hover {
  background: rgba(217, 154, 36, 0.22);
}

.carousel-button-prev {
  left: -16px;
}

.carousel-button-next {
  right: -16px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 211, 106, 0.32);
}

.carousel-dots span.is-active {
  background: var(--honey-light);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 54px clamp(18px, 5vw, 72px);
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 211, 106, 0.12), transparent 42%),
    #101010;
  border-top: 1px solid var(--line);
}

.footer h2,
.footer p {
  margin: 0;
}

.footer address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  font-size: 0.88rem;
}

.footer-social {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 211, 106, 0.18);
}

.footer-social span {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-social a {
  justify-self: start;
  font-weight: 800;
}

.footer a {
  color: #ffe2a1;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 3, 0.78);
  backdrop-filter: blur(8px);
}

.contact-modal__dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 211, 106, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 211, 106, 0.1), transparent 42%),
    rgba(17, 17, 15, 0.97);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.54);
}

.contact-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: 50%;
  color: #fff7de;
  background: rgba(255, 255, 255, 0.06);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.contact-modal h2 {
  margin: 0;
  color: #fff8e6;
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 60px);
  line-height: 0.95;
}

.contact-modal__lead {
  margin: 16px 0 22px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #fff4d5;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 211, 106, 0.26);
  border-radius: 6px;
  padding: 12px 13px;
  color: #fff8e6;
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 211, 106, 0.42);
  outline-offset: 2px;
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
}

.contact-form__consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.contact-form__consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-message {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 6px;
}

.form-message--success {
  color: #fff8e6;
  background: rgba(255, 211, 106, 0.16);
  border: 1px solid rgba(255, 211, 106, 0.28);
}

.form-message--error {
  color: #ffe8df;
  background: rgba(217, 91, 67, 0.18);
  border: 1px solid rgba(217, 91, 67, 0.36);
}

body.contact-modal-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .nav,
  .hero,
  .intro,
  .split,
  .split.reverse,
  .footer {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }
.split.reverse > div:first-child {
    order: initial;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 330px;
  }

  .breeding-media {
    max-width: 620px;
    margin: 0 auto;
  }

  .wax-media {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .gallery-track {
    padding: 18px 32px 24px;
  }

  .gallery-slide {
    flex-basis: 82vw;
  }

  .carousel-button {
    display: none;
  }

  .footer {
    padding-bottom: 70px;
  }
}

@media (max-width: 620px) {
  .hero-collage {
    position: relative;
    display: block;
    width: min(100%, 390px);
    min-height: 720px;
    margin: 8px auto 0;
    aspect-ratio: auto;
  }

  .hero-menu-item {
    position: absolute;
    inset: auto;
    width: 118px;
  }

  .hero-menu-item span {
    max-width: 66%;
    font-size: 11px;
    line-height: 1.02;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero-menu-wood {
    width: min(270px, 66vw);
    right: 2%;
    top: 28%;
  }

  .hero-menu-honey {
    left: 5%;
    top: 34%;
  }

  .hero-menu-wax {
    left: 22%;
    top: 5%;
    width: 122px;
  }

  .hero-menu-gallery {
    left: 22%;
    bottom: 8%;
  }

  .hero-menu-wood span {
    max-width: 74%;
    font-size: clamp(18px, 5vw, 28px);
    line-height: 1.05;
  }

  .honeycomb {
    display: none;
  }

  .nav {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    font-size: 15px;
  }

  h1 {
    font-size: 40px;
  }

  .product-card {
    grid-template-rows: 210px 1fr;
  }

  .product-card img {
    height: 210px;
  }

  .price-list li {
    display: grid;
    gap: 4px;
  }
}

@media (max-width: 380px) {
  .hero-collage {
    min-height: 660px;
  }

  .hero-menu-item {
    width: 104px;
  }

  .hero-menu-item span {
    font-size: 10px;
  }

  .hero-menu-wood {
    width: min(246px, 68vw);
    right: 0;
  }

  .hero-menu-wood span {
    font-size: clamp(16px, 5vw, 24px);
  }
}




.page-shell {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0;
}

.page-card {
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid rgba(255, 211, 106, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 211, 106, 0.08), transparent 44%),
    rgba(16, 16, 15, 0.82);
}

.page-card h1 {
  margin-bottom: 24px;
  font-size: clamp(40px, 6vw, 72px);
}

.page-content {
  color: var(--muted);
  font-size: 18px;
}

.page-content a {
  color: #ffe2a1;
}


.back-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: 6px;
  color: #ffe2a1;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  font-weight: 800;
}

.back-home:hover {
  border-color: rgba(255, 211, 106, 0.52);
  background: rgba(217, 154, 36, 0.16);
}
