@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --black: #11110f;
  --black2: #171715;
  --brown: #76552c;
  --mustard: #c6a15b;
  --cream: #f4efe5;
  --muted: #bcb6aa;
  --line: rgba(198, 161, 91, .24);
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif
}

a {
  text-decoration: none
}

::selection {
  background: var(--mustard);
  color: var(--black)
}

.container-x {
  width: min(1180px, calc(100% - 36px));
  margin: auto
}

.font-display {
  font-family: 'Playfair Display', serif
}

.topbar {
  background: #0b0b0a;
  border-bottom: 1px solid var(--line);
  color: #aaa49a;
  font-size: .8rem
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 17, 15, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line)
}

.logo-img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(198, 161, 91, .65)
}

.nav-link {
  position: relative;
  color: #d7d1c6;
  font-size: .9rem;
  font-weight: 600;
  padding: .55rem .25rem;
  transition: .25s
}

.nav-link:hover {
  color: var(--mustard)
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--mustard);
  transform: scaleX(0);
  transform-origin: left;
  transition: .25s
}

.nav-link:hover::after {
  transform: scaleX(1)
}

.page {
  display: none;
  min-height: 55vh
}

.page:target {
  display: block
}

body:not(:has(.page:target)) #home {
  display: block
}

body:has(.page:target):not(:has(#home:target)) #home {
  display: none
}

body:has(.product-group:target) #home {
  display: none
}

body:has(.product-group:target) #products {
  display: block
}

.hero {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black2)
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
  filter: saturate(.85) contrast(1.08)
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 17, 15, .98) 0%, rgba(17, 17, 15, .82) 43%, rgba(17, 17, 15, .45) 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0
}

.eyebrow,
.section-kicker {
  color: var(--mustard);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .95;
  max-width: 850px;
  letter-spacing: -.045em
}

.hero p {
  max-width: 650px;
  color: #c6c0b5;
  line-height: 1.8;
  font-size: 1.04rem
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.25rem;
  border: 1px solid var(--mustard);
  background: var(--mustard);
  color: #16130e;
  font-weight: 700;
  transition: .25s
}

.btn-primary:hover {
  background: #ddbc79;
  transform: translateY(-2px)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.25rem;
  border: 1px solid #686158;
  color: var(--cream);
  font-weight: 700;
  transition: .25s
}

.btn-outline:hover {
  border-color: var(--mustard);
  color: var(--mustard);
  transform: translateY(-2px)
}

.section {
  padding: 90px 0
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: #f4efe5;
  margin: .6rem 0 1.2rem
}

.section-intro {
  max-width: 680px;
  color: #aaa49a;
  line-height: 1.8
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, var(--mustard), transparent);
  opacity: .55
}

.stat {
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(118, 85, 44, .15), rgba(255, 255, 255, .02));
}

.stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--mustard)
}

.stat span {
  display: block;
  color: #a9a399;
  margin-top: .25rem;
  font-size: .85rem
}

.card {
  border: 1px solid var(--line);
  background: #171715;
  transition: .3s
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(198, 161, 91, .55);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .25)
}

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

.product-card {
  border: 1px solid rgba(198, 161, 91, .18);
  background: #181816;
  overflow: hidden;
  transition: .3s
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 161, 91, .55);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .3)
}

.product-img-wrap {
  height: 220px;
  background: #23221e;
  position: relative;
  overflow: hidden
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
  display: block
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06)
}

.product-no {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 4px 8px;
  background: rgba(17, 17, 15, .86);
  border: 1px solid var(--line);
  color: var(--mustard);
  font-size: .7rem;
  font-weight: 700
}

.product-group {
  padding: 80px 0 10px
}

.product-group:first-of-type {
  padding-top: 0
}

.person-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 205px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #181816
}

.person-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--mustard);
  font-size: 1.35rem
}

.person-card .phone {
  color: #ddd6ca;
  margin-top: 7px
}

.quote {
  border-left: 2px solid var(--mustard);
  padding: 20px 24px;
  background: rgba(198, 161, 91, .06);
  color: #d3cdc1;
  line-height: 1.8
}

.contact-box {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(118, 85, 44, .15), rgba(255, 255, 255, .015));
  padding: 30px
}

.form-field {
  width: 100%;
  background: #0e0e0d;
  border: 1px solid #3b3934;
  color: #eee8dc;
  padding: 13px 14px;
  outline: none
}

.form-field:focus {
  border-color: var(--mustard)
}

.mobile-menu {
  display: none
}

.footer {
  background: #0c0c0b;
  border-top: 1px solid var(--line)
}

