@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,500&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* Blessed Owoli — POS palette, distinctive marketing layout */
:root {
  --bo-bg: #f5f1ea;
  --bo-bg-warm: #fffaf4;
  --bo-sidebar: #2b2118;
  --bo-sidebar-border: #4a3b2f;
  --bo-sidebar-btn: #35291f;
  --bo-sidebar-text: #f0dfc9;
  --bo-sidebar-muted: #d8c3a5;

  --bo-rust: #7c2d12;
  --bo-rust-deep: #5c1f0c;
  --bo-amber: #d97706;
  --bo-amber-light: #fbbf24;
  --bo-orange-soft: #fff7ed;
  --bo-orange-border: #fdba74;
  --bo-cream-border: #f0dfc9;

  --bo-text: #2a2118;
  --bo-muted: #8b7355;
  --bo-label: #7c2d12;

  --bo-green: #16a34a;
  --bo-green-dark: #15803d;
  --bo-green-soft: #f0fdf4;

  --bo-hero-gradient: linear-gradient(135deg, #7c2d12 0%, #b45309 48%, #d97706 100%);
  --bo-btn-gradient: linear-gradient(135deg, #15803d, #16a34a);
  --bo-mesh: radial-gradient(circle at 15% 20%, rgba(217, 119, 6, 0.14), transparent 42%),
    radial-gradient(circle at 85% 10%, rgba(124, 45, 18, 0.1), transparent 38%),
    radial-gradient(circle at 70% 85%, rgba(22, 163, 74, 0.08), transparent 40%);

  --bo-radius: 14px;
  --bo-radius-xl: 24px;
  --bo-shadow: 0 8px 30px rgba(42, 33, 24, 0.07);
  --bo-shadow-deep: 0 28px 70px rgba(20, 12, 6, 0.22);
  --bo-shadow-lg: 0 20px 50px rgba(42, 33, 24, 0.12);
  --bo-font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --bo-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --bo-display: clamp(2.4rem, 5.5vw, 4.2rem);
  --bo-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bo-login-gradient: linear-gradient(160deg, #2b2118 0%, #4a2c14 42%, #7c2d12 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  font-family: var(--bo-font);
  color: var(--bo-text);
  background: var(--bo-bg);
  background-image: var(--bo-mesh);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(rgba(42, 33, 24, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
}

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

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-inline: 16px;
}

.containerWide {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding-inline: 16px;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

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

.btnPrimary {
  color: #f7fff9;
  background: var(--bo-btn-gradient);
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.28);
}

.btnPrimary:hover {
  filter: brightness(1.05);
  box-shadow: 0 14px 34px rgba(22, 163, 74, 0.34);
}

.btnSecondary {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btnSecondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btnDark {
  color: #fff7ed;
  background: var(--bo-sidebar);
  border: 1px solid var(--bo-sidebar-border);
  box-shadow: var(--bo-shadow);
}

.btnDark:hover {
  background: #35291f;
}

.btnIcon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
}

/* —— Header —— */
.siteHeader {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  z-index: 50;
  border-radius: 999px;
  background: rgba(43, 33, 24, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(20, 12, 6, 0.28);
}

.siteHeaderInner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.brand > span:last-child {
  min-width: 0;
}

.brandName {
  font-weight: 800;
  font-size: 1rem;
  color: #fff7ed;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brandTag {
  font-size: 0.68rem;
  color: var(--bo-sidebar-muted);
  letter-spacing: 0.02em;
}

.siteNav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.siteNav a {
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--bo-sidebar-text);
  transition: background 0.15s ease;
}

.siteNav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.brandMark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff7ed;
  background: var(--bo-hero-gradient);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.siteNavCta {
  margin-left: 6px;
}

.navToggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 48;
}

.navBackdrop {
  display: none;
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 120px 0 0;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
}

.heroGlow {
  position: absolute;
  inset: 0;
  background: var(--bo-hero-gradient);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
  z-index: 0;
}

.heroGlow::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.16), transparent 32%),
    radial-gradient(circle at 12% 72%, rgba(0, 0, 0, 0.18), transparent 42%);
}

.heroInner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 80px;
}

.heroCopy {
  padding-top: 20px;
}

.heroEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffedd5;
}

.heroEyebrowDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bo-green);
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.25);
  animation: pulseDot 2.4s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

.hero h1 {
  margin: 0 0 20px;
  font-family: var(--bo-serif);
  font-size: var(--bo-display);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #fff;
  max-width: 11ch;
}

