:root {
  --bg: #f4f1eb;
  --paper: #ffffff;
  --paper-soft: #ebe4d8;
  --ink: #11100e;
  --muted: #6f675c;
  --line: #d9cfc0;
  --accent: #b68b3d;
  --accent-2: #64213b;
  --obsidian: #0b0a09;
  --emerald: #16382f;
  --shadow: 0 22px 58px rgba(14, 12, 10, 0.16);
  --shadow-soft: 0 12px 30px rgba(14, 12, 10, 0.1);
  --header-h: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translate3d(0, -18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes shellIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1) translate3d(-1.4%, 0, 0);
  }
}

@keyframes nectarDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(-1.8%, 0, 0);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes goldSweep {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.78s cubic-bezier(0.2, 0.65, 0.2, 1),
    transform 0.78s cubic-bezier(0.2, 0.65, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translate3d(-34px, 0, 0);
}

.reveal-right {
  transform: translate3d(34px, 0, 0);
}

.reveal-scale {
  transform: translate3d(0, 24px, 0) scale(0.97);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.topbar {
  background: var(--obsidian);
  color: #f8f1e4;
  font-size: 13px;
  border-bottom: 1px solid rgba(182, 139, 61, 0.32);
}

.topbar-inner,
.header-inner,
.section-inner,
.footer-inner,
.bottom-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.socials,
.lang {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-pill,
.lang-pill {
  border: 1px solid rgba(182, 139, 61, 0.46);
  padding: 3px 9px;
  color: #f8f1e4;
  background: transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.social-pill:hover,
.lang-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.46);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(249, 247, 242, 0.92);
  border-bottom: 1px solid rgba(182, 139, 61, 0.24);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(22, 18, 13, 0.08);
  animation: headerDrop 0.62s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand img {
  width: 178px;
  height: auto;
}

.tagline {
  color: var(--accent-2);
  font-size: 12px;
  margin-left: 4px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
}

.nav-link,
.nav-button {
  color: var(--ink);
  border: 0;
  background: transparent;
  padding: 10px 0;
  position: relative;
  letter-spacing: 0;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-chevron {
  display: none;
}

.nav-link::after,
.nav-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after,
.nav-button:hover::after,
.nav-button.is-active::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
}

.mega {
  position: absolute;
  top: 100%;
  right: -70px;
  width: 560px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(182, 139, 61, 0.28);
  box-shadow: var(--shadow);
  padding: 20px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.18s ease;
}

.nav-group:hover .mega,
.nav-group:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-item {
  border: 1px solid rgba(182, 139, 61, 0.24);
  padding: 14px;
  background: linear-gradient(180deg, #fff, #f7f1e7);
  border-radius: 8px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.mega-item:hover {
  transform: translateY(-2px);
  border-color: rgba(156, 107, 47, 0.42);
  box-shadow: var(--shadow-soft);
}

.mega-item strong {
  display: block;
  font-family: "Lato", Arial, sans-serif;
  font-size: 17px;
  margin-bottom: 4px;
}

.mega-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.icon-btn,
.menu-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(182, 139, 61, 0.28);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  border-radius: 8px;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.icon-btn:hover,
.menu-btn:hover {
  background: #f5f1eb;
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.menu-btn {
  display: none;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(16, 16, 16, 0.72);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 90px 20px 20px;
}

.search-panel.is-open {
  display: flex;
  animation: shellIn 0.28s ease both;
}

.search-box {
  width: min(760px, 100%);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 22px;
  border-radius: 8px;
}

.search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.search-head h2 {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  font-size: 24px;
}

.search-input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px 15px;
  background: #faf8f5;
  border-radius: 8px;
}

.search-results {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  max-height: 52vh;
  overflow: auto;
}

.search-result {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
}

.search-result img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #f6f2ec;
}

.search-result span {
  color: var(--muted);
  font-size: 13px;
}

.hero {
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.05), rgba(11, 10, 9, 0)),
    var(--bg);
  color: #fff;
  padding: 30px 0 26px;
}

.hero-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(182, 139, 61, 0.25);
  box-shadow: 0 28px 70px rgba(14, 12, 10, 0.2);
  animation: shellIn 0.72s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.82s ease;
  display: grid;
  align-items: end;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  will-change: transform;
}

.hero-slide.is-active > img:not(.nectar-bg) {
  animation: heroImageDrift 7s ease-out both;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 56%, rgba(0, 0, 0, 0.36));
}