.footer a {
  color: #aaa49a;
  transition: .2s
}

.footer a:hover {
  color: var(--mustard)
}

.page-hero {
  min-height: 390px
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem)
}

.notice {
  border: 1px dashed rgba(198, 161, 91, .45);
  padding: 16px;
  color: #bdb7ac;
  background: rgba(198, 161, 91, .04)
}

@media(max-width:900px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .desktop-nav {
    display: none
  }

  .mobile-menu {
    display: block
  }

  .hero {
    min-height: 520px
  }
}

@media(max-width:600px) {
  .container-x {
    width: min(100% - 24px, 1180px)
  }

  .topbar .container-x {
    padding: 8px 0
  }

  .logo-img {
    width: 62px;
    height: 62px
  }

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

  .product-img-wrap {
    height: 240px
  }

  .section {
    padding: 65px 0
  }

  .hero-content {
    padding: 70px 0
  }

  .hero h1 {
    font-size: 3.2rem
  }

  .hero p {
    font-size: .96rem
  }
}


/* =========================================================
   RESPONSIVE BLACK + YELLOW VISUAL UPGRADE
   ========================================================= */
:root {
  --black: #0b0b09;
  --black2: #11110f;
  --yellow: #e0b84f;
  --yellow-bright: #f1cf69;
  --brown: #6f4e22;
  --cream: #f7efd9;
  --paper: #fffaf0;
  --ink: #17130d;
  --muted: #655e51;
  --line: rgba(224, 184, 79, .35);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden
}

body {
  background: var(--cream);
  color: var(--ink)
}

.topbar {
  background: #050504;
  color: #cfc7b7;
  border-color: rgba(224, 184, 79, .28)
}

.topbar a {
  color: #e4c76e
}

.navbar {
  background: rgba(8, 8, 7, .96);
  border-bottom: 1px solid rgba(224, 184, 79, .42)
}

.logo-img {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(224, 184, 79, .08)
}

.nav-link {
  color: #f5eedf
}

.nav-link:hover {
  color: var(--yellow-bright)
}

.nav-link::after {
  background: var(--yellow)
}

.mobile-menu {
  border-color: var(--yellow) !important;
  color: var(--yellow) !important;
  background: transparent !important
}

#mobileNav {
  background: #0b0b09 !important;
  border-color: rgba(224, 184, 79, .35) !important
}

.hero {
  background: #080807;
  min-height: 590px
}

.hero::after {
  background: linear-gradient(90deg, rgba(7, 7, 6, .86) 0%, rgba(9, 9, 7, .6) 45%, rgba(9, 9, 7, .22) 100%)
}

.hero-bg {
  opacity: .62;
  filter: saturate(1) contrast(1.05)
}

.eyebrow,
.section-kicker {
  color: var(--yellow) !important
}

.hero h1 {
  color: #fff8e9
}

.hero p {
  color: #ded5c4
}

.btn-primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #100e08 !important
}

.btn-primary:hover {
  background: var(--yellow-bright);
  border-color: var(--yellow-bright)
}

.btn-outline {
  background: #0d0d0b;
  border-color: var(--yellow);
  color: #fff6e5 !important
}

.btn-outline:hover {
  background: var(--yellow);
  color: #111 !important;
  border-color: var(--yellow)
}

.section {
  background: var(--cream);
  color: var(--ink)
}

.section-title {
  color: var(--ink) !important
}

.section-intro {
  color: var(--muted) !important
}

.divider {
  background: linear-gradient(90deg, var(--yellow), rgba(224, 184, 79, 0))
}

.stat {
  background: #11110f;
  border-color: rgba(224, 184, 79, .4);
  color: #fff8e8;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .1)
}

.stat strong {
  color: var(--yellow)
}

.stat span {
  color: #cfc6b6
}

.card,
.person-card,
.product-card,
.contact-box {
  background: var(--paper);
  border-color: rgba(111, 78, 34, .25);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(55, 39, 14, .07)
}

.card:hover,
.person-card:hover,
.product-card:hover {
  border-color: rgba(224, 184, 79, .75);
  box-shadow: 0 18px 40px rgba(55, 39, 14, .13)
}

.card h3,
.person-card h3,
.product-card h3 {
  color: var(--ink) !important
}

.card p,
.person-card .phone,
.product-card p {
  color: var(--muted) !important
}

.person-card h3 {
  color: #805c25 !important
}

.person-card .phone {
  color: #282218 !important
}

.quote {
  background: rgba(224, 184, 79, .12);
  border-left-color: var(--yellow);
  color: #403824
}

