/* ============================================
   SANTILLAN JEWELERS — REDESIGN
   Aesthetic: Quiet Luxury / Modern Atelier
   ============================================ */

/* ---- Custom Properties ---- */
:root {
  --sj-black: #0f0d0a;
  --sj-charcoal: #2d2926;
  --sj-text: #3d3529;
  --sj-muted: #907e6b;
  --sj-tan: #c5b5a4;
  --sj-border: #e5ddd2;
  --sj-cream: #f9f6f1;
  --sj-offwhite: #fdfcfa;
  --sj-gold: #b8956a;
  --sj-gold-light: #d4b896;
  --sj-gold-dark: #96753e;
  --sj-gold-pale: #f0e6d8;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Outfit', 'Helvetica Neue', Helvetica, sans-serif;

  --header-h: 80px;
  --container: 1400px;
  --container-wide: 1600px;
  --gap: 32px;
  --section-pad: clamp(40px, 5vw, 70px);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}


/* ---- Base Reset & Override ---- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body) !important;
  font-weight: 300;
  color: var(--sj-tan);
  background: var(--sj-black) !important;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 320px !important;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

/* Simple Banner: must sit below header dropdowns */
.simple-banner {
  z-index: 900 !important;
}

/* Hide notification banner on homepage (hero replaces it) */
body.home .simple-banner {
  display: none !important;
}

/* Override old theme wrappers */
#outerWrapper,
#wrapper {
  background: none !important;
  max-width: none !important;
}

/* Hide old header & footer */
#header { display: none !important; }
#outerHeader { display: none !important; }
#outerFooter { display: none !important; }

/* Reset Bootstrap 2.3 core */
.container-fluid { padding: 0; max-width: none; }
.row-fluid { margin: 0; }
#outerMain.containerHold { width: auto; max-width: 100%; }
.row-fluid::before,
.row-fluid::after { display: none; }


/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--sj-cream);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 300; }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

a {
  color: var(--sj-gold);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
a:hover { color: var(--sj-gold-dark); }

img { max-width: 100%; height: auto; }

p { margin: 0 0 16px; }


/* ---- Utility ---- */
.sj-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.sj-container--wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gap);
}


/* ============================================
   HEADER
   ============================================ */
.sj-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: all 0.4s var(--ease);
  background: var(--sj-black);
  border-bottom: 1px solid rgba(184, 149, 106, 0.12);
}

.sj-header--scrolled {
  background: rgba(15, 13, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.3);
  height: 70px;
}

.sj-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* Logo */
.sj-logo img {
  height: 50px;
  width: auto;
  transition: height 0.4s var(--ease);
  filter: brightness(0) invert(1);
}
.sj-header--scrolled .sj-logo img {
  height: 40px;
}

/* Navigation */
.sj-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sj-nav__list,
.sj-nav__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sj-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}

.sj-nav__list > li > a {
  display: block;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sj-cream);
  text-decoration: none;
  position: relative;
  transition: color 0.3s var(--ease);
}

.sj-nav__list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--sj-gold);
  transition: all 0.3s var(--ease-out);
  transform: translateX(-50%);
}

.sj-nav__list > li > a:hover,
.sj-nav__list > li.current-menu-item > a,
.sj-nav__list > li.current-menu-parent > a,
.sj-nav__list > li.current_page_item > a {
  color: var(--sj-gold);
}

.sj-nav__list > li > a:hover::after,
.sj-nav__list > li.current-menu-item > a::after,
.sj-nav__list > li.current-menu-parent > a::after,
.sj-nav__list > li.current_page_item > a::after {
  width: calc(100% - 32px);
}

/* Remove the >> arrow from mobile-only menu JS */
.sj-nav__list > li > a > span { display: none; }

/* Dropdown menus */
.sj-nav__list > li {
  position: relative;
}

.sj-nav__list .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: var(--sj-charcoal);
  border: 1px solid rgba(184, 149, 106, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 100;
  pointer-events: none;
}

.sj-nav__list > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.sj-nav__list .sub-menu li a {
  display: block;
  padding: 8px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--sj-tan);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s var(--ease);
}

.sj-nav__list .sub-menu li a:hover {
  color: var(--sj-gold);
  padding-left: 28px;
}

/* Nested sub-menu */
.sj-nav__list .sub-menu .sub-menu {
  position: static;
  transform: none;
  min-width: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 0 0 12px;
  opacity: 1;
  visibility: visible;
  border-left: 1px solid rgba(184, 149, 106, 0.15);
  margin: 4px 0 4px 24px;
}

/* Header actions */
.sj-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sj-header__phone {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--sj-cream);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.3s;
}
.sj-header__phone:hover { color: var(--sj-gold); }

/* Hamburger toggle */
.sj-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.sj-nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--sj-cream);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.sj-nav-toggle.active span {
  background: var(--sj-cream);
}
.sj-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.sj-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.sj-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.sj-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 13, 10, 0.97);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: calc(var(--header-h) + 24px) var(--gap) 60px;
  overflow-y: auto;
}

.sj-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sj-mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.sj-mobile-nav > li > a {
  display: block;
  color: var(--sj-cream);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  padding: 14px 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.sj-mobile-nav > li > a:hover {
  color: var(--sj-gold);
}

.sj-mobile-nav .sub-menu {
  list-style: none;
  padding: 0 0 10px;
  margin: 0;
}
.sj-mobile-nav .sub-menu li a {
  display: block;
  color: var(--sj-tan);
  font-size: 13px;
  padding: 6px 20px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.sj-mobile-nav .sub-menu li a:hover {
  color: var(--sj-gold);
}

.sj-mobile-contact {
  margin-top: 40px;
  text-align: center;
}
.sj-mobile-contact a {
  display: block;
  color: var(--sj-gold);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 10px;
  text-decoration: none;
}
.sj-mobile-contact .sj-mobile-address {
  color: var(--sj-tan);
  font-family: var(--font-body);
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.8;
}
.sj-mobile-contact .sj-mobile-directions {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--sj-gold);
  color: var(--sj-gold);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.sj-mobile-contact .sj-mobile-directions:hover {
  background: var(--sj-gold);
  color: var(--sj-black);
}

/* Transparent header on homepage hero */
body.home .sj-header:not(.sj-header--scrolled) {
  background: transparent;
  border-bottom-color: transparent;
}
body.home .sj-header:not(.sj-header--scrolled) .sj-logo img {
  filter: brightness(0) invert(1);
}
body.home .sj-header:not(.sj-header--scrolled) .sj-nav__list > li > a {
  color: var(--sj-cream);
}
body.home .sj-header:not(.sj-header--scrolled) .sj-nav__list > li > a:hover,
body.home .sj-header:not(.sj-header--scrolled) .sj-nav__list > li.current-menu-item > a,
body.home .sj-header:not(.sj-header--scrolled) .sj-nav__list > li.current_page_item > a {
  color: var(--sj-gold);
}
body.home .sj-header:not(.sj-header--scrolled) .sj-header__phone {
  color: var(--sj-cream);
}
body.home .sj-header:not(.sj-header--scrolled) .sj-nav-toggle span {
  background: var(--sj-cream);
}

/* Admin bar fix */
body.admin-bar .sj-header {
  top: 32px;
}
body.admin-bar .sj-mobile-overlay {
  top: 32px;
}


/* ============================================
   HERO / BANNER
   ============================================ */
#banner {
  margin-top: 0 !important;
}

#outerBanner {
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  min-width: 320px;
}