.hero-slide.align-right::after {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.18));
}

.hero-slide.nectar-theme {
  background: #080706;
}

.hero-slide.nectar-theme::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 73%, rgba(214, 151, 35, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0.72) 68%, rgba(0, 0, 0, 0.94) 100%);
}

.hero-slide.nectar-theme::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 32%, rgba(0, 0, 0, 0.22)),
    linear-gradient(90deg, transparent 0 55%, rgba(191, 134, 33, 0.22) 55%, transparent 56%);
}

.hero-slide.nectar-theme .nectar-bg {
  object-position: 0% 50%;
  opacity: 0.98;
  filter: saturate(1.06) contrast(1.05);
}

.hero-slide.is-active .nectar-bg {
  animation: nectarDrift 7s ease-out both;
}

.hero-slide.nectar-theme .hero-copy {
  color: #fff;
  width: min(430px, 100%);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.54);
}

.hero-slide.nectar-theme .eyebrow {
  color: #d9a73f;
}

.hero-slide.nectar-theme .hero-copy p:not(.eyebrow) {
  color: #f4eadc;
}

.hero-slide.nectar-theme .btn.alt {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-products {
  position: absolute;
  left: 58px;
  bottom: 24px;
  z-index: 2;
  width: min(540px, 46%);
  height: 80%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
}

.hero-products img {
  position: static;
  inset: auto;
  width: auto;
  height: 82%;
  max-width: 40%;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.2));
}

.hero-products img:nth-child(1) {
  height: 90%;
}

.hero-products img:nth-child(2) {
  height: 58%;
}

.hero-products img:nth-child(3) {
  height: 54%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  padding: 0 0 74px 54px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.hero-copy > * {
  opacity: 0;
}

.hero-slide.is-active .hero-copy > * {
  animation: heroTextIn 0.78s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.hero-slide.is-active .hero-copy > :nth-child(1) {
  animation-delay: 0.08s;
}

.hero-slide.is-active .hero-copy > :nth-child(2) {
  animation-delay: 0.18s;
}

.hero-slide.is-active .hero-copy > :nth-child(3) {
  animation-delay: 0.28s;
}

.hero-slide.is-active .hero-copy > :nth-child(4) {
  animation-delay: 0.4s;
}

.hero-slide.align-right .hero-copy {
  margin-left: auto;
  padding: 0 54px 74px 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.hero-copy h1,
.page-title h1,
.split-text h1 {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 900;
}

.hero-copy p {
  margin: 16px 0 24px;
  font-size: 18px;
  color: #f1ede7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--obsidian);
  background: var(--obsidian);
  color: #fff;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn.alt {
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  border-color: rgba(17, 16, 14, 0.58);
}

.btn.alt:hover {
  background: #fff;
}

.hero .btn.alt {
  border-color: rgba(255, 255, 255, 0.76);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.slider-nav {
  position: absolute;
  z-index: 3;
  inset: auto 24px 26px auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-nav button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  border-radius: 8px;
}

.dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
}

.dot.is-active {
  background: #fff;
}

.section {
  padding: 76px 0;
}

.section.compact {
  padding: 48px 0;
}

.section.light {
  background: #fbfaf7;
}

.section.sand {
  background:
    linear-gradient(180deg, rgba(182, 139, 61, 0.08), rgba(100, 33, 59, 0.04)),
    var(--paper-soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-head h2 {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.2;
}

.section-head p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
}

.promo-grid {
  display: grid;
  gap: 30px;
}

.promo {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  gap: 30px;
  align-items: center;
}

.promo:nth-child(even) {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.7fr);
}

.promo:nth-child(even) .promo-image {
  order: 2;
}

.promo-image {
  background: #151515;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(182, 139, 61, 0.24);
  box-shadow: var(--shadow);
  position: relative;
}

.promo-image img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.2, 0.65, 0.2, 1), filter 0.45s ease;
}

.promo:hover .promo-image img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.promo-image::after,
.product-card::before,
.merch-card::before,
.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.28) 48%, transparent 72%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%);
}