.form-field {
  background: #fffdf8;
  border-color: #cdbd9d;
  color: #17130d
}

.form-field::placeholder {
  color: #8c8270
}

.form-field:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(224, 184, 79, .14)
}

.notice {
  background: rgba(224, 184, 79, .1);
  border-color: rgba(111, 78, 34, .42);
  color: #5b503d
}

.product-group {
  background: var(--cream);
  padding-top: 70px
}

.product-img-wrap {
  background: #e8dcc2
}

.product-no {
  background: #0b0b09;
  border-color: var(--yellow);
  color: var(--yellow-bright)
}

.footer {
  background: #070706;
  border-top-color: rgba(224, 184, 79, .4)
}

.footer a {
  color: #d3c8b6
}

.footer a:hover {
  color: var(--yellow-bright)
}

.footer .text-\[\#8f8a82\] {
  color: #aaa18f !important
}

.footer .border-t {
  border-color: rgba(224, 184, 79, .18) !important
}

/* Keep long product/category rows usable on phones */
.product-category-nav {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding-bottom: .35rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch
}

.product-category-nav a {
  flex: 0 0 auto;
  white-space: nowrap
}

/* Below tablet: wrap the pills onto multiple rows instead of relying on a hidden
   horizontal swipe, so every category stays visible and reachable on phones. */
@media(max-width:680px) {
  .product-category-nav {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: .4rem
  }

  .product-category-nav a {
    flex: 0 1 auto;
    font-size: .76rem !important;
    padding: .5rem .6rem !important
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .container-x {
    width: min(100% - 32px, 1180px)
  }

  .desktop-nav {
    gap: 1.25rem
  }

  .hero-content {
    padding: 78px 0
  }

  .hero {
    min-height: 540px
  }

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

/* Mobile */
@media (max-width: 768px) {
  .container-x {
    width: calc(100% - 28px)
  }

  .topbar .container-x {
    font-size: .72rem;
    line-height: 1.5;
    justify-content: center;
    text-align: center
  }

  .topbar .container-x>div:last-child {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: .7rem
  }

  .navbar>.container-x {
    height: 72px
  }

  .logo-img {
    width: 56px;
    height: 56px
  }

  .hero {
    min-height: 620px
  }

  .hero-content {
    padding: 76px 0 60px
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
    line-height: .98;
    letter-spacing: -.04em
  }

  .hero p {
    font-size: .94rem;
    line-height: 1.7
  }

  .page-hero {
    min-height: 430px
  }

  .page-hero h1 {
    font-size: clamp(2.5rem, 11vw, 4rem)
  }

  .section {
    padding: 60px 0
  }

  .section-title {
    font-size: clamp(2rem, 9vw, 3rem)
  }

  .grid.grid-cols-2.md\:grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

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

  .product-img-wrap {
    height: 190px
  }

  .product-card .p-5 {
    padding: 16px !important
  }

  .product-card h3 {
    font-size: 1rem !important;
    line-height: 1.35
  }

  .product-card p {
    font-size: .78rem !important;
    line-height: 1.5
  }

  .person-card {
    min-height: 0;
    padding: 20px
  }

  .contact-box {
    padding: 22px
  }

  .footer .grid {
    grid-template-columns: 1fr !important
  }

  .footer {
    padding-bottom: 20px
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container-x {
    width: calc(100% - 22px)
  }

  .topbar {
    font-size: .69rem
  }

  .topbar .container-x {
    padding: 7px 0
  }

  .navbar>.container-x {
    height: 66px
  }

  .logo-img {
    width: 50px;
    height: 50px
  }

  .hero {
    min-height: 650px
  }

  .hero-content {
    padding: 70px 0 50px
  }

  .hero h1 {
    font-size: 2.65rem
  }

  .hero p {
    font-size: .9rem
  }

  .hero .flex.flex-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px
  }

  .hero .btn-primary,
  .hero .btn-outline {
    width: 100%
  }

  .stat {
    padding: 18px 14px
  }

  .stat strong {
    font-size: 1.85rem
  }

  .stat span {
    font-size: .72rem
  }

  .grid.grid-cols-2.md\:grid-cols-4 {
    grid-template-columns: 1fr 1fr
  }

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

  .product-img-wrap {
    height: 235px
  }

  .page-hero {
    min-height: 430px
  }

  .product-group {
    padding: 55px 0 5px
  }

  .section-kicker {
    font-size: .65rem;
    letter-spacing: .16em
  }

  .quote {
    padding: 16px 18px;
    font-size: .9rem
  }
}

/* Accessibility / touch targets */
@media (hover:none) {

  .product-card:hover,
  .card:hover,
  .person-card:hover {
    transform: none
  }
}


/* =========================================================
   HOME RESTORE + RESPONSIVE MOBILE NAVIGATION
   ========================================================= */
.hero-accent {
  color: var(--yellow)
}

.home-hero {
  isolation: isolate
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px
}

.hero-collage {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 420px
}

.hero-collage-img {
  position: absolute;
  overflow: hidden;
  background: #1c1a15;
  border: 1px solid rgba(224, 184, 79, .35);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .5)
}

.hero-collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.hero-collage-img--1 {
  width: 225px;
  height: 280px;
  top: 0;
  right: 0;
  z-index: 2;
  border-radius: 8px;
  transform: rotate(2deg)
}

.hero-collage-img--2 {
  width: 180px;
  height: 225px;
  left: 0;
  bottom: 70px;
  z-index: 3;
  border-radius: 8px;
  transform: rotate(-4deg)
}

.hero-collage-img--3 {
  width: 130px;
  height: 130px;
  right: 70px;
  bottom: 0;
  z-index: 4;
  border-radius: 50%;
  border-width: 3px
}

.hero-badge-card {
  position: absolute;
  left: 6px;
  top: 26px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0d0d0b;
  border: 1px solid rgba(224, 184, 79, .4);
  padding: 13px 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  border-radius: 6px;
  max-width: 200px
}

.hero-badge-card--alt {
  left: auto;
  right: 0;
  top: auto;
  bottom: 44px;
  max-width: 175px
}

.hero-badge-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--yellow);
  color: #100e08;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem
}