#outerBanner .bx-wrapper {
  max-width: 100% !important;
  margin: 0 !important;
  box-shadow: none !important;
  border: none !important;
  background: none !important;
}

#outerBanner .bx-wrapper .bx-viewport {
  border: none !important;
  box-shadow: none !important;
  background: var(--sj-charcoal) !important;
  left: 0 !important;
}

#outerBanner .bx-wrapper img {
  width: 100%;
  display: block;
}

.home #outerBanner .bx-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
  height: auto;
  margin: 0;
}

#outerBanner .bx-controls .bx-pager {
  margin: 0 auto;
}

#outerBanner .bx-controls .bx-pager .bx-pager-item {
  display: inline-block;
  float: none;
  margin: 0 4px;
}

#outerBanner .bx-controls .bx-pager-item a {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: inline-block;
  margin: 0;
  text-indent: -9999px;
  transition: all 0.3s var(--ease);
}

#outerBanner .bx-controls .bx-pager-item a.active,
#outerBanner .bx-controls .bx-pager-item a:hover {
  background: var(--sj-gold);
  border-color: var(--sj-gold);
}


/* ============================================
   MAIN CONTENT AREA
   ============================================ */
#outerMain {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

#main {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: var(--section-pad) var(--gap);
}

/* Homepage: no padding on #main since we use full-width sections */
body.homepage #main,
body.home #main {
  max-width: 100%;
  padding: 0;
}

#subpageHold {
  padding: 0;
}

/* ---- Subpage warm atmospheric background ---- */
/* Match the homepage's warm brown feel on all interior pages */
body:not(.home):not(.homepage) #outerMain::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(184, 149, 106, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 25%, rgba(184, 149, 106, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 75%, rgba(184, 149, 106, 0.03) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

body:not(.home):not(.homepage) #outerMain {
  position: relative;
}

body:not(.home):not(.homepage) #main {
  position: relative;
  z-index: 1;
}


/* ============================================
   PAGE TITLES
   ============================================ */
.subpage-title,
h1.subpage-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--sj-cream);
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(184, 149, 106, 0.15);
}

/* Subpage article spacing */
#articleOuter article {
  padding-bottom: var(--section-pad);
}


/* ============================================
   SUB NAVIGATION (Category Filters)
   ============================================ */
#subnavigation {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

#subnavigation li {
  list-style: none;
  float: none;
  display: inline-block;
}

#subnavigation li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sj-muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

#subnavigation li a:hover {
  color: var(--sj-cream);
  border-color: rgba(184, 149, 106, 0.3);
}

#subnavigation li.current_page_item a {
  color: var(--sj-cream);
  border-color: var(--sj-gold);
  background: rgba(184, 149, 106, 0.15);
}


/* ============================================
   PRODUCT GRID
   ============================================ */

/* Grid layout for non-bxSlider product listings */
.sj-product-grid,
.blc-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--gap);
  overflow: visible !important;
}

/* Item cards */
.sj-product-grid .item,
.blc-grid .item,
.featured-carousel .item {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  overflow: hidden;
}

.sj-product-grid .item a,
.blc-grid .item a,
.featured-carousel .item a {
  display: block;
  text-decoration: none;
  color: var(--sj-charcoal);
}

.sj-product-grid .item .image,
.blc-grid .item .image,
.featured-carousel .item .image {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sj-charcoal);
  margin-bottom: 16px;
  position: relative;
}

.sj-product-grid .item .image::after,
.blc-grid .item .image::after,
.featured-carousel .item .image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s var(--ease);
  pointer-events: none;
  z-index: 1;
}

.sj-product-grid .item:hover .image::after,
.blc-grid .item:hover .image::after,
.featured-carousel .item:hover .image::after {
  border-color: var(--sj-gold);
}

.sj-product-grid .item .image img,
.blc-grid .item .image img,
.featured-carousel .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.sj-product-grid .item:hover .image img,
.blc-grid .item:hover .image img,
.featured-carousel .item:hover .image img {
  transform: scale(1.05);
}

.sj-product-grid .item .text,
.blc-grid .item .text,
.featured-carousel .item .text {
  display: block;
  padding: 0 4px;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--sj-cream);
  line-height: 1.3;
}

.sj-product-grid .item .text strong,
.blc-grid .item .text strong,
.featured-carousel .item .text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sj-muted);
  margin-bottom: 4px;
}


/* ============================================
   PRODUCT DETAIL
   ============================================ */
.nav-back {
  margin-bottom: 30px;
}

.blc-product-detail {
  padding-bottom: 40px;
}

.nav-back a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sj-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-back a:hover {
  color: var(--sj-gold);
}

/* Two-column product layout */
.sj-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

article .large-img,
.sj-product-layout .large-img {
  overflow: hidden;
  background: var(--sj-charcoal);
  width: 100%;
  float: none;
  margin: 0;
  border-radius: 4px;
  border: 1px solid rgba(184, 149, 106, 0.1);
}
article .large-img img {
  width: 100%;
  display: block;
}

.item-detail,
.sj-product-layout .item-detail {
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px;
  float: none;
  width: 100%;
  margin: 0;
  min-width: 0;
  overflow: hidden;
}

.item-detail .entryTitle,
.item-detail h1.entryTitle {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-transform: none;
  color: #fff;
}

.item-detail .designer,
.item-detail h5.designer {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sj-muted);
  margin: 0 0 20px;
}

.item-detail .entry {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--sj-cream);
  line-height: 1.8;
  margin-bottom: 24px;
}
.item-detail .entry p {
  color: var(--sj-cream);
}

/* Specs */
.blc-specs {
  border-top: 1px solid rgba(184, 149, 106, 0.2);
  padding-top: 20px;
  margin-top: 20px !important;
}

.blc-specs p {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  color: var(--sj-cream) !important;
  margin: 6px 0 !important;
}

.blc-specs strong {
  color: var(--sj-tan) !important;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 6px;
}