.promo:hover .promo-image::after,
.product-card:hover::before,
.merch-card:hover::before,
.category-tile:hover::before {
  opacity: 1;
  animation: goldSweep 0.85s ease both;
}

.promo-text h2,
.split-text h2 {
  margin: 0 0 12px;
  font-family: "Lato", Arial, sans-serif;
  font-size: 38px;
  line-height: 1.15;
  color: #8b5f22;
}

.promo-text p,
.split-text p {
  margin: 0 0 22px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 16px;
  align-items: end;
}

.split-media img {
  width: 100%;
  object-fit: cover;
  background: #eee;
}

.split-media img:first-child {
  height: 460px;
}

.split-media img:last-child {
  height: 320px;
  margin-bottom: 46px;
}

.distributor-card {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(182, 139, 61, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 241, 231, 0.88)),
    #fff;
  box-shadow: var(--shadow-soft);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.distributor-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.distributor-logo-card {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 18px 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 237, 229, 0.92)),
    #fff;
  border: 1px solid rgba(182, 139, 61, 0.28);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 18px 38px rgba(28, 24, 20, 0.08);
}

.distributor-logo {
  display: block;
  width: 100%;
  max-width: 330px;
  height: auto;
}

.distributor-copy h2 {
  max-width: 720px;
}

.distributor-copy p:last-child {
  max-width: 760px;
  margin-bottom: 0;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-tile {
  min-height: 210px;
  position: relative;
  overflow: hidden;
  background: var(--obsidian);
  color: #fff;
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile:hover img {
  transform: scale(1.04);
  opacity: 0.78;
}

.category-tile div {
  position: absolute;
  inset: auto 18px 18px;
  border-left: 2px solid var(--accent);
  padding-left: 13px;
}

.category-tile h3 {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  font-size: 24px;
}

.category-tile p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #eee5dc;
}

.page-hero {
  background: var(--obsidian);
  color: #fff;
  padding: 24px 0;
}

.page-hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: center;
  min-height: 410px;
  border-radius: 8px;
  overflow: hidden;
}

.page-title p {
  color: #ece4db;
  margin: 18px 0 0;
}

.page-hero-img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.85s cubic-bezier(0.2, 0.65, 0.2, 1), filter 0.45s ease;
}

.page-hero-inner:hover .page-hero-img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.04);
}

.crumbs {
  margin-bottom: 12px;
  color: #d2b48c;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 14px;
  margin-bottom: 28px;
}

.toolbar input,
.toolbar select,
.field,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  border-radius: 8px;
}

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

.product-card,
.merch-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f7f2ea);
  border: 1px solid rgba(182, 139, 61, 0.24);
  border-radius: 8px;
  overflow: hidden;
  min-width: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover,
.merch-card:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 139, 61, 0.62);
  box-shadow: 0 18px 40px rgba(14, 12, 10, 0.14);
}

.product-img {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.94), rgba(236, 226, 211, 0.74)),
    #f3eadc;
  display: grid;
  place-items: center;
  padding: 22px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.55s cubic-bezier(0.2, 0.65, 0.2, 1), filter 0.35s ease;
}

.product-card:hover .product-img img,
.merch-card:hover img {
  transform: translate3d(0, -5px, 0) scale(1.035);
  filter: drop-shadow(0 14px 16px rgba(14, 12, 10, 0.16));
}

.product-body {
  padding: 16px 16px 18px;
}