.hero h1 em {
  font-style: normal;
  color: #fde68a;
  display: block;
}

.heroLead {
  margin: 0 0 32px;
  max-width: 46ch;
  font-size: 1.12rem;
  color: #ffedd5;
}

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

.heroVisual {
  position: relative;
  min-height: 420px;
}

.visualStack {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.visualOrb {
  width: min(380px, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 40%),
    linear-gradient(145deg, rgba(255, 250, 244, 0.95), rgba(255, 237, 213, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--bo-shadow-deep);
}

.visualRing {
  position: absolute;
  width: 110%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  animation: spinSlow 28s linear infinite;
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

.visualCard {
  position: absolute;
  background: rgba(255, 250, 244, 0.94);
  border: 1px solid var(--bo-cream-border);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--bo-shadow-deep);
  backdrop-filter: blur(6px);
  min-width: 180px;
}

.visualCard--tl {
  top: 8%;
  left: 0;
  transform: rotate(-4deg);
}

.visualCard--br {
  bottom: 10%;
  right: 0;
  transform: rotate(3deg);
}

.visualCardLabel {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bo-amber);
  margin-bottom: 4px;
}

.visualCard strong {
  display: block;
  font-size: 1.35rem;
  color: var(--bo-rust);
  line-height: 1.1;
}

.visualCard span {
  font-size: 0.82rem;
  color: var(--bo-muted);
}

.visualChipRow {
  position: absolute;
  left: 50%;
  bottom: 22%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
}

.visualChip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bo-sidebar);
  color: #fff7ed;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.heroStats {
  position: relative;
  z-index: 2;
  margin-top: auto;
  background: #fff;
  border-radius: var(--bo-radius-xl) var(--bo-radius-xl) 0 0;
  box-shadow: 0 -20px 50px rgba(20, 12, 6, 0.08);
  padding: 28px 0 0;
}

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

.statBlock {
  padding: 22px 24px 30px;
  border-right: 1px solid #f0e6da;
  text-align: center;
}

.statBlock:last-child {
  border-right: none;
}

.statBlock strong {
  display: block;
  font-size: 1.05rem;
  color: var(--bo-rust);
  margin-bottom: 6px;
}

.statBlock span {
  font-size: 0.84rem;
  color: var(--bo-muted);
}

/* —— Sections —— */
.section {
  padding: 88px 0;
  position: relative;
}

.sectionAlt {
  background: rgba(255, 255, 255, 0.72);
}

.sectionSplitHead {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.sectionEyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bo-amber);
  margin-bottom: 12px;
}

.sectionTitle {
  margin: 0;
  font-family: var(--bo-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--bo-rust);
}

.sectionLead {
  margin: 0;
  color: var(--bo-muted);
  font-size: 1.05rem;
  max-width: 48ch;
}

/* Bento product grid */
.bentoGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 18px;
}

.bentoCard {
  position: relative;
  overflow: hidden;
  border-radius: var(--bo-radius-xl);
  padding: 28px;
  background: var(--bo-bg-warm);
  border: 1px solid var(--bo-cream-border);
  box-shadow: var(--bo-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bentoCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(124, 45, 18, 0.12);
}

.bentoCard::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.16), transparent 70%);
  pointer-events: none;
}

.bentoCard--large {
  grid-column: span 7;
  grid-row: span 2;
  background: linear-gradient(145deg, #fffaf4, #fff7ed);
}

.bentoCard--tall {
  grid-column: span 5;
  grid-row: span 2;
}

.bentoCard--wide {
  grid-column: span 5;
}

.bentoCard--compact {
  grid-column: span 4;
}

.bentoNum {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--bo-amber);
  margin-bottom: 14px;
}

.bentoCard h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--bo-rust);
  max-width: 16ch;
}

.bentoCard p {
  margin: 0;
  color: var(--bo-muted);
  font-size: 0.96rem;
  max-width: 42ch;
}

.bentoGlyph {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--bo-hero-gradient);
  opacity: 0.14;
}

.bentoGlyph::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(124, 45, 18, 0.35);
  border-radius: 10px;
}

/* Wholesale band */
.wholesaleBand {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.wholesaleBandBg {
  position: absolute;
  inset: 0;
  background: var(--bo-sidebar);
}

.wholesaleBandBg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 30%, rgba(217, 119, 6, 0.18) 30%, rgba(217, 119, 6, 0.18) 32%, transparent 32%),
    radial-gradient(circle at 90% 50%, rgba(124, 45, 18, 0.45), transparent 45%);
}