/* Alt image thumbnails */
.sj-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.item-detail .sj-thumbnails .add_img-tile,
.sj-thumbnails .add_img-tile,
.add_img-tile {
  display: block;
  float: none !important;
  width: 90px;
  height: 90px;
  overflow: hidden;
  margin: 0;
  background: var(--sj-charcoal);
  border: 1px solid rgba(184, 149, 106, 0.15);
  border-radius: 4px;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.add_img-tile:hover {
  border-color: var(--sj-gold);
  transform: scale(1.05);
}
.item-detail .sj-thumbnails .add_img-tile img,
.sj-thumbnails .add_img-tile img,
.add_img-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none !important;
  max-width: none !important;
}

/* Hint / Inquiry buttons */
.hint-social {
  margin: 30px 0;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 149, 106, 0.15);
  float: none !important;
  clear: both;
}

.drop-hint-btn,
.drop-hint-btn.inline,
a.drop-hint-btn,
.item-detail .drop-hint-btn {
  display: inline-block;
  float: none !important;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sj-black);
  background: var(--sj-gold);
  border: none;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.drop-hint-btn:hover,
a.drop-hint-btn:hover {
  background: var(--sj-gold-dark);
  color: var(--sj-offwhite) !important;
}

/* Socials row */
.socials {
  display: inline-flex;
  gap: 8px;
  margin-left: 16px;
  vertical-align: middle;
}

/* More from designer */
.item-detail-slider {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(184, 149, 106, 0.2);
  clear: both;
}

.item-detail-slider h4 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 30px;
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.sj-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.sj-map-wrap {
  overflow: hidden;
  border: 1px solid rgba(184, 149, 106, 0.15);
}

.sj-map-wrap img,
.sj-map-wrap a {
  display: block;
}

.sj-map-wrap img {
  width: 100%;
  transition: transform 0.6s var(--ease);
}
.sj-map-wrap:hover img {
  transform: scale(1.02);
}

.sj-contact-info h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.sj-contact-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--sj-muted);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.sj-store-details {
  margin: 24px 0;
  font-size: 15px;
  line-height: 2;
}
.sj-store-details strong {
  font-weight: 500;
  color: var(--sj-cream);
}

.sj-phone-big {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--sj-gold);
  text-decoration: none;
  margin: 20px 0;
  transition: color 0.3s;
}
.sj-phone-big:hover {
  color: var(--sj-gold-dark);
}

.sj-contact-actions {
  display: flex;
  gap: 12px;
  margin: 24px 0;
  flex-wrap: wrap;
}

/* Contact page WP editor content */
.sj-contact-info h3 {
  font-family: var(--font-display) !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  color: var(--sj-gold-light) !important;
  text-transform: none !important;
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: 0;
}

.sj-contact-info p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--sj-tan);
}

.sj-contact-info div {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--sj-tan);
}


/* ============================================
   BUTTONS
   ============================================ */
.sj-btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
}

.sj-btn--primary {
  background: var(--sj-gold);
  color: var(--sj-black);
}
.sj-btn--primary:hover {
  background: var(--sj-gold-dark);
  color: var(--sj-offwhite);
}

.sj-btn--outline {
  background: transparent;
  color: var(--sj-cream);
  border: 1px solid rgba(253, 252, 250, 0.3);
}
.sj-btn--outline:hover {
  background: rgba(253, 252, 250, 0.08);
  border-color: var(--sj-cream);
  color: var(--sj-cream);
}

.sj-btn--gold {
  background: var(--sj-gold);
  color: var(--sj-offwhite);
}
.sj-btn--gold:hover {
  background: var(--sj-gold-dark);
  color: var(--sj-offwhite);
}

/* Override old button-wood */
.button-wood,
a.button-wood {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sj-black) !important;
  background: var(--sj-gold);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  background-image: none !important;
}
.button-wood:hover,
a.button-wood:hover {
  background: var(--sj-gold-dark);
  color: var(--sj-offwhite) !important;
}


/* ============================================
   CTA BUTTONS
   ============================================ */
.blc-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px !important;
  padding-top: 0 !important;
}

.blc-cta-buttons .button-wood {
  flex: none;
}

/* Stack CTA buttons inside product detail column */
.sj-product-layout .blc-cta-buttons,
.item-detail .blc-cta-buttons {
  flex-direction: column;
  max-width: 320px;
  margin-top: 30px !important;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 149, 106, 0.12);
}
.sj-product-layout .blc-cta-buttons .button-wood,
.item-detail .blc-cta-buttons .button-wood {
  text-align: center;
}


/* ============================================
   FILTER BAR
   ============================================ */
.blc-secondary-filters {
  margin: 16px 0 0 !important;
  padding-bottom: 0 !important;
}

.blc-filter-form {
  display: flex !important;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.blc-filter-form select {
  height: 40px !important;
  padding: 0 36px 0 16px;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  color: var(--sj-cream) !important;
  border: 1px solid rgba(184, 149, 106, 0.2) !important;
  border-radius: 0;
  background-color: var(--sj-charcoal);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23907e6b' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  transition: border-color 0.3s;
  margin-right: 0 !important;
}
.blc-filter-form select:focus {
  border-color: var(--sj-gold) !important;
  outline: none;
}

.blc-filter-form input[type="text"] {
  height: 40px !important;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--sj-cream);
  border: 1px solid rgba(184, 149, 106, 0.2);
  border-radius: 0;
  background: var(--sj-charcoal);
  width: 200px !important;
  transition: border-color 0.3s;
  margin-right: 0 !important;
}
.blc-filter-form input[type="text"]:focus {
  border-color: var(--sj-gold);
  outline: none;
}


/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  margin: 40px 0 !important;
  text-align: center;
}

.pagination ul {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 4px;
}

.pagination li {
  display: inline-block;
}

.pagination li a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--sj-muted);
  text-decoration: none;
  border: 1px solid rgba(184, 149, 106, 0.2);
  transition: all 0.3s;
}
.pagination li a:hover {
  border-color: var(--sj-gold);
  color: var(--sj-gold);
}
.pagination li.active a {
  background: var(--sj-charcoal);
  border-color: var(--sj-charcoal);
  color: var(--sj-offwhite);
}


/* ============================================
   HOMEPAGE — HERO
   ============================================ */

/* Hide old banner slider on homepage */
body.home #banner,
body.homepage #banner {
  display: none !important;
}

.sj-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sj-black);
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}

/* Atmospheric gradient glow */
.sj-hero__grain {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(184, 149, 106, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 35%, rgba(184, 149, 106, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(184, 149, 106, 0.04) 0%, transparent 40%);
  z-index: 1;
}

/* Film grain texture */
.sj-hero__grain::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
}