.product-body span {
  display: block;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.product-body h3 {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
}

.category-card .product-img {
  background: #161616;
  padding: 0;
}

.category-card .product-img img {
  object-fit: cover;
  opacity: 0.82;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: center;
}

.detail-image {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.detail-image.has-variant {
  border-color: color-mix(in srgb, var(--variant-color, #8f0057) 48%, var(--line));
  background:
    radial-gradient(circle at 22% 18%, color-mix(in srgb, var(--variant-color, #8f0057) 18%, transparent), transparent 34%),
    linear-gradient(145deg, #fff, #f7f1eb);
}

.detail-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transition: filter 0.24s ease, transform 0.24s ease;
}

.detail-image.has-variant img {
  filter: var(--variant-filter, none);
}

.variant-image-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  color: #fff;
  background: rgba(20, 18, 16, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.variant-image-badge span {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  flex: 0 0 auto;
}

.variant-image-badge strong {
  min-width: 0;
  font-size: 12px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.detail-copy h1 {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  font-size: 42px;
  line-height: 1.15;
}

.detail-copy .original {
  color: var(--muted);
  margin-top: 8px;
}

.detail-copy p {
  color: var(--muted);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.variant-picker {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 16px;
  border: 1px solid rgba(182, 139, 61, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 241, 231, 0.84));
  border-radius: 8px;
}

.variant-picker label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.variant-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.variant-swatches span {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(20, 18, 16, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.45);
}

.badge {
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: start;
}

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

.hidden-field {
  display: none;
}

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

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.success {
  display: none;
  border: 1px solid rgba(53, 128, 76, 0.35);
  background: #eef7f0;
  padding: 12px 14px;
  color: #255b35;
  border-radius: 8px;
}

.success.error {
  border-color: rgba(150, 35, 35, 0.36);
  background: #fff0f0;
  color: #8c2222;
}

.success.is-visible {
  display: block;
}

.contact-form .btn:disabled {
  opacity: 0.64;
  cursor: wait;
  transform: none;
}

.contact-aside {
  background:
    linear-gradient(145deg, rgba(100, 33, 59, 0.24), rgba(22, 56, 47, 0.2)),
    var(--obsidian);
  color: #fff;
  padding: 26px;
  border-radius: 8px;
}

.contact-aside a {
  color: #d2b48c;
}

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

.merch-card {
  padding: 14px;
}

.merch-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f8f5ef;
}

.merch-card h3 {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.35;
}

.cookie {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 60;
  width: min(460px, calc(100% - 40px));
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  border-radius: 8px;
}

.cookie.is-visible {
  display: block;
}

.cookie h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-family: "Lato", Arial, sans-serif;
}

.cookie p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  background: var(--obsidian);
  color: #eee;
  border-top: 1px solid rgba(182, 139, 61, 0.35);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px;
  padding: 46px 0;
}

.footer h2 {
  margin: 0 0 12px;
  font-family: "Lato", Arial, sans-serif;
  font-size: 18px;
}

.footer p,
.footer a {
  color: #cfc9c1;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-brand-panel {
  width: min(100%, 420px);
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(132px, 152px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(182, 139, 61, 0.45);
  background: #141210;
  color: #f8f1e4;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.footer-brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(182, 139, 61, 0.22), rgba(100, 33, 59, 0.16)),
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.12), transparent 34%);
}

.footer-brand-logo-frame {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(217, 167, 63, 0.48);
  background: linear-gradient(135deg, #fffdf7 0%, #eee4d1 100%);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 14px 24px rgba(0, 0, 0, 0.18);
}

.footer-brand-logo {
  display: block;
  width: 100%;
  max-width: 142px;
  height: auto;
}

.footer-brand-copy {
  min-width: 0;
}

.footer-brand-panel strong,
.footer-brand-panel span,
.footer-brand-panel small {
  display: block;
}

.footer-brand-panel strong {
  font-family: "Lato", Arial, sans-serif;
  font-size: 23px;
  line-height: 1;
}

.footer-brand-panel span {
  margin-top: 6px;
  color: #d8d0c4;
  font-size: 13px;
}

.footer-brand-panel small {
  margin-top: 10px;
  color: #d9a73f;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.certs {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.certs img {
  max-height: 48px;
  width: auto;
  background: #fff;
  padding: 4px;
}

.bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #b8b0a7;
  font-size: 12px;
}

.bottom-inner {
  padding: 18px 0;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 55;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.empty {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .hero-copy > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-slide img {
    transform: none !important;
  }
}

@media (max-width: 1020px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: clamp(13px, 4vw, 24px);
    right: clamp(13px, 4vw, 24px);
    max-height: min(68vh, 560px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(182, 139, 61, 0.34);
    box-shadow: 0 28px 70px rgba(14, 12, 10, 0.2);
    padding: 10px;
    border-radius: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .main-nav.is-open {
    display: flex;
    animation: menuIn 0.28s cubic-bezier(0.2, 0.65, 0.2, 1) both;
  }

  .nav-link,
  .nav-button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border: 1px solid rgba(182, 139, 61, 0.22);
    border-radius: 10px;
    background: #fff;
    line-height: 1.25;
  }

  .nav-link.is-active,
  .nav-button.is-active {
    border-color: rgba(182, 139, 61, 0.5);
    background: linear-gradient(135deg, #fffaf0, #efe3ce);
  }

  .nav-link::after,
  .nav-button::after {
    display: none;
  }

  .nav-group {
    width: 100%;
  }

  .nav-chevron {
    display: inline-block;
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    margin-right: 4px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
  }

  .nav-group.is-open .nav-chevron {
    transform: rotate(225deg);
  }

  .menu-btn {
    display: inline-grid;
  }

  .mega {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    margin: 6px 0 2px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    transition: none;
  }

  .nav-group.is-open .mega {
    display: grid;
    animation: menuIn 0.24s cubic-bezier(0.2, 0.65, 0.2, 1) both;
  }

  .mega-item {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff, #f4ecdd);
  }

  .mega-item:hover {
    transform: none;
  }

  .mega-item strong {
    margin: 0;
    font-size: 14px;
    line-height: 1.25;
  }

  .mega-item span {
    display: none;
  }

  .hero-shell {
    min-height: 470px;
  }

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

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

  .page-hero-inner,
  .split,
  .product-detail,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-inner {
    padding: 44px 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 76px;
  }

  body {
    font-size: 15px;
  }

  .topbar-inner,
  .header-inner,
  .section-inner,
  .footer-inner,
  .bottom-inner,
  .hero-shell,
  .page-hero-inner {
    width: min(100% - 26px, 1180px);
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
    gap: 6px;
  }

  .brand img {
    width: 150px;
  }

  .tagline {
    display: none;
  }

  .header-inner {
    gap: 10px;
  }

  .main-nav {
    top: calc(100% + 8px);
    left: 13px;
    right: 13px;
    max-height: min(70vh, 520px);
  }

  .hero-shell {
    min-height: 430px;
  }

  .hero-copy {
    padding: 0 22px 78px;
  }

  .hero-slide.align-right .hero-copy {
    padding: 0 22px 76px;
    margin-left: 0;
  }

  .hero-slide.nectar-theme::before {
    background:
      radial-gradient(circle at 50% 64%, rgba(214, 151, 35, 0.28), transparent 34%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.36) 46%, rgba(0, 0, 0, 0.92));
  }

  .hero-slide.nectar-theme::after {
    background: linear-gradient(180deg, transparent, rgba(191, 134, 33, 0.18) 64%, rgba(0, 0, 0, 0.32));
  }

  .hero-slide.nectar-theme .nectar-bg {
    object-position: 27% center;
    opacity: 0.72;
  }

  .hero-slide.nectar-theme .hero-copy {
    width: 100%;
  }

  .hero-products {
    display: none;
  }

  .reveal-left,
  .reveal-right {
    transform: translate3d(0, 28px, 0);
  }

  .hero-copy h1,
  .page-title h1,
  .split-text h1 {
    font-size: 34px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    display: block;
  }

  .promo,
  .promo:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .distributor-card {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 22px;
  }

  .distributor-logo-card {
    min-height: 104px;
    padding: 14px 16px;
  }

  .distributor-logo {
    max-width: 300px;
  }

  .promo:nth-child(even) .promo-image {
    order: 0;
  }

  .promo-image img,
  .page-hero-img {
    height: 240px;
  }

  .split-media {
    grid-template-columns: 1fr;
  }

  .split-media img:first-child,
  .split-media img:last-child {
    height: 300px;
    margin: 0;
  }

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

  .grid,
  .category-strip,
  .merch-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .product-detail {
    gap: 24px;
  }

  .detail-copy h1 {
    font-size: 30px;
  }

  .cookie {
    left: 13px;
    bottom: 13px;
    width: calc(100% - 26px);
  }
}