.wholesaleInner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.wholesaleCopy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.05;
  color: #fff7ed;
  letter-spacing: -0.02em;
}

.wholesaleCopy p {
  margin: 0 0 24px;
  color: var(--bo-sidebar-muted);
  font-size: 1.05rem;
  max-width: 44ch;
}

.wholesalePanels {
  display: grid;
  gap: 16px;
}

.wholesalePanel {
  padding: 24px 26px;
  border-radius: var(--bo-radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.wholesalePanel h3 {
  margin: 0 0 8px;
  color: #fde68a;
  font-size: 1.05rem;
}

.wholesalePanel p {
  margin: 0;
  color: #f0dfc9;
  font-size: 0.92rem;
}

/* Contact */
.contactSection {
  padding-bottom: 100px;
}

.contactShell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: var(--bo-radius-xl);
  overflow: hidden;
  box-shadow: var(--bo-shadow-deep);
  border: 1px solid var(--bo-cream-border);
}

.contactMap {
  position: relative;
  min-height: 360px;
  background: var(--bo-hero-gradient);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contactMap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(43, 33, 24, 0.75), transparent 55%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 28px);
}

.contactMapPin {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50% 50% 50% 0;
  rotate: -45deg;
  background: var(--bo-green);
  border: 4px solid #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.contactMapText {
  position: relative;
  color: #fff7ed;
}

.contactMapText strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contactMapText p {
  margin: 0;
  color: #ffedd5;
  max-width: 36ch;
}

.contactDetails {
  background: #fff;
  padding: 36px;
  display: grid;
  gap: 22px;
  align-content: center;
}

.contactRow {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.contactIcon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bo-orange-soft);
  border: 1px solid var(--bo-orange-border);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--bo-rust);
}

.contactRow strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bo-amber);
  margin-bottom: 4px;
}

.contactRow p,
.contactRow a {
  margin: 0;
  color: var(--bo-text);
  font-weight: 600;
}

.contactRow a:hover {
  color: var(--bo-rust);
}

/* Footer */
.siteFooter {
  background: var(--bo-sidebar);
  color: var(--bo-sidebar-muted);
  padding: 40px 0 48px;
  border-top: 1px solid var(--bo-sidebar-border);
}

.siteFooterGrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.siteFooter h3 {
  margin: 0 0 10px;
  color: #fff7ed;
  font-size: 1rem;
}

.siteFooter p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footerLinks {
  display: grid;
  gap: 8px;
}

.footerLinks a {
  color: var(--bo-sidebar-text);
  font-weight: 600;
  font-size: 0.9rem;
}

.footerLinks a:hover {
  color: #fff;
}

.footerBottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
}