/* Decorative inner frame — top pushed below header */
.sj-hero__frame {
  position: absolute;
  top: calc(var(--header-h) + 20px);
  left: 40px;
  right: 40px;
  bottom: 40px;
  border: 1px solid rgba(184, 149, 106, 0.12);
  z-index: 2;
  pointer-events: none;
}

.sj-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 60px 32px;
}

.sj-hero__label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sj-gold);
  margin-bottom: 40px;
}

.sj-hero__title {
  margin: 0;
  line-height: 1;
}

.sj-hero__title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 140px);
  font-weight: 300;
  color: var(--sj-cream);
  letter-spacing: 0.06em;
}

.sj-hero__title-sub {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 300;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--sj-gold-light);
  margin-top: 20px;
}

.sj-hero__divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sj-gold), transparent);
  margin: 36px auto;
}

.sj-hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 300;
  color: var(--sj-tan);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.sj-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Outline button for dark backgrounds */
.sj-btn--outline-light {
  background: transparent;
  color: var(--sj-cream);
  border: 1px solid rgba(253, 252, 250, 0.25);
}
.sj-btn--outline-light:hover {
  background: rgba(253, 252, 250, 0.08);
  border-color: var(--sj-cream);
  color: var(--sj-cream);
}

/* Scroll indicator */
.sj-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sj-hero__scroll span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sj-muted);
}

.sj-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--sj-gold), transparent);
  animation: sj-scroll-pulse 2s ease-in-out infinite;
}

@keyframes sj-scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ============================================
   HOMEPAGE — THREE PILLARS
   ============================================ */
.sj-pillars {
  padding: var(--section-pad) 0;
  background: var(--sj-charcoal);
}

.sj-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.sj-pillar {
  display: block;
  padding: 56px 44px;
  text-decoration: none;
  color: var(--sj-tan);
  border-right: 1px solid rgba(184, 149, 106, 0.12);
  position: relative;
  transition: all 0.5s var(--ease);
}

.sj-pillar:last-child {
  border-right: none;
}

.sj-pillar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sj-gold);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}

.sj-pillar:hover {
  background: rgba(184, 149, 106, 0.08);
}

.sj-pillar:hover::before {
  transform: scaleX(1);
}

.sj-pillar__number {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--sj-gold);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.sj-pillar__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--sj-cream);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.sj-pillar__text {
  font-size: 14px;
  color: var(--sj-muted);
  line-height: 1.9;
  margin: 0 0 28px;
}

.sj-pillar__link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sj-gold);
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
}

.sj-pillar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sj-gold);
  transition: width 0.4s var(--ease-out);
}

.sj-pillar:hover .sj-pillar__link::after {
  width: 100%;
}


/* ============================================
   HOMEPAGE — BRAND STATEMENT
   ============================================ */
.sj-statement {
  background: var(--sj-charcoal);
  padding: clamp(70px, 10vw, 140px) var(--gap);
  position: relative;
  overflow: hidden;
}

/* Subtle corner accents */
.sj-statement::before,
.sj-statement::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(184, 149, 106, 0.15);
}

.sj-statement::before {
  top: 40px;
  left: 40px;
  border-right: none;
  border-bottom: none;
}

.sj-statement::after {
  bottom: 40px;
  right: 40px;
  border-left: none;
  border-top: none;
}

.sj-statement__quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: none;
  padding: 0;
}

.sj-statement__quote p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--sj-cream);
  line-height: 1.55;
  letter-spacing: 0.01em;
  margin: 0 0 28px;
}

.sj-statement__quote cite {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sj-gold);
}


/* ============================================
   HOMEPAGE — VISIT SECTION
   ============================================ */
.sj-visit {
  padding: var(--section-pad) 0;
  background: var(--sj-black);
}

.sj-visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sj-visit__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--sj-cream);
  margin: 0;
}

.sj-visit__divider {
  width: 40px;
  height: 1px;
  background: var(--sj-gold);
  margin: 20px 0 28px;
}

.sj-visit__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.sj-visit__detail {
  display: flex;
  gap: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--sj-tan);
}

.sj-visit__detail-label {
  flex: 0 0 72px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sj-muted);
  padding-top: 3px;
}

.sj-visit__phone {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--sj-gold) !important;
  text-decoration: none;
}
.sj-visit__phone:hover {
  color: var(--sj-gold-dark) !important;
}

.sj-visit__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sj-visit__map {
  overflow: hidden;
  border: 1px solid rgba(184, 149, 106, 0.15);
  min-height: 400px;
}

.sj-visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}

.sj-visit__map a {
  display: block;
}

.sj-visit__map img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
}

.sj-visit__map:hover img {
  transform: scale(1.03);
}


/* ============================================
   HOMEPAGE — SHARED ELEMENTS
   ============================================ */
.sj-divider {
  width: 50px;
  height: 1px;
  background: var(--sj-gold);
  margin: 20px auto;
}

/* CTA Banner Section */
.sj-cta-banner {
  background: var(--sj-charcoal);
  padding: var(--section-pad) var(--gap);
  text-align: center;
}

.sj-cta-banner h2 {
  color: var(--sj-cream);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  margin-bottom: 16px;
}

.sj-cta-banner p {
  color: var(--sj-tan);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sj-cta-banner .sj-divider {
  margin: 20px auto 24px;
}

.sj-cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.sj-cta-banner .sj-btn--gold {
  margin-top: 8px;
}

/* Legacy: home section for WordPress content */
.sj-home-section {
  padding: var(--section-pad) var(--gap);
  max-width: var(--container-wide);
  margin: 0 auto;
}

.sj-home-content {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.sj-home-content .entry {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  color: var(--sj-text);
}


/* ============================================
   ABOUT PAGE (noaside / Full Width)
   ============================================ */
#about-top .motto {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--sj-cream);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Testimonials */
.testimonials {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--sj-cream);
  text-align: center;
  line-height: 1.6;
}

.testimonials em {
  display: block;
  margin-bottom: 16px;
}

.testimonials div div {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sj-muted);
}


/* ============================================
   FOOTER
   ============================================ */
.sj-footer {
  background: var(--sj-black);
  color: var(--sj-tan);
  padding: var(--section-pad) 0 0;
}

.sj-footer__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
}

.sj-footer__col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sj-gold);
  margin-bottom: 24px;
}

.sj-footer__col p {
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 16px;
}

.sj-footer__col a {
  color: var(--sj-tan);
  text-decoration: none;
  transition: color 0.3s;
}
.sj-footer__col a:hover {
  color: var(--sj-gold);
}

.sj-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sj-footer__links li {
  margin-bottom: 12px;
}