.hero-badge-card strong {
  display: block;
  color: #fff8e9;
  font-size: .85rem;
  line-height: 1.25
}

.hero-badge-card span {
  display: block;
  color: #c9c0b0;
  font-size: .68rem;
  margin-top: 3px;
  letter-spacing: .02em
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 78% 48%, rgba(224, 184, 79, .18), transparent 30%), linear-gradient(90deg, rgba(5, 5, 4, .82) 0%, rgba(7, 7, 5, .55) 48%, rgba(7, 7, 5, .15) 100%)
}

.home-hero .hero-content {
  z-index: 3
}

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

.home-product-card {
  overflow: hidden;
  border: 1px solid rgba(111, 78, 34, .25);
  background: #fffaf0;
  box-shadow: 0 10px 30px rgba(55, 39, 14, .08);
  transition: transform .3s, border-color .3s, box-shadow .3s
}

.home-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 184, 79, .75);
  box-shadow: 0 20px 42px rgba(55, 39, 14, .14)
}

.home-product-image {
  height: 210px;
  position: relative;
  overflow: hidden;
  background: #e7dac0
}

.home-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s
}

.home-product-card:hover .home-product-image img {
  transform: scale(1.07)
}

.home-product-image span {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #0b0b09;
  color: var(--yellow-bright);
  border: 1px solid var(--yellow);
  padding: 4px 8px;
  font-size: .7rem;
  font-weight: 800
}

.home-product-body {
  padding: 21px
}

.product-label {
  font-size: .65rem;
  letter-spacing: .17em;
  color: #9a7028;
  font-weight: 800
}

.home-product-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  margin: .55rem 0 0;
  color: #17130d
}

.home-product-body p {
  font-size: .86rem;
  line-height: 1.6;
  color: #6b6253;
  margin: .5rem 0 1rem
}

.card-link {
  font-size: .82rem;
  font-weight: 800;
  color: #76521f
}

.card-link:hover {
  color: #b0832d
}

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

.category-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #11110f;
  color: #fff8e9;
  border: 1px solid rgba(224, 184, 79, .35);
  transition: .25s
}

.category-cta:hover {
  border-color: var(--yellow);
  transform: translateY(-2px)
}

.category-number {
  color: var(--yellow);
  font-size: .75rem;
  font-weight: 800
}

.category-cta b {
  display: block;
  font-size: .9rem
}

.category-cta small {
  display: block;
  color: #aaa18f;
  font-size: .72rem;
  margin-top: 3px
}

.category-cta strong {
  color: var(--yellow);
  font-size: 1.2rem
}

.value-card {
  padding: 28px
}

.value-card p {
  color: #655e51
}

.value-number {
  color: #a77b2b;
  font-weight: 800;
  font-size: 1.1rem
}

.home-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 30px 34px;
  background: #11110f;
  color: #fff8e9;
  border: 1px solid rgba(224, 184, 79, .35)
}