/* —— Tablet (768px – 1100px) —— */
@media (max-width: 1100px) {
  .heroInner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 56px;
  }

  .heroCopy {
    padding-top: 0;
    text-align: center;
  }

  .heroEyebrow {
    justify-content: center;
  }

  .heroLead {
    margin-left: auto;
    margin-right: auto;
  }

  .heroActions {
    justify-content: center;
  }

  .heroVisual {
    min-height: 340px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .visualOrb {
    width: min(300px, 72%);
  }

  .visualCard--tl {
    left: 0;
    top: 6%;
  }

  .visualCard--br {
    right: 0;
    bottom: 8%;
  }

  .sectionSplitHead {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sectionLead {
    max-width: none;
  }

  .wholesaleInner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wholesaleCopy {
    text-align: center;
  }

  .wholesaleCopy p {
    margin-left: auto;
    margin-right: auto;
  }

  .wholesaleCopy .btn {
    margin: 0 auto;
  }

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

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

@media (max-width: 960px) {
  .section {
    padding: 64px 0;
  }

  .wholesaleBand {
    padding: 64px 0;
  }

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

  .statBlock:nth-child(2) {
    border-right: none;
  }

  .statBlock:nth-child(1),
  .statBlock:nth-child(2) {
    border-bottom: 1px solid #f0e6da;
  }

  .bentoCard--large,
  .bentoCard--tall {
    grid-column: span 12;
    grid-row: span 1;
  }

  .bentoCard--wide,
  .bentoCard--compact {
    grid-column: span 6;
  }

  .hero h1 {
    max-width: none;
  }
}

/* —— Mobile (≤768px) —— */
@media (max-width: 768px) {
  .siteHeader {
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding-top: env(safe-area-inset-top);
    overflow: visible;
  }

  .siteHeaderInner {
    padding: 10px 16px;
    gap: 12px;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .brandName {
    font-size: 0.92rem;
  }

  .brandTag {
    font-size: 0.62rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brandMark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.8rem;
  }

  .navToggle {
    display: grid;
    place-items: center;
  }

  .navBackdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 44;
    background: rgba(20, 12, 6, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .navBackdrop.isOpen {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .siteNav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 100%);
    max-width: 100%;
    height: 100%;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding:
      calc(env(safe-area-inset-top) + 72px)
      20px
      max(24px, env(safe-area-inset-bottom));
    gap: 6px;
    background: var(--bo-sidebar);
    border: none;
    border-left: 1px solid var(--bo-sidebar-border);
    border-radius: 0;
    box-shadow: -12px 0 40px rgba(20, 12, 6, 0.35);
    z-index: 47;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, visibility 0.28s ease;
  }

  .siteNav.isOpen {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .siteNav a {
    padding: 14px 16px;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .siteNav a:hover {
    background: var(--bo-sidebar-btn);
  }

  .siteNavCta {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    max-width: 100%;
  }

  .siteNavCta .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    min-height: 50px;
    box-sizing: border-box;
    border-radius: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(76px + env(safe-area-inset-top));
  }

  .heroGlow {
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  }

  .heroInner {
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.02;
  }

  .heroLead {
    font-size: 1rem;
  }

  .heroActions {
    flex-direction: column;
    width: 100%;
  }

  .heroActions .btn {
    width: 100%;
    min-height: 48px;
  }

  /* Simpler hero visual — no overlapping overflow */
  .heroVisual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 8px 0 0;
  }

  .visualStack {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .visualOrb {
    width: min(240px, 85%);
    position: relative;
  }

  .visualRing {
    width: min(280px, 92%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .visualCard {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: 320px;
    min-width: 0;
  }

  .visualCard--tl,
  .visualCard--br {
    transform: none;
  }

  .visualChipRow {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 4px;
  }

  .heroStats {
    border-radius: 20px 20px 0 0;
    padding-top: 20px;
  }

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

  .statBlock {
    border-right: none !important;
    border-bottom: 1px solid #f0e6da;
    padding: 18px 16px 20px;
    text-align: left;
  }

  .statBlock:last-child {
    border-bottom: none;
  }

  .section {
    padding: 52px 0;
  }

  .sectionSplitHead {
    margin-bottom: 32px;
  }

  .sectionTitle {
    font-size: clamp(1.65rem, 6vw, 2rem);
  }

  .bentoGrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bentoCard--large,
  .bentoCard--tall,
  .bentoCard--wide,
  .bentoCard--compact {
    grid-column: span 1;
  }

  .bentoCard {
    padding: 22px 20px;
  }

  .bentoGlyph {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 14px;
  }

  .wholesaleBand {
    padding: 52px 0;
  }

  .wholesaleCopy h2 {
    font-size: clamp(1.65rem, 6vw, 2.1rem);
  }

  .wholesaleCopy .btn {
    width: 100%;
    min-height: 48px;
  }

  .contactSection {
    padding-bottom: 64px;
  }

  .contactMap {
    min-height: 240px;
    padding: 24px 20px;
  }

  .contactMapPin {
    width: 48px;
    height: 48px;
    top: 32%;
  }

  .contactMapText strong {
    font-size: 1.15rem;
  }

  .contactDetails {
    padding: 24px 20px;
  }

  .contactDetails .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .siteFooter {
    padding: 32px 0 max(40px, env(safe-area-inset-bottom));
  }

  .siteFooterGrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footerBottom {
    flex-direction: column;
    text-align: center;
  }
}

/* —— Small phones (≤480px) —— */
@media (max-width: 480px) {
  .container,
  .containerWide {
    padding-inline: 14px;
  }

  .siteNav {
    width: 100%;
    border-left: none;
  }

  .hero {
    padding-top: calc(72px + env(safe-area-inset-top));
  }

  .heroEyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .visualStack {
    min-height: 220px;
  }

  .visualOrb {
    width: min(200px, 80%);
  }

  .btn {
    padding: 13px 20px;
    font-size: 0.92rem;
    max-width: 100%;
  }

  .contactShell,
  .bentoGrid,
  .heroInner,
  .heroCopy {
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* Body scroll lock when mobile menu open */
body.navOpen {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

@media (min-width: 769px) {
  .navToggle {
    display: none !important;
  }

  .navBackdrop {
    display: none !important;
  }

  .siteNav {
    display: flex !important;
    position: static !important;
    transform: none !important;
    visibility: visible !important;
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
}