.sj-footer__links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.sj-footer__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--sj-gold-light) !important;
  margin: 16px 0;
}
.sj-footer__phone:hover {
  color: var(--sj-gold) !important;
}

.sj-footer__address {
  font-size: 14px;
  line-height: 1.8;
}

.sj-footer__directions {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--sj-gold);
  color: var(--sj-gold);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.sj-footer__directions:hover {
  background: var(--sj-gold);
  color: var(--sj-black);
}

.sj-footer__bar {
  border-top: 1px solid rgba(197, 181, 164, 0.15);
  margin-top: var(--section-pad);
  padding: 24px 0;
}

.sj-footer__bar-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sj-footer__bar p {
  font-size: 12px;
  color: var(--sj-muted);
  letter-spacing: 0.05em;
  margin: 0;
}


/* ============================================
   MODALS
   ============================================ */

/* Modal positioning — centered, fixed to viewport */
.modal.drop-a-hint,
#blc-inquiry-modal {
  position: fixed !important;
  background: var(--sj-charcoal) !important;
  border: 1px solid rgba(184, 149, 106, 0.15) !important;
  border-radius: 4px !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(184, 149, 106, 0.08);
  width: 580px;
  margin: 0 0 0 -290px !important;
  left: 50% !important;
  padding: 40px 44px !important;
  overflow-y: auto;
  max-height: 85vh;
}
.modal.drop-a-hint.fade.in,
#blc-inquiry-modal.fade.in {
  top: 6% !important;
}

/* Container — kill the white background from old CSS */
.modal .contact-modal-container,
.drop-a-hint .contact-modal-container,
.contact-modal-container {
  background: transparent !important;
  background-color: transparent !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

.contact-modal {
  background: transparent !important;
}

/* Close button */
.modal .close,
#blc-inquiry-modal .close {
  font-size: 24px;
  font-weight: 300;
  color: var(--sj-tan);
  opacity: 1;
  text-shadow: none;
  position: absolute;
  right: 16px;
  top: 14px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.3s;
}
.modal .close:hover,
#blc-inquiry-modal .close:hover {
  color: var(--sj-gold);
}

/* Modal heading */
.modal .contact-modal h3,
#blc-inquiry-modal h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--sj-cream);
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(184, 149, 106, 0.15);
}

/* Product info inside modal */
#blc-inquiry-modal .item-title {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  color: #fff !important;
  letter-spacing: 0 !important;
  line-height: 1.4;
  margin-bottom: 4px;
}

#blc-inquiry-modal .item-designer {
  font-size: 12px !important;
  color: var(--sj-tan) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#blc-inquiry-modal .item-link {
  color: var(--sj-tan) !important;
}

/* Form labels */
#blc-inquiry-modal p,
#blc-inquiry-modal #blc-inquiry-form p {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sj-tan) !important;
  margin-bottom: 6px !important;
}

/* Modal form fields */
#blc-inquiry-modal input[type="text"],
#blc-inquiry-modal input[type="email"],
#blc-inquiry-modal input[type="tel"],
#blc-inquiry-modal textarea,
.modal input[type="text"],
.modal input[type="email"],
.modal textarea {
  width: 100% !important;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid rgba(184, 149, 106, 0.2) !important;
  border-radius: 2px;
  background: rgba(15, 13, 10, 0.6) !important;
  color: var(--sj-cream) !important;
  transition: border-color 0.3s;
  box-sizing: border-box;
  height: auto !important;
}

#blc-inquiry-modal textarea {
  min-height: 100px;
  resize: vertical;
}

#blc-inquiry-modal input:focus,
#blc-inquiry-modal textarea:focus,
.modal input:focus,
.modal textarea:focus {
  border-color: var(--sj-gold) !important;
  outline: none;
  box-shadow: 0 0 0 2px rgba(184, 149, 106, 0.1);
}

/* Submit button */
#blc-inquiry-modal .sj-btn--primary,
#blc-inquiry-modal #blc-inq-submit {
  background: var(--sj-gold) !important;
  color: var(--sj-black) !important;
  border: none;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 2px;
}
#blc-inquiry-modal .sj-btn--primary:hover,
#blc-inquiry-modal #blc-inq-submit:hover {
  background: var(--sj-gold-dark) !important;
}

/* Status message */
#blc-inq-status {
  color: var(--sj-cream);
}

/* Modal backdrop — must allow opacity transition for Bootstrap 2 callback */
.modal-backdrop {
  background-color: #000 !important;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.fade.in {
  opacity: 0.75;
}


/* ============================================
   CONTACT FORM 7 OVERRIDE
   ============================================ */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid rgba(184, 149, 106, 0.2);
  border-radius: 0;
  background: var(--sj-charcoal);
  color: var(--sj-cream);
  transition: border-color 0.3s;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: var(--sj-gold);
  outline: none;
}

.wpcf7 input[type="submit"] {
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sj-black);
  background: var(--sj-gold);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--sj-gold);
}


/* ============================================
   GENERIC PAGE CONTENT
   ============================================ */
.sj-page-content {
  max-width: 800px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--sj-tan);
}

.sj-page-content p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--sj-tan);
  margin-bottom: 20px;
}

/* Full-width when page contains catalog or product grid */
.sj-page-content:has(.blc-grid),
.sj-page-content:has(.blc-filters) {
  max-width: none;
}

/* Wider container for product detail pages */
.sj-page-content:has(.blc-product-detail),
.sj-page-content:has(.sj-product-layout) {
  max-width: 1100px;
}

.sj-page-content .entry img {
  margin: 16px 0;
  border-radius: 4px;
}

.sj-page-content .entry h2,
.sj-page-content .entry h3,
.sj-page-content .entry h4 {
  font-family: var(--font-display);
  color: var(--sj-cream);
  margin-top: 36px;
  margin-bottom: 16px;
}

.sj-page-content .entry h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
}

.sj-page-content .entry h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--sj-gold-light);
}

.sj-page-content .entry a {
  color: var(--sj-gold);
  border-bottom: 1px solid rgba(184, 149, 106, 0.3);
  transition: color 0.3s, border-color 0.3s;
}

.sj-page-content .entry a:hover {
  color: var(--sj-gold-light);
  border-color: var(--sj-gold);
}

/* Entry lists */
.sj-page-content .entry ul,
.sj-page-content .entry ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.sj-page-content .entry li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--sj-tan);
  margin-bottom: 6px;
}

/* Strong / bold text */
.sj-page-content strong,
.sj-page-content b {
  color: var(--sj-cream);
  font-weight: 500;
}

/* Hide old sidebar on all pages */
#sidebarOuter,
.sidebar,
#sidebar {
  display: none !important;
}


/* ============================================
   404 PAGE
   ============================================ */