.home-bottom-cta h2 {
  color: #fff8e9
}

/* Strong mobile navigation: no Tailwind hidden class dependency */
.mobile-menu {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--yellow);
  background: #0b0b09;
  color: var(--yellow);
  cursor: pointer
}

.menu-bars {
  width: 22px;
  display: grid;
  gap: 5px
}

.menu-bars i {
  height: 2px;
  width: 100%;
  background: currentColor;
  display: block;
  transition: .25s
}

.mobile-nav-panel {
  display: none;
  background: #080807;
  border-top: 1px solid rgba(224, 184, 79, .35);
  box-shadow: 0 18px 30px rgba(0, 0, 0, .28)
}

.mobile-nav-panel.open {
  display: block
}

.mobile-nav-inner {
  padding: 12px 0 18px;
  display: grid;
  gap: 5px
}

.mobile-nav-inner a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 14px;
  color: #f8f0df;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 1rem
}

.mobile-nav-inner a:hover,
.mobile-nav-inner a:focus {
  color: var(--yellow);
  border-color: rgba(224, 184, 79, .3);
  background: rgba(224, 184, 79, .06)
}

.mobile-nav-inner a span {
  color: #a98a4e;
  font-size: .7rem;
  letter-spacing: .1em
}

.mobile-nav-inner .mobile-enquire {
  margin-top: 7px;
  background: var(--yellow);
  color: #11100b;
  border-color: var(--yellow);
  justify-content: center;
  gap: 10px
}

.mobile-nav-inner .mobile-enquire span {
  color: #11100b
}

@media(max-width:1024px) {
  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .category-cta-grid {
    grid-template-columns: 1fr
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .hero-visual {
    order: -1;
    min-height: 340px;
    margin-bottom: 10px
  }

  .hero-collage {
    max-width: 300px;
    height: 320px
  }

  .hero-collage-img--1 {
    width: 190px;
    height: 235px
  }

  .hero-collage-img--2 {
    width: 150px;
    height: 190px;
    bottom: 55px
  }

  .hero-collage-img--3 {
    width: 110px;
    height: 110px
  }
}

@media(max-width:900px) {
  .desktop-nav {
    display: none !important
  }

  .mobile-menu {
    display: flex !important
  }

  .navbar>.container-x {
    height: 74px
  }
}

@media(max-width:768px) {
  .home-hero {
    min-height: auto
  }

  .home-hero .hero-content {
    padding: 72px 0 55px
  }

  .hero-glow {
    background: radial-gradient(circle at 75% 35%, rgba(224, 184, 79, .17), transparent 28%), linear-gradient(180deg, rgba(5, 5, 4, .78), rgba(7, 7, 5, .5))
  }

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

  .home-product-image {
    height: 185px
  }

  .home-product-body {
    padding: 16px
  }

  .home-product-body h3 {
    font-size: 1.22rem
  }

  .category-cta-grid {
    grid-template-columns: 1fr
  }

  .home-bottom-cta {
    display: grid;
    padding: 24px 20px
  }

  .home-bottom-cta .btn-primary {
    width: 100%
  }

  .hero-visual {
    min-height: 290px
  }

  .hero-collage {
    max-width: 260px;
    height: 270px
  }

  .hero-collage-img--1 {
    width: 165px;
    height: 200px
  }

  .hero-collage-img--2 {
    width: 130px;
    height: 165px;
    bottom: 45px
  }

  .hero-collage-img--3 {
    width: 95px;
    height: 95px;
    right: 40px
  }

  .hero-badge-card {
    padding: 10px 12px;
    max-width: 170px
  }

  .hero-badge-card--alt {
    bottom: 30px
  }

  .hero-badge-icon {
    width: 28px;
    height: 28px;
    font-size: .75rem
  }

  .hero-badge-card strong {
    font-size: .78rem
  }

  .hero-badge-card span {
    font-size: .62rem
  }
}

@media(max-width:520px) {
  .mobile-menu {
    width: 43px;
    height: 43px
  }

  .home-product-grid {
    grid-template-columns: 1fr
  }

  .home-product-image {
    height: 225px
  }

  .home-product-body h3 {
    font-size: 1.4rem
  }

  .home-intro .btn-primary {
    width: 100%
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr
  }

  .hero-actions a {
    width: 100%
  }

  .hero-stats {
    margin-top: 35px
  }

  .hero-stats .stat {
    padding: 17px 12px
  }

  .hero-stats .stat strong {
    font-size: 1.55rem
  }
}

.text-clr {
  color: #000000;
}