.sj-404 {
  text-align: center;
  padding: clamp(60px, 10vw, 120px) var(--gap);
  max-width: 600px;
  margin: 0 auto;
}

.sj-404__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 300;
  color: rgba(184, 149, 106, 0.15);
  line-height: 1;
  letter-spacing: 0.05em;
}

.sj-404__divider {
  width: 50px;
  height: 1px;
  background: var(--sj-gold);
  margin: 24px auto;
}

.sj-404__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 300;
  color: var(--sj-cream);
  margin: 0 0 16px;
  border: none;
  padding: 0;
}

.sj-404__text {
  font-size: 15px;
  color: var(--sj-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.sj-404__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.sj-404__search {
  border-top: 1px solid rgba(184, 149, 106, 0.2);
  padding-top: 32px;
}

.sj-404__search .searchform,
.sj-404__search .search-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.sj-404__search input[type="text"],
.sj-404__search input[type="search"] {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid rgba(184, 149, 106, 0.2);
  border-radius: 0;
  background: var(--sj-charcoal);
  color: var(--sj-cream);
  transition: border-color 0.3s;
}
.sj-404__search input[type="text"]:focus,
.sj-404__search input[type="search"]:focus {
  border-color: var(--sj-gold);
  outline: none;
}

.sj-404__search input[type="submit"] {
  height: 44px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sj-black);
  background: var(--sj-gold);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.sj-404__search input[type="submit"]:hover {
  background: var(--sj-gold);
}


/* ============================================
   SEARCH RESULTS
   ============================================ */
.sj-search-results {
  max-width: 800px;
}

.sj-search-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(184, 149, 106, 0.12);
}

.sj-search-item:first-child {
  padding-top: 0;
}

.sj-search-item__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 8px;
}

.sj-search-item__title a {
  color: var(--sj-cream);
  text-decoration: none;
  transition: color 0.3s;
}
.sj-search-item__title a:hover {
  color: var(--sj-gold);
}

.sj-search-item__excerpt {
  font-size: 14px;
  color: var(--sj-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.sj-search-item__link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sj-gold);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.sj-search-item__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sj-gold);
  transition: width 0.3s var(--ease-out);
}
.sj-search-item__link:hover::after {
  width: 100%;
}

/* No results state */
.sj-no-results {
  text-align: center;
  padding: 40px 0;
}

.sj-no-results p {
  font-size: 15px;
  color: var(--sj-muted);
  max-width: 500px;
  margin: 0 auto 24px;
}

.sj-no-results__search {
  max-width: 400px;
  margin: 0 auto 32px;
}

.sj-no-results__search .searchform,
.sj-no-results__search .search-form {
  display: flex;
  gap: 8px;
}

.sj-no-results__search input[type="text"],
.sj-no-results__search input[type="search"] {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid rgba(184, 149, 106, 0.2);
  border-radius: 0;
  background: var(--sj-charcoal);
  color: var(--sj-cream);
  transition: border-color 0.3s;
}
.sj-no-results__search input[type="text"]:focus,
.sj-no-results__search input[type="search"]:focus {
  border-color: var(--sj-gold);
  outline: none;
}

.sj-no-results__search input[type="submit"] {
  height: 44px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sj-black);
  background: var(--sj-gold);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.sj-no-results__search input[type="submit"]:hover {
  background: var(--sj-gold);
}

.sj-no-results__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================
   ABOUT PAGE
   ============================================ */
.sj-about {
  max-width: 1100px;
  margin: 0 auto;
}

.sj-about__intro {
  max-width: 800px;
  margin: 0 auto 70px;
  text-align: center;
}

.sj-about__motto {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  font-weight: 300;
  color: var(--sj-cream);
  line-height: 1.7;
}

/* Our Story section */
.sj-about__story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.sj-about__story-image {
  overflow: hidden;
  border: 1px solid rgba(184, 149, 106, 0.12);
  position: relative;
}

.sj-about__story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 149, 106, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.sj-about__story-image img {
  width: 100%;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.sj-about__story:hover .sj-about__story-image img {
  transform: scale(1.04);
}

.sj-about__label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sj-gold);
  margin-bottom: 12px;
}

.sj-about__story-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--sj-cream);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.sj-about__story-divider {
  width: 40px;
  height: 1px;
  background: var(--sj-gold);
  margin: 0 0 24px;
}

.sj-about__story-content p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--sj-tan);
  margin: 0 0 16px;
}

/* Values / What Sets Us Apart */
.sj-about__values {
  text-align: center;
  margin-bottom: 80px;
  padding: 60px 0;
  border-top: 1px solid rgba(184, 149, 106, 0.12);
  border-bottom: 1px solid rgba(184, 149, 106, 0.12);
}

.sj-about__values-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--sj-cream);
  margin: 0 0 8px;
}

.sj-about__values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
  text-align: center;
}

.sj-about__value-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--sj-gold);
  line-height: 1;
  margin-bottom: 16px;
}

.sj-about__value h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sj-cream);
  margin: 0 0 12px;
}

.sj-about__value p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: var(--sj-muted);
  margin: 0;
}

/* About CTA */
.sj-about__cta {
  text-align: center;
  padding: 60px 0;
}

.sj-about__cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--sj-cream);
  margin: 0 0 12px;
}

.sj-about__cta p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--sj-tan);
  max-width: 550px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.sj-about__cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Testimonials */
.sj-testimonials {
  text-align: center;
  margin-bottom: 60px;
}

.sj-testimonials__heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--sj-cream);
  margin-bottom: 8px;
}

.sj-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.sj-testimonial {
  border: none;
  margin: 0;
  padding: 32px;
  background: var(--sj-charcoal);
  position: relative;
}

.sj-testimonial::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 60px;
  color: rgba(184, 149, 106, 0.2);
  line-height: 1;
}

.sj-testimonial p {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--sj-cream);
  line-height: 1.7;
  margin: 0 0 16px;
  position: relative;
}

.sj-testimonial cite {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sj-muted);
}

/* About responsive */
@media (max-width: 979px) {
  .sj-about__story {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sj-about__values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .sj-about__intro {
    margin-bottom: 48px;
  }

  .sj-about__story {
    margin-bottom: 48px;
    gap: 24px;
  }

  .sj-about__values {
    margin-bottom: 48px;
    padding: 40px 0;
  }

  .sj-about__values-grid {
    gap: 32px;
  }

  .sj-about__cta {
    padding: 40px 0;
  }

  .sj-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* ============================================
   SERVICES PAGE
   ============================================ */

/* Override old .page-id-11 rules from less.css that use #articleOuter ID specificity */
.page-id-11 #articleOuter article p {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  line-height: 1.9 !important;
  color: var(--sj-tan) !important;
}

.page-id-11 #articleOuter article .sj-services__intro p {
  font-family: var(--font-display) !important;
  font-size: clamp(18px, 2.2vw, 24px) !important;
  color: var(--sj-cream) !important;
  line-height: 1.7 !important;
}

.page-id-11 #articleOuter article .sj-services__cta p {
  font-size: 16px !important;
}

.page-id-11 #articleOuter article img {
  box-shadow: none !important;
}

.page-id-11 #articleOuter article a:not(.sj-service__link):not(.sj-btn) {
  margin-top: 0 !important;
}

.page-id-11 #articleOuter article .sj-service__link {
  color: var(--sj-gold) !important;
  margin-top: 8px !important;
}

.page-id-11 h3 {
  font-family: var(--font-body) !important;
  color: var(--sj-cream) !important;
  text-transform: none !important;
}

.page-id-11 h2 {
  color: var(--sj-cream) !important;
}

.sj-services {
  max-width: 1100px;
  margin: 0 auto;
}

.sj-services__intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.sj-services__intro p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: var(--sj-cream);
  line-height: 1.7;
  margin: 0;
}

/* Individual service block */
.sj-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.sj-service--reverse {
  direction: rtl;
}

.sj-service--reverse > * {
  direction: ltr;
}

.sj-service__image {
  overflow: hidden;
  border: 1px solid rgba(184, 149, 106, 0.12);
  position: relative;
}

.sj-service__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 149, 106, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.sj-service__image img {
  width: 100%;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.sj-service:hover .sj-service__image img {
  transform: scale(1.04);
}

.sj-service__content {
  padding: 20px 0;
}

.sj-service__number {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--sj-gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.sj-service__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--sj-cream);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.sj-service__divider {
  width: 40px;
  height: 1px;
  background: var(--sj-gold);
  margin: 0 0 24px;
}

.sj-service__content p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--sj-tan);
  margin: 0 0 16px;
}

.sj-service__link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sj-gold);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  margin-top: 8px;
  border-bottom: none;
}

.sj-service__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sj-gold);
  transition: width 0.4s var(--ease-out);
}

.sj-service__link:hover::after {
  width: 100%;
}

/* Services CTA */
.sj-services__cta {
  text-align: center;
  padding: 60px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(184, 149, 106, 0.12);
}

.sj-services__cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--sj-cream);
  margin: 0 0 12px;
}

.sj-services__cta p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--sj-tan);
  max-width: 550px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.sj-services__cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Services responsive */
@media (max-width: 979px) {
  .sj-service {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }

  .sj-service--reverse {
    direction: ltr;
  }
}

@media (max-width: 767px) {
  .sj-services__intro {
    margin-bottom: 40px;
  }

  .sj-service {
    margin-bottom: 48px;
    gap: 24px;
  }

  .sj-service__content {
    padding: 0;
  }

  .sj-services__cta {
    padding: 40px 0;
  }
}


/* ============================================
   GALLERY
   ============================================ */
.sj-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap);
  margin-top: 32px;
}

.sj-gallery__item {
  overflow: hidden;
}

.sj-gallery__item a {
  display: block;
  overflow: hidden;
  background: var(--sj-charcoal);
}

.sj-gallery__item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.sj-gallery__item:hover img {
  transform: scale(1.05);
}

.sj-gallery__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  margin: 12px 0 4px;
  color: var(--sj-cream);
}

.sj-gallery__caption {
  font-size: 13px;
  color: var(--sj-muted);
  margin: 0;
}


/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.sj-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.sj-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sj-reveal--delay-1 { transition-delay: 0.1s; }
.sj-reveal--delay-2 { transition-delay: 0.2s; }
.sj-reveal--delay-3 { transition-delay: 0.3s; }
.sj-reveal--delay-4 { transition-delay: 0.4s; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .sj-nav__list > li > a {
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 979px) {
  .sj-nav { display: none; }
  .sj-nav-toggle { display: flex; }
  .sj-header__phone { display: none; }

  .sj-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sj-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .sj-footer__directions {
    margin-top: 12px;
  }

  .sj-footer__bar-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .sj-product-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .item-detail {
    padding-left: 0 !important;
    margin-top: 0;
  }

  /* Homepage pillars stack */
  .sj-pillars__grid {
    grid-template-columns: 1fr;
  }
  .sj-pillar {
    border-right: none;
    border-bottom: 1px solid rgba(184, 149, 106, 0.12);
  }
  .sj-pillar:last-child {
    border-bottom: none;
  }

  /* Homepage visit section */
  .sj-visit__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Hero frame tighter */
  .sj-hero__frame {
    top: calc(var(--header-h) + 12px);
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  /* Statement corner accents */
  .sj-statement::before { top: 20px; left: 20px; width: 50px; height: 50px; }
  .sj-statement::after { bottom: 20px; right: 20px; width: 50px; height: 50px; }

  /* Bootstrap span override for mobile */
  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12,
  [class*="span"] {
    float: none !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 70px;
    --gap: 16px;
  }

  .sj-product-grid,
  .blc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .subpage-title,
  h1.subpage-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .blc-cta-buttons {
    flex-direction: column;
  }
  .blc-cta-buttons .button-wood {
    text-align: center;
  }

  .blc-filter-form {
    flex-direction: column;
    align-items: stretch;
  }
  .blc-filter-form select,
  .blc-filter-form input[type="text"] {
    width: 100% !important;
  }

  .sj-home-section {
    padding: 50px var(--gap);
  }

  #subnavigation {
    gap: 2px;
  }
  #subnavigation li a {
    padding: 8px 14px;
    font-size: 11px;
  }

  /* Hero adjustments */
  .sj-hero {
    min-height: 92vh;
    min-height: 92dvh;
  }
  .sj-hero__frame {
    top: calc(var(--header-h) + 8px);
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .sj-hero__content {
    padding: 40px 20px;
  }
  .sj-hero__label {
    font-size: 10px;
    letter-spacing: 0.3em;
    margin-bottom: 28px;
  }
  .sj-hero__scroll {
    bottom: 24px;
  }

  /* Pillars */
  .sj-pillar {
    padding: 36px 24px;
  }

  /* Visit section */
  .sj-visit__detail {
    flex-direction: column;
    gap: 4px;
  }
  .sj-visit__detail-label {
    flex: none;
  }

  /* Visit map smaller on mobile */
  .sj-visit__map,
  .sj-visit__map iframe {
    min-height: 280px;
  }

  /* CTA buttons stack on mobile */
  .sj-cta-banner__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }



  /* Hero title sizing for small screens */
  .sj-hero__title-main {
    font-size: clamp(48px, 12vw, 140px);
  }
  .sj-hero__title-sub {
    font-size: clamp(14px, 3.5vw, 28px);
  }

  /* Modal responsive */
  .modal.drop-a-hint,
  #blc-inquiry-modal {
    width: 92vw !important;
    margin: 0 0 0 -46vw !important;
    padding: 28px 24px !important;
  }

  /* Statement corners hidden on small screens */
  .sj-statement::before,
  .sj-statement::after {
    display: none;
  }

  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12 {
    width: 100% !important;
  }

  body.admin-bar .sj-header {
    top: 46px;
  }
  body.admin-bar .sj-mobile-overlay {
    top: 46px;
  }
}

@media (max-width: 480px) {
  .sj-product-grid,
  .blc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}


/* Fix dropdown menu links clickability */
.sj-nav__list > li:hover > .sub-menu li,
.sj-nav__list > li:hover > .sub-menu a {
    pointer-events: auto !important;
}


/* Fix Boss Collection search form alignment */
.blc-search-form input {
    margin-bottom: 0 !important;
}

/* Fix Boss Collection PDP inquiry modal form */
#blc-inquiry-modal input[type="text"],
#blc-inquiry-modal input[type="email"],
#blc-inquiry-modal input[type="tel"],
#blc-inquiry-modal textarea {
    border: 1px solid var(--sj-gold) !important;
    background: rgba(15, 13, 10, 0.8) !important;
    color: var(--sj-cream) !important;
    padding: 12px 14px !important;
    font-size: 15px !important;
    border-radius: 4px !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

#blc-inquiry-modal input[type="text"]:focus,
#blc-inquiry-modal input[type="email"]:focus,
#blc-inquiry-modal input[type="tel"]:focus,
#blc-inquiry-modal textarea:focus {
    outline: none !important;
    border-color: var(--sj-gold-light) !important;
    box-shadow: 0 0 0 2px rgba(184, 149, 106, 0.2) !important;
}

#blc-inquiry-modal input::placeholder,
#blc-inquiry-modal textarea::placeholder {
    color: var(--sj-muted) !important;
}

#blc-inquiry-modal p {
    color: var(--sj-tan) !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 6px !important;
}

/* ============================================
   SIMPLE MODAL OVERLAY (Boss Collection PDP)
   ============================================ */
/* Base overlay styles - applied when modal is shown */
#blc-inquiry-modal.sj-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.85) !important;
    z-index: 99999 !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 140px 20px 20px 20px !important;
    box-sizing: border-box !important;
    transform: none !important;
    margin: 0 !important;
    overflow-y: auto !important;
}

/* Show overlay when .in class is added OR when inline style sets display:flex */
#blc-inquiry-modal.sj-modal-overlay.in,
#blc-inquiry-modal.sj-modal-overlay[style*="display: flex"],
#blc-inquiry-modal.sj-modal-overlay[style*="display:flex"],
#blc-inquiry-modal.sj-modal-overlay[aria-hidden="false"] {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.sj-modal-content {
    position: relative;
    background: var(--sj-charcoal, #2d2926) !important;
    border: 1px solid rgba(184, 149, 106, 0.15);
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 44px;
}

.sj-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--sj-tan, #c5b5a4);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.3s;
}

.sj-modal-close:hover {
    color: var(--sj-gold, #b8956a);
}

@media (max-width: 767px) {
    .sj-modal-content {
        padding: 28px 24px;
        max-width: 95vw;
    }
}

/* ============================================
   REGULAR PRODUCT PAGE MODAL (#sj-inquiry-modal)
   ============================================ */
#sj-inquiry-modal h3 {
    color: var(--sj-cream, #f5f0e8) !important;
    font-size: 24px !important;
    margin-bottom: 8px !important;
}

#sj-inquiry-modal p:first-of-type {
    color: var(--sj-tan, #c5b5a4) !important;
}

/* Fix Boss Collection PDP inquiry button text color - override .sj-page-content .entry a specificity */
.sj-page-content .entry a.drop-hint-btn,
.sj-page-content .entry .drop-hint-btn,
.entry a.drop-hint-btn,
a.drop-hint-btn.inline {
  color: var(--sj-black) !important;
  border-bottom: none !important;
}


/* Fix CTA banner button alignment - ensure equal heights */
.sj-cta-banner__actions {
  align-items: stretch;
}

.sj-cta-banner__actions .sj-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  box-sizing: border-box;
}

/* Remove extra margin-top that was causing misalignment */
.sj-cta-banner .sj-btn--gold {
  margin-top: 0;
}

/* ============================================================
   BRIDAL PAGE – Sidebar Filter Layout
   ============================================================ */

.sj-bridal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
  padding: 20px 0 40px;
}

.sj-bridal-sidebar {
  position: sticky;
  top: 80px;
}

.sj-bridal-filters__heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}

.sj-bridal-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.sj-bridal-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.12);
  color: #e0d8cc;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}
.sj-bridal-tag:hover { background: rgba(255,255,255,0.2); color: #fff; }
.sj-bridal-tag--clear { background: transparent; border: 1px solid rgba(255,255,255,0.25); }

.sj-bridal-filter-group {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sj-bridal-filter-group__title {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 13px 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #bfb8ae;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}

.sj-bridal-filter-group__title::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.sj-bridal-filter-group.open .sj-bridal-filter-group__title::after {
  transform: rotate(45deg);
}

.sj-bridal-filter-list {
  list-style: none;
  margin: 0;
  padding: 0 0 12px;
  display: none;
}

.sj-bridal-filter-group.open .sj-bridal-filter-list {
  display: block;
}

.sj-bridal-filter-item a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}

.sj-bridal-filter-item a:hover,
.sj-bridal-filter-item.active a {
  color: #fff;
}

.sj-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: inline-flex;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
}

.sj-bridal-filter-item.active .sj-dot {
  background: #c9a96e;
  border-color: #c9a96e;
}

.sj-bridal-filter-item a:hover .sj-dot {
  border-color: rgba(255,255,255,0.7);
}

.sj-bridal-products {
  min-width: 0;
}

.sj-bridal-results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.sj-bridal-clear-all {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
}
.sj-bridal-clear-all:hover { color: #fff; }

.sj-bridal-empty {
  grid-column: 1 / -1;
  padding: 40px 0;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
}

.sj-bridal-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 32px;
  align-items: center;
}

.sj-bridal-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.sj-bridal-page-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.sj-bridal-page-btn.current {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #fff;
}

.sj-bridal-page-more {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  padding-left: 6px;
}

@media (max-width: 900px) {
  .sj-bridal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sj-bridal-sidebar {
    position: static;
  }
  .sj-bridal-filter-list {
    display: block; 
  }
  .sj-bridal-filter-group__title::after {
    display: none;
  }
}
