/* =========================================================
   TABLA TARANG — Luxury Homepage Styles
   ========================================================= */

:root {
  --black: #090909;
  --black-soft: #11100e;
  --dark-brown: #18130e;

  --gold: #c89c50;
  --gold-light: #d8b46d;
  --gold-dark: #967039;

  --ivory: #f3ede2;
  --cream: #e8dece;

  --white: #ffffff;
  --text-light: #e8e2d9;
  --text-muted: #a59d92;

  --border-gold: rgba(200, 156, 80, 0.45);

  --font-head: "Cormorant Garamond", serif;
  --font-body: "Manrope", sans-serif;

  --section-pad: 100px;
  --section-pad-sm: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

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

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.container-xl {
  max-width: 1400px;
}

/* ---------- Eyebrow / section label ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.05;
}

.divider-gold {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 22px;
}
.divider-gold .line {
  width: 46px;
  height: 1px;
  background: var(--border-gold);
}
.divider-gold .sym {
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--gold);
  flex: none;
}
.divider-gold.center {
  justify-content: center;
}

.section-head-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-head-center .divider-gold {
  justify-content: center;
}

/* ---------- Buttons ---------- */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.4s ease;
  white-space: nowrap;
}
.btn-luxury i,
.btn-luxury svg {
  transition: transform 0.35s ease;
}
.btn-luxury:hover i,
.btn-luxury:hover svg {
  transform: translateX(4px);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--black);
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-dark-gold {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline-dark-gold:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-ivory {
  background: transparent;
  color: var(--dark-brown);
  border-color: rgba(24, 19, 14, 0.35);
}
.btn-outline-ivory:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  background: rgba(200, 156, 80, 0.08);
}

.btn-sm-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  border-radius: 2px;
  background: transparent;
  transition: all 0.35s ease;
}
.btn-sm-gold-outline:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: transparent;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom-color: rgba(200, 156, 80, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 144px;
  height: 75px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text .b1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.14em;
  color: var(--white);
}
.brand-text .b2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold-light);
  margin-top: -2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding-bottom: 6px;
}
.main-nav a:hover {
  color: var(--gold-light);
}
.main-nav a.active {
  color: var(--white);
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
}
.main-nav .dropdown-caret {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.25s ease;
}
.main-nav .nav-dropdown {
  position: relative;
}
.main-nav .nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -24px;
  right: -24px;
  height: 22px;
}
.main-nav .nav-dropdown:hover .dropdown-caret,
.main-nav .nav-dropdown:focus-within .dropdown-caret {
  transform: rotate(180deg);
}
.products-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 560px;
  padding: 22px 24px 18px;
  background: rgba(10, 9, 8, 0.98);
  border: 1px solid rgba(200, 156, 80, 0.34);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  z-index: 1100;
}
.main-nav .nav-dropdown:hover .products-dropdown,
.main-nav .nav-dropdown:focus-within .products-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.products-dropdown-title {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.products-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}
.main-nav .products-dropdown-grid a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 156, 80, 0.13);
  color: #d9d2c8;
  font-size: 12px;
  line-height: 1.35;
}
.main-nav .products-dropdown-grid a::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 9px 2px 0;
  background: var(--gold);
  transform: rotate(45deg);
}
.main-nav .products-dropdown-grid a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.main-nav .products-dropdown-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 11px 13px;
  border: 1px solid rgba(200, 156, 80, 0.45);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.main-nav .products-dropdown-all:hover {
  color: var(--black);
  background: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.icon-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 17px;
  padding: 0;
  transition: color 0.3s ease;
}
.icon-btn:hover {
  color: var(--gold-light);
}

/* Mobile offcanvas */
.offcanvas.offcanvas-luxury {
  background: var(--black-soft);
  color: var(--text-light);
  width: 300px;
}
.offcanvas-luxury .offcanvas-header {
  border-bottom: 1px solid var(--border-gold);
}
.offcanvas-luxury .nav-mobile a {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(200, 156, 80, 0.15);
  color: var(--text-light);
}
.offcanvas-luxury .nav-mobile a:hover {
  color: var(--gold-light);
}
.mobile-product-menu {
  border-bottom: 1px solid rgba(200, 156, 80, 0.15);
}
.mobile-product-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: var(--text-light);
  font-family: var(--font-head);
  font-size: 26px;
  cursor: pointer;
  list-style: none;
}
.mobile-product-menu summary::-webkit-details-marker {
  display: none;
}
.mobile-product-menu summary i {
  color: var(--gold);
  font-size: 13px;
  transition: transform 0.25s ease;
}
.mobile-product-menu[open] summary i {
  transform: rotate(180deg);
}
.mobile-product-list {
  display: grid;
  padding: 0 0 12px 13px;
  border-left: 1px solid rgba(200, 156, 80, 0.35);
}
.offcanvas-luxury .nav-mobile .mobile-product-list a {
  padding: 8px 10px;
  border: 0;
  color: #cfc7bb;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.35;
}
.offcanvas-luxury .nav-mobile .mobile-product-list a:hover {
  color: var(--gold-light);
}
.offcanvas-luxury .btn-close {
  filter: invert(1) grayscale(1);
}

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero {
  position: relative;
  min-height: 690px;
  height: 92vh;
  max-height: 850px;
  overflow: hidden;
  background: var(--black);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.hero-slide.active .hero-slide-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.6) 42%,
    rgba(0, 0, 0, 0.18) 75%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 620px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s ease 0.2s,
    transform 0.9s ease 0.2s;
}
.hero-slide.active .hero-text {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-size: clamp(52px, 5vw, 85px);
  font-weight: 400;
  line-height: 0.98;
  color: var(--white);
}
.hero-title .accent {
  color: var(--gold-light);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 460px;
  margin: 20px 0 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.8s ease 0.5s,
    transform 0.8s ease 0.5s;
}
.hero-slide.active .hero-buttons {
  opacity: 1;
  transform: translateY(0);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.35s ease;
}
.hero-arrow:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.hero-arrow.prev {
  left: 26px;
}
.hero-arrow.next {
  right: 26px;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  padding: 0;
  transition: all 0.35s ease;
}
.hero-dots button.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide-img,
  .hero-text,
  .hero-buttons,
  .reveal {
    transition: none !important;
  }
}

/* =========================================================
   HERITAGE SECTION
   ========================================================= */
.heritage-section {
  background: var(--ivory);
  color: var(--dark-brown);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.heritage-section .eyebrow {
  color: var(--gold-dark);
}
.heritage-section h2 {
  color: var(--dark-brown);
  font-size: clamp(32px, 3.4vw, 46px);
}
.heritage-section .divider-gold .line {
  background: rgba(24, 19, 14, 0.3);
}
.heritage-text p {
  color: #4a4136;
  font-size: 15.5px;
  max-width: 460px;
}

.heritage-media {
  position: relative;
}
.heritage-media .architecture-bg {
  position: absolute;
  right: -40px;
  top: -30px;
  width: 70%;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.heritage-media img.main-photo {
  position: relative;
  z-index: 1;
  border-radius: 26px 6px 26px 6px;
  border: 1px solid var(--border-gold);
  filter: sepia(0.15) grayscale(0.15);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* =========================================================
   INSTRUMENT MARQUEE
   ========================================================= */
.marquee-strip {
  background: var(--black);
  border-top: 1px solid rgba(200, 156, 80, 0.15);
  border-bottom: 1px solid rgba(200, 156, 80, 0.15);
  height: 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}
.marquee-track span.item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 19px;
  letter-spacing: 0.06em;
  color: var(--text-light);
  padding: 0 26px;
}
.marquee-track span.item i {
  color: var(--gold);
  font-size: 16px;
}
.marquee-track span.sep {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* =========================================================
   SECTION GENERIC (dark)
   ========================================================= */
.section-dark {
  background: var(--black);
  padding: var(--section-pad) 0;
}

/* =========================================================
   CATEGORIES
   ========================================================= */
.category-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  display: block;
  transition: border-color 0.6s ease;
}
.category-card:hover {
  border-color: var(--gold-light);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img {
  transform: scale(1.08);
}
.category-card .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.05) 55%
  );
}
.category-card .cat-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category-card .cat-name {
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.category-card .cat-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 12px;
  transition:
    transform 0.4s ease,
    background 0.4s ease;
}
.category-card:hover .cat-arrow {
  transform: translateX(4px);
  background: var(--gold);
  color: var(--black);
}

/* =========================================================
   PRODUCT CAROUSEL
   ========================================================= */
.product-carousel-wrap {
  position: relative;
}
.product-track-viewport {
  overflow: hidden;
}
.product-track {
  display: flex;
  gap: 22px;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}
.product-card {
  flex: 0 0 auto;
  width: 270px;
  background: var(--ivory);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.product-card .product-img-wrap {
  background: var(--ivory);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 20px; */
}
.product-card .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card .product-body {
  padding: 0 20px 24px;
  text-align: center;
}
.product-card .product-title {
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--dark-brown);
  margin-bottom: 14px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .btn-sm-gold-outline {
  color: var(--gold-dark);
  border-color: rgba(150, 112, 57, 0.5);
  width: 100%;
  justify-content: center;
}
.product-card .btn-sm-gold-outline:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: transparent;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  flex: none;
}
.carousel-arrow:hover {
  background: var(--gold);
  color: var(--black);
}
.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

/* =========================================================
   CRAFTSMANSHIP
   ========================================================= */
.craft-section {
  background: linear-gradient(120deg, var(--dark-brown), var(--black));
  padding: 0;
}
.craft-media {
  height: 100%;
  min-height: 420px;
}
.craft-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.craft-text {
  padding: var(--section-pad) 60px;
}
.craft-text .eyebrow {
  color: var(--gold);
}
.craft-text h2 {
  font-size: clamp(30px, 3vw, 44px);
  max-width: 460px;
}
.craft-text p {
  color: var(--text-muted);
  max-width: 440px;
  margin-top: 6px;
  font-size: 15px;
}

.craft-features {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 34px;
  margin-top: 40px;
}
.craft-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.craft-feature i {
  color: var(--gold);
  font-size: 18px;
}

/* =========================================================
   STATISTICS
   ========================================================= */
.stats-strip {
  background: var(--ivory);
  padding: 44px 0;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}
.stat-item i {
  font-size: 30px;
  color: var(--gold-dark);
}
.stat-item .stat-value {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--dark-brown);
  line-height: 1.1;
}
.stat-item .stat-label {
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: #6b6152;
  text-transform: uppercase;
}
.stat-sep {
  width: 1px;
  background: rgba(24, 19, 14, 0.15);
  align-self: stretch;
}

/* =========================================================
   FEATURED HARMONIUM
   ========================================================= */
.harmonium-feature {
  position: relative;
  background: var(--black);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.harmonium-feature .mandala-bg {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  opacity: 0.04;
  pointer-events: none;
}
.harmonium-feature .fh-img {
  border-radius: 8px;
  border: 1px solid var(--border-gold);
}
.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
  margin: 26px 0 34px;
}
.spec-list .spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
}
.spec-list .spec i {
  color: var(--gold);
  font-size: 15px;
}

/* =========================================================
   VIDEO SHOWCASE / OWL CAROUSEL
   ========================================================= */
.video-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 62px;
  background:
    radial-gradient(circle at 15% 20%, rgba(200, 156, 80, 0.1), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(200, 156, 80, 0.06), transparent 30%),
    #0b0b0a;
  border-top: 1px solid rgba(200, 156, 80, 0.2);
  border-bottom: 1px solid rgba(200, 156, 80, 0.2);
}
.video-section-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}
.video-section-head .eyebrow {
  margin-bottom: 8px;
}
.video-section-head h2 {
  font-size: clamp(36px, 3.5vw, 50px);
  line-height: 1;
}
.video-section-head .divider-gold {
  margin: 14px 0 12px;
}
.video-section-head p {
  color: var(--text-muted);
  font-size: 14px;
}
.video-carousel {
  position: relative;
  padding: 0 54px;
}
.video-carousel:not(.owl-loaded) {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.video-carousel .owl-stage {
  display: flex;
}
.video-carousel .owl-item {
  display: flex;
}
.video-card {
  width: 100%;
  overflow: hidden;
  background: #15120e;
  border: 1px solid rgba(200, 156, 80, 0.42);
  border-radius: 7px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-light);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #050505;
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-frame video {
  display: block;
  object-fit: cover;
  background: #050505;
}
.video-card-body {
  min-height: 86px;
  padding: 14px 16px 16px;
}
.video-card-body span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.video-card-body h3 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.1;
}
.video-carousel .owl-nav {
  position: absolute;
  z-index: 10;
  top: 42%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  margin: 0;
  transform: translateY(-50%);
  pointer-events: none;
}
.video-carousel.owl-theme .owl-nav button.owl-prev,
.video-carousel.owl-theme .owl-nav button.owl-next {
  width: 40px;
  height: 40px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 180, 109, 0.75);
  border-radius: 50%;
  background: #111;
  color: var(--gold-light);
  font-size: 14px;
  pointer-events: auto;
  transition: background 0.3s ease, color 0.3s ease;
}
.video-carousel.owl-theme .owl-nav button.owl-prev:hover,
.video-carousel.owl-theme .owl-nav button.owl-next:hover {
  background: var(--gold);
  color: var(--black);
}
.video-carousel.owl-theme .owl-dots {
  margin-top: 24px;
}
.video-carousel.owl-theme .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  margin: 4px;
  background: rgba(216, 180, 109, 0.28);
}
.video-carousel.owl-theme .owl-dots .owl-dot.active span,
.video-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--gold);
}

/* =========================================================
   REPAIR & RESTORATION
   ========================================================= */
.repair-section {
  background: var(--ivory);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.repair-section .architecture-bg {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 420px;
  opacity: 0.07;
  pointer-events: none;
}
.repair-section img.repair-photo {
  border-radius: 6px 26px 6px 26px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border-gold);
}
.repair-section h2 {
  color: var(--dark-brown);
  font-size: clamp(30px, 3vw, 44px);
}
.repair-section p.desc {
  color: #4a4136;
  max-width: 440px;
  margin-top: 6px;
  font-size: 15px;
}
.repair-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  margin: 26px 0 34px;
}
.repair-features .rf {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: #4a4136;
}
.repair-features .rf i {
  color: var(--gold-dark);
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  background: var(--black);
  border-top: 1px solid rgba(200, 156, 80, 0.18);
  border-bottom: 1px solid rgba(200, 156, 80, 0.18);
  padding: 46px 0;
}
.final-cta .cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.final-cta .cta-icon img {
  width: 28px;
  height: 28px;
}
.final-cta h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--white);
}
.final-cta p {
  color: var(--text-muted);
  margin-top: 6px;
  font-size: 14px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #0b0b0b;
  border-top: 1px solid var(--border-gold);
  padding: 70px 0 26px;
}
.footer-col h5 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col p,
.footer-col address {
  color: var(--text-muted);
  font-size: 14.5px;
  font-style: normal;
  line-height: 1.8;
}
.footer-col .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-col .footer-brand img {
  width: 143px;
  height: 86  px;
}
.footer-icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-icon-title i {
  color: var(--gold);
  font-size: 18px;
}
.footer-bottom {
  border-top: 1px solid rgba(200, 156, 80, 0.15);
  margin-top: 50px;
  padding-top: 22px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
  border: none;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================================================
   QUOTE MODAL
   ========================================================= */
.modal-luxury .modal-content {
  background: var(--black-soft);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  color: var(--text-light);
}
.modal-luxury .modal-header {
  border-bottom: 1px solid rgba(200, 156, 80, 0.2);
}
.modal-luxury .modal-title {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--white);
}
.modal-luxury .btn-close {
  filter: invert(1) grayscale(1);
}
.modal-luxury label {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.modal-luxury .form-control,
.modal-luxury .form-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 156, 80, 0.25);
  color: var(--text-light);
  border-radius: 2px;
  padding: 10px 14px;
}
.modal-luxury .form-control:focus,
.modal-luxury .form-select:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 156, 80, 0.15);
  color: var(--white);
}
.modal-luxury .form-control::placeholder {
  color: rgba(232, 226, 217, 0.35);
}
.modal-luxury .invalid-feedback {
  font-size: 12px;
}
.modal-success-msg {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.modal-success-msg i {
  font-size: 44px;
  color: var(--gold);
  margin-bottom: 16px;
}
.modal-success-msg p {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--white);
}

/* =========================================================
   SEARCH OVERLAY
   ========================================================= */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 6, 0.98);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 12vh;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.search-overlay.open {
  opacity: 1;
  visibility: visible;
}
.search-overlay .search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 24px;
}
.search-overlay input {
  width: min(700px, 86vw);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-gold);
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 42px);
  padding: 14px 4px;
  text-align: center;
}
.search-overlay input:focus {
  outline: none;
  border-color: var(--gold);
}
.search-overlay input::placeholder {
  color: var(--text-muted);
}
.search-results {
  width: min(700px, 86vw);
  margin-top: 30px;
  max-height: 50vh;
  overflow-y: auto;
}
.search-results .sr-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 6px;
  border-bottom: 1px solid rgba(200, 156, 80, 0.12);
  color: var(--text-light);
  font-size: 15px;
}
.search-results .sr-item span.cat {
  color: var(--text-muted);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.search-empty {
  color: var(--text-muted);
  margin-top: 26px;
  font-size: 14px;
  text-align: center;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition:
    opacity 0.85s cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 0.85s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal-up {
  transform: translateY(40px);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}
.reveal-scale {
  transform: scale(0.94);
}
.reveal {
  transform: translateY(24px);
}

.reveal.in-view,
.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-scale.in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   REFERENCE LAYOUT ALIGNMENT
   Compact editorial rhythm used by the supplied desktop design.
   ========================================================= */
@media (min-width: 992px) {
  :root {
    --section-pad: 32px;
  }

  .container-xl {
    max-width: 1340px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-header {
    padding: 18px 0 12px;
  }
  .site-header .container-xl {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    padding-bottom: 12px;
  }
  .site-header.scrolled {
    padding: 10px 0 0;
  }
  .site-header.scrolled .container-xl {
    padding-bottom: 10px;
  }
  .brand {
    gap: 8px;
    min-width: 156px;
  }
  .brand img {
    width: 144px;
    height: 75px;
  }
  .brand-text .b1 {
    font-size: 15px;
  }
  .brand-text .b2 {
    font-size: 18px;
  }
  .main-nav {
    gap: 34px;
  }
  .main-nav a {
    font-size: 14px;
    padding-bottom: 7px;
  }
  .header-desktop-actions {
    gap: 14px !important;
  }
  .header-desktop-actions .icon-btn + .icon-btn {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 14px;
  }
  .header-desktop-actions .btn-luxury {
    padding: 11px 20px;
    font-size: 11.5px;
  }

  .hero {
    height: 640px;
    min-height: 640px;
    max-height: none;
  }
  .hero-slide-img {
    object-position: center center;
  }
  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.66) 32%,
      rgba(0, 0, 0, 0.16) 68%,
      rgba(0, 0, 0, 0.05) 100%
    );
  }
  .hero-text {
    max-width: 520px;
    padding-top: 42px;
  }
  .hero-title {
    font-size: 62px;
    line-height: 1.02;
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.6;
    max-width: 440px;
    margin: 16px 0 28px;
    color: #eee8df;
  }
  .hero-text .divider-gold {
    margin: 14px 0 12px;
  }
  .hero-buttons {
    gap: 14px;
  }
  .hero-buttons .btn-luxury {
    padding: 14px 24px;
    font-size: 12px;
  }
  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }
  .hero-arrow.prev {
    left: 24px;
  }
  .hero-arrow.next {
    right: 24px;
  }
  .hero-dots {
    bottom: 20px;
    gap: 8px;
  }
  .hero-dots button {
    width: 10px;
    height: 10px;
    background: #fff;
  }
  .hero-dots button.active {
    width: 10px;
    border-radius: 50%;
    background: var(--gold);
  }

  .heritage-section {
    padding: 30px 0;
    min-height: 380px;
    display: flex;
    align-items: center;
    background:
      linear-gradient(rgba(243, 237, 226, 0.94), rgba(243, 237, 226, 0.94)),
      radial-gradient(
        circle at 15% 20%,
        rgba(150, 112, 57, 0.14),
        transparent 38%
      );
  }
  .heritage-section .row {
    --bs-gutter-x: 44px;
  }
  .heritage-section .eyebrow {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .heritage-section h2 {
    font-size: 42px;
    line-height: 1;
  }
  .heritage-section .divider-gold {
    margin: 12px 0 12px;
  }
  .heritage-text p {
    font-size: 14px;
    line-height: 1.65;
    max-width: 430px;
  }
  .heritage-text .btn-luxury {
    margin-top: 18px !important;
    padding: 11px 20px;
    font-size: 11px;
  }
  .heritage-media {
    height: 320px;
  }
  .heritage-media img.main-photo {
    height: 320px;
    aspect-ratio: auto;
    border-radius: 42px 8px 42px 8px;
    object-position: center 48%;
    filter: sepia(0.42) grayscale(0.28) contrast(1.05);
    box-shadow: 0 0 0 5px rgba(200, 156, 80, 0.12);
  }
  .heritage-media .architecture-bg {
    right: -120px;
    top: 45px;
    width: 78%;
    opacity: 0.13;
  }

  .marquee-strip {
    height: 84px;
  }
  .marquee-track span.item {
    font-size: 17px;
    padding: 0 22px;
    color: #c8bba5;
  }
  .marquee-track span.item i {
    font-size: 18px;
  }

  .section-dark {
    background:
      radial-gradient(
        circle at 18% 40%,
        rgba(200, 156, 80, 0.055),
        transparent 30%
      ),
      linear-gradient(115deg, #151513, #090909 72%);
  }
  .section-dark .eyebrow {
    font-size: 11px;
    margin-bottom: 4px;
  }
  .section-dark .divider-gold {
    margin: 6px 0 0;
  }
  .section-dark .section-head-center {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    margin-bottom: 12px;
  }
  .section-dark .section-head-center::before,
  .section-dark .section-head-center::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(200, 156, 80, 0.5));
  }
  .section-dark .section-head-center::after {
    transform: scaleX(-1);
  }
  .section-dark .section-head-center .eyebrow {
    flex: none;
    margin: 0;
  }
  .section-dark .section-head-center .divider-gold {
    display: none;
  }

  #categories {
    padding: 24px 0 12px;
  }
  .category-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 9px;
    margin: 0;
  }
  .category-grid > .col {
    width: auto;
    max-width: none;
    padding: 0;
  }
  .category-card {
    aspect-ratio: 0.93/1;
    border-radius: 5px;
    background: #13120f;
  }
  .category-card .cat-info {
    padding: 12px 10px;
    flex-direction: column;
    gap: 5px;
  }
  .category-card .cat-name {
    font-size: 14px;
    line-height: 1.1;
    text-align: center;
  }
  .category-card .cat-arrow {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  #products {
    padding: 12px 0 28px;
  }
  #products .section-head-center {
    margin-bottom: 16px;
  }
  .product-carousel-wrap {
    padding: 0 50px;
  }
  .product-track {
    gap: 10px;
  }
  .product-card {
    width: calc((100% - 60px) / 6);
    border-radius: 5px;
  }
  .product-card .product-img-wrap {
    /* height: 170px; */
    aspect-ratio: auto;
    /* padding: 4px 0px 0; */
  }
  .product-card .product-body {
    padding: 6px 12px 13px;
  }
  .product-card .product-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    min-height: 38px;
    margin-bottom: 9px;
  }
  .product-card .btn-sm-gold-outline {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 10px;
  }
  .carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    margin: 0;
    pointer-events: none;
    z-index: 12;
  }
  .carousel-controls .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 12px;
    background: #111;
    border-color: rgba(216, 180, 109, 0.8);
    box-shadow: 0 0 0 4px rgba(9, 9, 9, 0.72);
    pointer-events: auto;
  }
  .carousel-controls .carousel-arrow:disabled {
    opacity: 0.8;
  }

  .craft-section {
    position: relative;
    overflow: hidden;
  }
  .craft-section .row {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 300px;
  }
  .craft-section .col-lg-6 {
    width: auto;
    max-width: none;
  }
  .craft-media {
    min-height: 300px;
    height: 300px;
  }
  .craft-media img {
    min-height: 300px;
    height: 300px;
    object-position: center 52%;
  }
  .craft-text {
    padding: 34px 48px;
    position: relative;
    isolation: isolate;
  }
  .craft-text::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: 26px;
    top: 8px;
    background: url("../images/services/mandala.svg") center/contain no-repeat;
    opacity: 0.06;
    z-index: -1;
  }
  .craft-text .eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }
  .craft-text h2 {
    font-size: 42px;
    line-height: 1;
    max-width: none;
  }
  .craft-text .divider-gold {
    margin: 8px 0 8px;
  }
  .craft-text p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 570px;
  }
  .craft-features {
    gap: 14px 28px;
    margin-top: 24px;
  }
  .craft-feature {
    font-size: 12px;
    gap: 8px;
    color: #d6c7b0;
  }
  .craft-feature i {
    font-size: 15px;
  }

  .stats-strip {
    padding: 0;
    min-height: 124px;
    display: flex;
    align-items: center;
  }
  .stats-strip .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
  }
  .stats-strip .row > .col-6 {
    width: auto;
    max-width: none;
    padding: 0;
  }
  .stats-strip .stat-sep {
    display: none !important;
  }
  .stat-item {
    min-height: 70px;
    justify-content: center;
    gap: 14px;
    padding: 0 26px;
    border-right: 1px solid rgba(24, 19, 14, 0.16);
  }
  .stats-strip .row > .col-6:last-of-type .stat-item {
    border-right: 0;
  }
  .stat-item i {
    font-size: 34px;
  }
  .stat-item .stat-value {
    font-size: 30px;
  }
  .stat-item .stat-label {
    font-size: 12px;
    text-transform: none;
  }

  .harmonium-feature {
    min-height: 310px;
    padding: 32px 0;
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.08) 48%,
        rgba(0, 0, 0, 0.82) 66%,
        #080808 100%
      ),
      url("../images/craftsmanship/harmonium-feature-photographic-v2.jpg") 35%
        55% / cover no-repeat;
  }
  .harmonium-feature .row {
    min-height: 246px;
    --bs-gutter-x: 42px;
  }
  .harmonium-feature .fh-img {
    opacity: 0;
    height: 1px;
    pointer-events: none;
  }
  .harmonium-feature .mandala-bg {
    width: 300px;
    opacity: 0.035;
    right: -40px;
  }
  .harmonium-feature .eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }
  .harmonium-feature h2.section-title {
    font-size: 42px !important;
    line-height: 1;
  }
  .harmonium-feature .divider-gold {
    margin: 8px 0;
  }
  .harmonium-feature p {
    font-size: 14px;
    line-height: 1.55;
    max-width: 500px !important;
  }
  .spec-list {
    gap: 8px 24px;
    margin: 16px 0 18px;
    max-width: 500px;
  }
  .spec-list .spec {
    font-size: 12px;
    gap: 7px;
  }
  .spec-list .spec i {
    font-size: 11px;
  }
  .harmonium-feature .btn-luxury {
    padding: 11px 20px;
    font-size: 11px;
  }

  .repair-section {
    padding: 24px 0;
    min-height: 270px;
  }
  .repair-section .row {
    --bs-gutter-x: 42px;
  }
  .repair-section img.repair-photo {
    height: 220px;
    aspect-ratio: auto;
    border-radius: 7px;
    object-position: 35% 53%;
  }
  .repair-section .eyebrow {
    font-size: 11px;
    margin-bottom: 6px;
  }
  .repair-section h2 {
    font-size: 40px;
    line-height: 1;
  }
  .repair-section .divider-gold {
    margin: 7px 0;
  }
  .repair-section p.desc {
    font-size: 14px;
    line-height: 1.55;
    max-width: 500px;
  }
  .repair-features {
    gap: 10px 20px;
    margin: 15px 0 16px;
  }
  .repair-features .rf {
    font-size: 11px;
    gap: 6px;
  }
  .repair-section .btn-luxury {
    padding: 11px 20px;
    font-size: 11px;
  }
  .repair-section .architecture-bg {
    width: 380px;
    opacity: 0.1;
    bottom: -130px;
  }

  .final-cta {
    padding: 20px 0;
    min-height: 110px;
    display: flex;
    align-items: center;
  }
  .final-cta .cta-icon {
    width: 58px;
    height: 58px;
  }
  .final-cta .cta-icon img {
    width: 36px;
    height: 36px;
  }
  .final-cta h3 {
    font-size: 32px;
    line-height: 1;
    color: var(--gold-light);
  }
  .final-cta p {
    font-size: 13px;
    margin-top: 5px;
  }
  .final-cta .btn-luxury {
    padding: 12px 28px;
    font-size: 12px;
    min-width: 230px;
    justify-content: center;
  }

  .site-footer {
    padding: 36px 0 16px;
    min-height: 210px;
  }
  .site-footer .row {
    align-items: flex-start;
  }
  .site-footer .footer-col {
    padding: 0 38px;
    min-height: 105px;
    border-right: 1px solid rgba(200, 156, 80, 0.25);
  }
  .site-footer .footer-col:first-child {
    padding-left: 0;
  }
  .site-footer .footer-col:last-child {
    padding-right: 0;
    border-right: 0;
  }
  .footer-col .footer-brand {
    margin-bottom: 8px;
  }
  .footer-col .footer-brand img {
    width: 143px;
    height: 90px;
  }
  .footer-col h5 {
    font-family: var(--font-head);
    text-transform: none;
    letter-spacing: 0;
    font-size: 18px;
    margin: 0;
  }
  .footer-col p,
  .footer-col address {
    font-size: 13px;
    line-height: 1.65;
  }
  .footer-icon-title {
    margin-bottom: 6px;
  }
  .footer-icon-title i {
    font-size: 20px;
  }
  .footer-bottom {
    margin-top: 16px;
    padding-top: 11px;
    font-size: 11px;
  }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-page { background: var(--black); }
.about-page .site-header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(0, 0, 0, .78), transparent);
}
.about-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #090806;
}
.about-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.93), rgba(0,0,0,.72) 40%, rgba(0,0,0,.14) 76%), linear-gradient(to top, rgba(0,0,0,.55), transparent 45%);
}
.about-hero-content { position: relative; z-index: 2; padding-top: 100px; }
.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.64);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.about-breadcrumb a:hover, .about-breadcrumb span { color: var(--gold-light); }
.about-breadcrumb i { font-size: 8px; }
.about-hero .eyebrow { margin-bottom: 12px; }
.about-hero h1 { max-width: 680px; font-size: clamp(58px, 6vw, 88px); line-height: .92; }
.about-hero .divider-gold { margin: 22px 0 20px; }
.about-hero-content > p { max-width: 570px; color: #ddd5c9; font-size: 16px; line-height: 1.7; }

.about-story-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--dark-brown);
  background: radial-gradient(circle at 90% 12%, rgba(200,156,80,.1), transparent 28%), var(--ivory);
}
.about-story-media { position: relative; padding: 0 34px 34px 0; }
.about-story-media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 34px);
  height: calc(100% - 34px);
  border: 1px solid rgba(150,112,57,.46);
  border-radius: 8px 48px 8px 48px;
}
.about-story-media > img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 48px 8px 48px 8px;
  filter: sepia(.28) grayscale(.16);
}
.about-year-seal {
  position: absolute;
  z-index: 2;
  right: -8px;
  bottom: 8px;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--ivory);
  border-radius: 50%;
  color: var(--white);
  text-align: center;
  background: var(--gold-dark);
  box-shadow: 0 14px 30px rgba(52,35,15,.22);
}
.about-year-seal strong { font-family: var(--font-head); font-size: 34px; line-height: .9; }
.about-year-seal span { margin-top: 7px; font-size: 9px; line-height: 1.25; text-transform: uppercase; letter-spacing: .12em; }
.about-story-copy { padding-left: 34px; }
.about-story-copy .eyebrow, .about-craft-copy .eyebrow { color: var(--gold-dark); }
.about-story-copy h2, .about-craft-copy h2 { color: var(--dark-brown); font-size: clamp(42px, 4vw, 58px); line-height: .98; }
.about-story-copy .divider-gold .line, .about-craft-copy .divider-gold .line { background: rgba(24,19,14,.28); }
.about-story-copy > p { max-width: 600px; margin-top: 15px; color: #51483c; font-size: 14px; line-height: 1.75; }
.about-signature { display: inline-flex; align-items: center; gap: 13px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(24,19,14,.16); }
.about-signature > i { color: var(--gold-dark); font-size: 30px; }
.about-signature div { display: flex; flex-direction: column; }
.about-signature strong { color: var(--dark-brown); font-family: var(--font-head); font-size: 24px; line-height: 1; }
.about-signature span { margin-top: 4px; color: #786d60; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

.about-number-band { padding: 44px 0; border-top: 1px solid rgba(200,156,80,.18); border-bottom: 1px solid rgba(200,156,80,.18); background: #0b0b0a; }
.about-number-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.about-number-item { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 92px; border-right: 1px solid rgba(200,156,80,.22); text-align: center; }
.about-number-item:last-child { border-right: 0; }
.about-number-item strong { color: var(--gold-light); font-family: var(--font-head); font-size: 46px; line-height: 1; }
.about-number-item span { margin-top: 7px; color: var(--text-muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

.about-values-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: radial-gradient(circle at 20% 20%, rgba(200,156,80,.08), transparent 30%), linear-gradient(125deg, #15130f, #090909 65%);
}
.about-values-mandala { position: absolute; right: -130px; top: 50%; width: 540px; transform: translateY(-50%); opacity: .045; }
.about-section-heading { max-width: 700px; margin: 0 auto 50px; text-align: center; }
.about-section-heading h2 { font-size: clamp(42px, 4vw, 58px); line-height: 1; }
.about-values-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.about-value-card { min-height: 270px; padding: 34px 28px; border: 1px solid rgba(200,156,80,.28); border-radius: 6px; background: rgba(255,255,255,.025); transition: transform .4s ease, border-color .4s ease, background .4s ease; }
.about-value-card:hover { transform: translateY(-6px); border-color: var(--gold-light); background: rgba(200,156,80,.07); }
.about-value-icon { width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 28px; border: 1px solid rgba(200,156,80,.48); border-radius: 50%; color: var(--gold-light); font-size: 22px; }
.about-value-card h3 { font-size: 27px; line-height: 1.05; }
.about-value-card p { margin-top: 15px; color: var(--text-muted); font-size: 13px; line-height: 1.7; }

.about-craft-section { padding: 110px 0; color: var(--dark-brown); background: var(--ivory); }
.about-craft-copy > p { max-width: 520px; margin-top: 14px; color: #51483c; font-size: 14px; line-height: 1.75; }
.about-process-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 26px; margin: 34px 0 0; padding: 0; list-style: none; }
.about-process-list li { display: flex; align-items: flex-start; gap: 12px; }
.about-process-list li > span { color: var(--gold-dark); font-family: var(--font-head); font-size: 24px; line-height: 1; }
.about-process-list strong { color: var(--dark-brown); font-family: var(--font-head); font-size: 21px; line-height: 1; }
.about-process-list p { margin-top: 5px; color: #716658; font-size: 11px; line-height: 1.5; }
.about-craft-media { position: relative; padding: 0 0 48px 48px; }
.about-craft-media::before { content: ""; position: absolute; left: 0; bottom: 0; width: calc(100% - 48px); height: calc(100% - 48px); border: 1px solid rgba(150,112,57,.42); border-radius: 44px 8px 44px 8px; }
.about-craft-media img { position: relative; z-index: 1; width: 100%; min-height: 510px; object-fit: cover; border-radius: 8px 44px 8px 44px; }
.about-craft-media blockquote { position: absolute; z-index: 2; left: 0; bottom: 0; max-width: 390px; margin: 0; padding: 24px 28px; color: var(--white); font-family: var(--font-head); font-size: 24px; font-style: italic; line-height: 1.25; background: var(--gold-dark); box-shadow: 0 14px 30px rgba(52,35,15,.2); }

.about-promise-section { padding: 90px 0; background: linear-gradient(90deg, rgba(0,0,0,.93), rgba(0,0,0,.7)), url("../images/craftsmanship/harmonium-feature-photographic-v2.jpg") center 55% / cover no-repeat; }
.about-promise-card { display: grid; grid-template-columns: 1.2fr 1fr auto; align-items: center; gap: 54px; padding: 48px 52px; border: 1px solid rgba(200,156,80,.4); background: rgba(5,5,5,.6); backdrop-filter: blur(5px); }
.about-promise-card h2 { font-size: clamp(36px, 3.5vw, 50px); line-height: .98; }
.about-promise-card p { color: #c7bfb3; font-size: 13px; line-height: 1.7; }

@media (max-width: 991.98px) {
  .about-hero { min-height: 560px; }
  .about-hero-content { padding-top: 90px; }
  .about-hero h1 { font-size: 62px; }
  .about-story-section, .about-values-section, .about-craft-section { padding: 76px 0; }
  .about-story-copy { padding: 22px 0 0; }
  .about-story-media > img, .about-craft-media img { min-height: 430px; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .about-promise-card { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 767.98px) {
  .about-hero { min-height: 500px; }
  .about-hero-image { object-position: 65% center; }
  .about-hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.45)); }
  .about-hero-content { padding-top: 80px; }
  .about-breadcrumb { margin-bottom: 22px; }
  .about-hero h1 { font-size: 48px; }
  .about-hero-content > p { max-width: 440px; font-size: 14px; }
  .about-number-grid { grid-template-columns: 1fr 1fr; }
  .about-number-item:nth-child(2) { border-right: 0; }
  .about-number-item:nth-child(-n+2) { border-bottom: 1px solid rgba(200,156,80,.22); }
  .about-value-card { min-height: 240px; }
  .about-process-list { grid-template-columns: 1fr; }
}
@media (max-width: 575.98px) {
  .about-page .site-header .brand img { width: 118px; height: auto; }
  .about-hero { min-height: 470px; }
  .about-hero-content { padding-top: 76px; }
  .about-breadcrumb { display: none; }
  .about-hero h1 { font-size: 42px; }
  .about-hero .divider-gold { margin: 16px 0 14px; }
  .about-story-section, .about-values-section, .about-craft-section { padding: 58px 0; }
  .about-story-media { padding: 0 18px 18px 0; }
  .about-story-media > img, .about-craft-media img { min-height: 320px; }
  .about-year-seal { right: -2px; width: 104px; height: 104px; }
  .about-year-seal strong { font-size: 28px; }
  .about-story-copy h2, .about-craft-copy h2, .about-section-heading h2 { font-size: 36px; }
  .about-number-band { padding: 26px 0; }
  .about-number-item { min-height: 100px; }
  .about-number-item strong { font-size: 38px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-value-card { min-height: auto; padding: 28px 24px; }
  .about-value-icon { margin-bottom: 20px; }
  .about-craft-media { padding: 0 0 32px 22px; }
  .about-craft-media blockquote { max-width: 280px; padding: 18px 20px; font-size: 19px; }
  .about-promise-section { padding: 54px 0; }
  .about-promise-card { padding: 30px 24px; }
  .about-promise-card .btn-luxury { width: 100%; justify-content: center; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-page { background: var(--black); }
.contact-page .site-header:not(.scrolled) { background: linear-gradient(to bottom, rgba(0,0,0,.82), transparent); }
.contact-hero {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #090806;
}
.contact-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 38% 54%; }
.contact-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.7) 44%, rgba(0,0,0,.18) 78%), linear-gradient(to top, rgba(0,0,0,.55), transparent); }
.contact-hero-content { position: relative; z-index: 2; width: 100%; padding-top: 95px; }
.contact-hero h1 { width: 100%; max-width: none; font-size: clamp(58px, 5.5vw, 86px); line-height: .92; white-space: nowrap; }
.contact-hero .divider-gold { margin: 22px 0 20px; }
.contact-hero-content > p { max-width: 570px; color: #ddd5c9; font-size: 16px; line-height: 1.7; }

.contact-info-band { padding: 52px 0; border-top: 1px solid rgba(200,156,80,.2); border-bottom: 1px solid rgba(200,156,80,.2); background: #0b0b0a; }
.contact-info-grid { display: grid; grid-template-columns: 1.2fr .9fr 1fr; gap: 0; }
.contact-info-card { display: flex; gap: 20px; min-height: 170px; padding: 20px 42px; border-right: 1px solid rgba(200,156,80,.22); }
.contact-info-card:first-child { padding-left: 0; }
.contact-info-card:last-child { padding-right: 0; border-right: 0; }
.contact-info-icon { width: 48px; height: 48px; flex: none; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(200,156,80,.48); border-radius: 50%; color: var(--gold-light); font-size: 20px; }
.contact-info-card > div > span { color: var(--gold); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.contact-info-card h2 { margin: 8px 0 10px; font-size: 27px; line-height: 1; }
.contact-info-card p, .contact-info-card address { color: var(--text-muted); font-size: 12px; font-style: normal; line-height: 1.7; }
.contact-info-card a:hover { color: var(--gold-light); }
.contact-inline-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; color: var(--gold-light); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

.contact-form-section { position: relative; overflow: hidden; padding: 110px 0; color: var(--dark-brown); background: var(--ivory); }
.contact-architecture { position: absolute; right: -90px; bottom: -90px; width: 520px; opacity: .065; pointer-events: none; }
.contact-form-intro { position: relative; z-index: 1; padding-right: 40px; }
.contact-form-intro .eyebrow { color: var(--gold-dark); }
.contact-form-intro h2 { color: var(--dark-brown); font-size: clamp(48px, 4.5vw, 66px); line-height: .95; }
.contact-form-intro .divider-gold .line { background: rgba(24,19,14,.28); }
.contact-form-intro > p { max-width: 480px; color: #51483c; font-size: 14px; line-height: 1.75; }
.contact-help-list { display: grid; gap: 13px; margin: 30px 0 0; padding: 0; list-style: none; }
.contact-help-list li { display: flex; align-items: center; gap: 10px; color: #554b3f; font-size: 12px; }
.contact-help-list i { color: var(--gold-dark); }
.contact-form-card { position: relative; z-index: 1; padding: 42px; border: 1px solid rgba(150,112,57,.32); border-radius: 8px 34px 8px 34px; background: rgba(255,255,255,.52); box-shadow: 0 22px 50px rgba(59,42,18,.1); }
.contact-form-card label { margin-bottom: 7px; color: #5e5346; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact-form-card .form-control, .contact-form-card .form-select { min-height: 48px; padding: 11px 14px; border: 1px solid rgba(90,71,43,.25); border-radius: 2px; color: var(--dark-brown); background: rgba(255,255,255,.7); font-size: 13px; }
.contact-form-card textarea.form-control { min-height: 140px; resize: vertical; }
.contact-form-card .form-control:focus, .contact-form-card .form-select:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(150,112,57,.12); background: var(--white); }
.contact-form-card .invalid-feedback { font-size: 10px; }
.contact-form-note { display: flex; align-items: center; gap: 7px; color: #766b5e; font-size: 10px; }
.contact-form-note i { color: var(--gold-dark); }
.contact-form-success { display: none; min-height: 400px; flex-direction: column; align-items: center; justify-content: center; padding: 30px; text-align: center; }
.contact-form-success.show { display: flex; }
.contact-form-success > i { color: var(--gold-dark); font-size: 52px; }
.contact-form-success h3 { margin-top: 16px; color: var(--dark-brown); font-size: 38px; }
.contact-form-success p { max-width: 380px; margin: 10px 0 22px; color: #6a5f52; font-size: 13px; line-height: 1.65; }
.contact-form-success .btn-sm-gold-outline { color: var(--gold-dark); border-color: rgba(150,112,57,.45); }

.contact-map-section { min-height: 500px; display: grid; grid-template-columns: 38% 62%; background: #0b0b0a; }
.contact-map-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 60px max(40px, calc((100vw - 1500px)/2)); padding-right: 60px; }
.contact-map-copy h2 { font-size: clamp(42px, 4vw, 58px); line-height: .95; }
.contact-map-copy p { margin: 18px 0 28px; color: var(--text-muted); font-size: 13px; }
.contact-map-frame { min-height: 500px; filter: grayscale(.55) sepia(.18) contrast(1.04); }
.contact-map-frame iframe { width: 100%; height: 100%; min-height: 500px; border: 0; display: block; }

@media (max-width: 991.98px) {
  .contact-hero { min-height: 540px; }
  .contact-hero-content { padding-top: 90px; }
  .contact-hero h1 { max-width: 720px; white-space: normal; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-info-card, .contact-info-card:first-child, .contact-info-card:last-child { min-height: auto; padding: 26px 0; border-right: 0; border-bottom: 1px solid rgba(200,156,80,.2); }
  .contact-info-card:last-child { border-bottom: 0; }
  .contact-form-section { padding: 76px 0; }
  .contact-form-intro { padding: 0 0 30px; }
  .contact-map-section { grid-template-columns: 1fr; }
  .contact-map-copy { padding: 60px 36px; }
  .contact-map-frame, .contact-map-frame iframe { min-height: 420px; }
}
@media (max-width: 575.98px) {
  .contact-page,
  .contact-page main,
  .contact-page section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .contact-page .site-header .brand img { width: 118px; height: auto; }
  .contact-hero { min-height: 470px; }
  .contact-hero-image { object-position: 44% center; }
  .contact-hero-content { padding-top: 76px; }
  .contact-hero h1 { font-size: 42px; }
  .contact-hero .divider-gold { margin: 16px 0 14px; }
  .contact-hero-content > p { font-size: 14px; }
  .contact-info-band { padding: 30px 0; }
  .contact-info-grid { width: 100%; }
  .contact-info-card { width: 100%; gap: 14px; }
  .contact-info-card h2 { font-size: 24px; }
  .contact-form-section { padding: 58px 0; }
  .contact-form-section > .container-xl {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
  .contact-form-section .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }
  .contact-form-section .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .contact-form-intro {
    width: 100%;
    padding: 0 0 30px;
  }
  .contact-form-intro h2 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1;
  }
  .contact-form-intro > p {
    width: 100%;
    max-width: 100%;
    font-size: 13px;
  }
  .contact-help-list li {
    align-items: flex-start;
    font-size: 11.5px;
  }
  .contact-form-card {
    width: 100%;
    max-width: 100%;
    padding: 24px 18px;
    border-radius: 7px 22px 7px 22px;
  }
  .contact-form-card .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
  .contact-form-card .row > [class*="col-"] {
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
  }
  .contact-form-card .form-control,
  .contact-form-card .form-select {
    width: 100%;
    min-width: 0;
  }
  .contact-form-card .btn-luxury { width: 100%; justify-content: center; }
  .contact-form-note { width: 100%; }
  .contact-form-success { min-height: 330px; padding: 20px 8px; }
  .contact-map-copy { padding: 48px 22px; }
  .contact-map-copy h2 { font-size: 40px; }
  .contact-map-frame, .contact-map-frame iframe { min-height: 360px; }
}

@media (max-width: 425px) {
  .contact-page .back-to-top {
    width: 38px;
    height: 38px;
    right: 12px;
    bottom: 12px;
  }
  .contact-info-card {
    flex-direction: column;
  }
  .contact-form-intro h2 {
    font-size: 36px;
  }
  .contact-map-copy {
    padding: 42px 18px;
  }
  .contact-map-copy h2 {
    font-size: 36px;
  }
}

/* =========================================================
   PRODUCTS PAGE
   ========================================================= */
.products-page {
  background: #0b0a09;
}
.products-page main {
  overflow: hidden;
}
.products-page .site-header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), transparent);
}
.products-hero {
  position: relative;
  min-height: 270px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.products-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 56%;
}
.products-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.46)),
    linear-gradient(to top, rgba(0, 0, 0, 0.68), transparent 70%);
}
.products-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 42px;
}
.products-page .product-page-breadcrumb {
  display: flex;
  margin-bottom: 0;
}
.products-page .product-page-breadcrumb .product-breadcrumb-separator {
  color: rgba(255, 255, 255, 0.48);
}
.products-hero-content h1 {
  max-width: 760px;
  font-size: clamp(64px, 6vw, 90px);
  line-height: 0.88;
  letter-spacing: -0.025em;
}
.products-hero-content h1 em {
  color: var(--gold-light);
  font-weight: 500;
}
.products-hero-content > p {
  max-width: 610px;
  color: #d5cec3;
  font-size: 15px;
  line-height: 1.75;
}
.products-hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.products-hero-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}
.products-hero-call > i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold-light);
}
.products-hero-call span,
.products-hero-call small {
  display: block;
}
.products-hero-call small {
  margin-bottom: 1px;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.products-trust-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(200, 156, 80, 0.24);
  border-bottom: 1px solid rgba(200, 156, 80, 0.24);
  background: var(--ivory);
  color: var(--dark-brown);
}
.products-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.products-trust-grid > div {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid rgba(24, 19, 14, 0.15);
}
.products-trust-grid > div:last-child {
  border-right: 0;
}
.products-trust-grid i {
  color: var(--gold-dark);
  font-size: 31px;
}
.products-trust-grid span {
  color: #74695c;
  font-size: 10px;
  line-height: 1.45;
}
.products-trust-grid strong {
  display: block;
  color: var(--dark-brown);
  font-family: var(--font-head);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}

.product-catalog-section {
  position: relative;
  padding: 68px 0 125px;
  background: radial-gradient(circle at 7% 8%, rgba(200, 156, 80, 0.08), transparent 28%), #0b0a09;
}
.catalog-mandala {
  position: absolute;
  top: 10px;
  right: -170px;
  width: 540px;
  opacity: 0.055;
  pointer-events: none;
}
.catalog-heading-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 50px;
}
.catalog-heading-row h2 {
  font-size: clamp(52px, 5vw, 70px);
  line-height: 0.92;
}
.catalog-heading-row > p {
  max-width: 500px;
  padding-bottom: 4px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.75;
}
.product-filter-bar {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(200, 156, 80, 0.22);
}
.product-filter {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  border: 1px solid rgba(200, 156, 80, 0.32);
  border-radius: 2px;
  color: #c8c0b5;
  background: transparent;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.25s ease;
}
.product-filter span {
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(200, 156, 80, 0.12);
  font-size: 8px;
}
.product-filter:hover,
.product-filter.active {
  border-color: var(--gold);
  color: var(--black);
  background: var(--gold);
}
.product-filter.active span,
.product-filter:hover span {
  color: var(--black);
  background: rgba(0, 0, 0, 0.12);
}
.catalog-result-count {
  margin-bottom: 22px;
  color: #81796e;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}
.catalog-result-count span {
  color: var(--gold-light);
}
.product-category-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(200, 156, 80, 0.22);
}
.product-category-field {
  width: min(100%, 370px);
}
.product-category-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.product-category-select-wrap {
  position: relative;
}
.product-category-select-wrap select {
  width: 100%;
  height: 50px;
  padding: 0 46px 0 16px;
  border: 1px solid rgba(200, 156, 80, 0.48);
  border-radius: 2px;
  outline: 0;
  color: var(--text-light);
  background: #11100e;
  font-family: var(--font-body);
  font-size: 12px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.product-category-select-wrap select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 156, 80, 0.12);
}
.product-category-select-wrap i {
  position: absolute;
  top: 50%;
  right: 17px;
  color: var(--gold-light);
  font-size: 11px;
  pointer-events: none;
  transform: translateY(-50%);
}
.product-category-toolbar .catalog-result-count {
  margin: 0 0 13px;
}
.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.catalog-product-card {
  scroll-margin-top: 105px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(200, 156, 80, 0.28);
  border-radius: 4px 24px 4px 4px;
  background: var(--ivory);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.catalog-product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(200, 156, 80, 0.75);
  box-shadow: 0 27px 55px rgba(0, 0, 0, 0.35);
}
.catalog-product-card[hidden] {
  display: none !important;
}
.catalog-product-media {
  position: relative;
  height: auto;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(150, 112, 57, 0.2);
  background:
    radial-gradient(circle at 50% 44%, rgba(200, 156, 80, 0.16), transparent 52%),
    #eee6d9;
}
.catalog-product-media::after {
  display: none;
}
.catalog-product-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.catalog-product-card:hover .catalog-product-media img {
  transform: scale(1.045);
}
.catalog-product-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 20px;
  color: rgba(24, 19, 14, 0.42);
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.12em;
}
.catalog-product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 27px 28px 28px;
  color: var(--dark-brown);
}
.catalog-product-category {
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.catalog-product-body h3 {
  color: var(--dark-brown);
  font-size: 31px;
  line-height: 0.98;
}
.catalog-product-body > p {
  margin: 15px 0 17px;
  color: #6d6255;
  font-size: 11.5px;
  line-height: 1.65;
}
.catalog-product-body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.catalog-product-body li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: #4f473d;
  font-size: 9.5px;
  line-height: 1.35;
}
.catalog-product-body li::before {
  content: "\2713";
  color: var(--gold-dark);
  font-weight: 700;
}
.catalog-product-action {
  width: 100%;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 11px 15px;
  border: 1px solid rgba(150, 112, 57, 0.48);
  color: var(--gold-dark);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.catalog-product-action i {
  transition: transform 0.3s ease;
}
.catalog-product-action:hover {
  border-color: var(--gold-dark);
  color: var(--ivory);
  background: var(--dark-brown);
}
.catalog-product-action:hover i {
  transform: translateX(4px);
}

.product-guidance-section {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  border-top: 1px solid rgba(200, 156, 80, 0.2);
  background: #090909;
}
.product-guidance-media {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}
.product-guidance-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, #090909), linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent);
}
.product-guidance-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-guidance-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px clamp(45px, 6vw, 110px);
}
.product-guidance-copy h2 {
  font-size: clamp(48px, 4.4vw, 66px);
  line-height: 0.92;
}
.product-guidance-copy > p {
  max-width: 570px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.75;
}
.product-guidance-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 26px 0 32px;
}
.product-guidance-points span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d5cdc1;
  font-size: 11px;
}
.product-guidance-points i {
  color: var(--gold);
}
.product-guidance-actions {
  display: flex;
  gap: 13px;
}

@media (max-width: 1199.98px) {
  .products-hero { min-height: 255px; }
  .product-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-product-media { height: auto; }
}

@media (max-width: 991.98px) {
  .products-hero-content { padding: 0 0 38px; }
  .products-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-trust-grid > div:nth-child(2) { border-right: 0; }
  .products-trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(24, 19, 14, 0.15); }
  .catalog-heading-row { align-items: flex-start; flex-direction: column; gap: 24px; }
  .catalog-heading-row > p { max-width: 650px; }
  .product-filter-bar { overflow-x: auto; scrollbar-width: none; }
  .product-filter-bar::-webkit-scrollbar { display: none; }
  .product-filter { flex: 0 0 auto; }
  .product-guidance-section { grid-template-columns: 1fr; }
  .product-guidance-media { min-height: 430px; }
  .product-guidance-media::after { background: linear-gradient(to bottom, transparent 62%, #090909); }
  .product-guidance-copy { padding: 65px 36px 80px; }
}

@media (max-width: 767.98px) {
  .products-hero { min-height: 235px; }
  .products-hero-image { object-position: 68% center; }
  .products-hero-content h1 { font-size: 56px; }
  .product-catalog-section { padding: 78px 0 88px; }
  .catalog-heading-row { margin-bottom: 38px; }
  .catalog-heading-row h2 { font-size: 52px; }
  .product-catalog-grid { gap: 16px; }
  .catalog-product-media { height: auto; }
  .catalog-product-body { padding: 23px 22px 24px; }
  .catalog-product-body h3 { font-size: 27px; }
}

@media (max-width: 575.98px) {
  .products-page,
  .products-page main,
  .products-page section { width: 100%; max-width: 100%; overflow-x: hidden; }
  .products-page .site-header .brand img { width: 118px; height: auto; }
  .products-hero { min-height: 205px; }
  .products-hero-image { object-position: 69% center; }
  .products-hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.5)), linear-gradient(to top, rgba(0,0,0,.72), transparent 65%); }
  .products-hero-content { padding: 0 0 26px; }
  .products-hero-content h1 { max-width: 330px; font-size: 46px; line-height: 0.91; }
  .products-hero-content > p { max-width: 330px; font-size: 12px; line-height: 1.65; }
  .products-hero-actions { width: 100%; align-items: stretch; flex-direction: column; gap: 16px; margin-top: 24px; }
  .products-hero-actions .btn-luxury { width: 100%; justify-content: center; }
  .products-hero-call { justify-content: center; }
  .products-trust-grid > div { min-height: 96px; justify-content: flex-start; gap: 10px; padding: 18px 12px; }
  .products-trust-grid i { font-size: 23px; }
  .products-trust-grid strong { font-size: 19px; }
  .products-trust-grid span { font-size: 8px; }
  .product-catalog-section { padding: 62px 0 72px; }
  .catalog-mandala { display: none; }
  .catalog-heading-row h2 { font-size: 44px; }
  .catalog-heading-row > p { font-size: 12px; }
  .product-filter-bar { margin-right: -18px; padding-right: 18px; }
  .catalog-result-count { text-align: left; }
  .product-category-toolbar { align-items: stretch; flex-direction: column; gap: 10px; margin-bottom: 22px; }
  .product-category-field { width: 100%; }
  .product-category-toolbar .catalog-result-count { margin: 0; }
  .product-catalog-grid { grid-template-columns: 1fr; }
  .catalog-product-media { height: auto; }
  .catalog-product-body { padding: 24px 22px 25px; }
  .catalog-product-body h3 { font-size: 30px; }
  .catalog-product-body > p { font-size: 11px; }
  .product-guidance-media { min-height: 330px; }
  .product-guidance-copy { padding: 54px 18px 64px; }
  .product-guidance-copy h2 { font-size: 43px; }
  .product-guidance-points { grid-template-columns: 1fr; }
  .product-guidance-actions { width: 100%; flex-direction: column; }
  .product-guidance-actions .btn-luxury { width: 100%; justify-content: center; }
}

@media (max-width: 375px) {
  .products-hero-content h1 { font-size: 41px; }
  .products-hero-content > p { font-size: 11.5px; }
  .products-trust-grid { grid-template-columns: 1fr; }
  .products-trust-grid > div,
  .products-trust-grid > div:nth-child(2) { min-height: 78px; border-right: 0; border-bottom: 1px solid rgba(24, 19, 14, 0.15); }
  .products-trust-grid > div:last-child { border-bottom: 0; }
  .catalog-heading-row h2 { font-size: 40px; }
  .catalog-product-media { height: auto; }
  .catalog-product-body ul { grid-template-columns: 1fr; }
  .product-guidance-copy h2 { font-size: 39px; }
}

/* =========================================================
   GALLERY PAGE
   ========================================================= */
.gallery-page {
  background: #0b0a09;
}
.gallery-page .site-header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}
.gallery-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.gallery-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}
.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.68) 43%, rgba(0,0,0,.22)), linear-gradient(to top, rgba(0,0,0,.55), transparent);
}
.gallery-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 105px;
}
.gallery-hero-content h1 {
  max-width: 760px;
  font-size: clamp(58px, 5.5vw, 82px);
  line-height: .9;
}
.gallery-hero-content h1 em {
  color: var(--gold-light);
  font-weight: 500;
}
.gallery-hero-content > p {
  max-width: 580px;
  margin-top: 24px;
  color: #d2cbc0;
  font-size: 14px;
  line-height: 1.7;
}

.gallery-section {
  position: relative;
  padding: 90px 0 110px;
  background: radial-gradient(circle at 100% 0, rgba(200,156,80,.08), transparent 28%), #0b0a09;
}
.gallery-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}
.gallery-section-head h2 {
  font-size: clamp(46px, 4vw, 62px);
  line-height: .95;
}
.gallery-section-head > p {
  padding-bottom: 5px;
  color: var(--text-muted);
  font-size: 12px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative;
  min-width: 0;
  aspect-ratio: 1 / 1.08;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(200,156,80,.25);
  border-radius: 2px 18px 2px 2px;
  background: #171512;
  text-align: left;
  cursor: zoom-in;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9), transparent 58%);
  transition: background .35s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
}
.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  background: linear-gradient(to top, rgba(0,0,0,.94), rgba(0,0,0,.04) 72%);
}
.gallery-item > span {
  position: absolute;
  z-index: 2;
  left: 17px;
  right: 42px;
  bottom: 15px;
  color: var(--white);
}
.gallery-item strong,
.gallery-item small {
  display: block;
}
.gallery-item strong {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.05;
}
.gallery-item small {
  margin-top: 4px;
  color: var(--gold-light);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.gallery-item > i {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 17px;
  color: var(--gold-light);
  font-size: 13px;
  opacity: .8;
}

body.gallery-lightbox-open {
  overflow: hidden;
}
.gallery-lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 90px;
  background: rgba(0,0,0,.96);
  backdrop-filter: blur(8px);
}
.gallery-lightbox[hidden] {
  display: none;
}
.gallery-lightbox-figure {
  max-width: min(1180px, 86vw);
  margin: 0;
}
.gallery-lightbox-figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 78vh;
  margin: 0 auto;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0,0,0,.6);
}
.gallery-lightbox-figure figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 22px;
}
.gallery-lightbox-figure figcaption small {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gallery-lightbox-close,
.gallery-lightbox-arrow {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,156,80,.55);
  border-radius: 50%;
  color: var(--white);
  background: rgba(12,11,10,.75);
  transition: .25s ease;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-arrow:hover {
  border-color: var(--gold);
  color: var(--black);
  background: var(--gold);
}
.gallery-lightbox-close {
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  font-size: 17px;
}
.gallery-lightbox-arrow {
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  transform: translateY(-50%);
}
.gallery-lightbox-arrow.prev { left: 25px; }
.gallery-lightbox-arrow.next { right: 25px; }

@media (max-width: 1199.98px) {
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 991.98px) {
  .gallery-hero { min-height: 500px; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767.98px) {
  .gallery-hero { min-height: 460px; }
  .gallery-hero-content h1 { font-size: 54px; }
  .gallery-section { padding: 70px 0 82px; }
  .gallery-section-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .gallery-lightbox { padding: 70px 52px 45px; }
  .gallery-lightbox-arrow { width: 40px; height: 40px; }
  .gallery-lightbox-arrow.prev { left: 7px; }
  .gallery-lightbox-arrow.next { right: 7px; }
}
@media (max-width: 575.98px) {
  .gallery-page .site-header .brand img { width: 118px; height: auto; }
  .gallery-hero { min-height: 420px; }
  .gallery-hero-image { object-position: 58% center; }
  .gallery-hero-content { padding-top: 82px; }
  .gallery-hero-content .about-breadcrumb { display: flex; margin-bottom: 22px; }
  .gallery-hero-content h1 { font-size: 43px; }
  .gallery-hero-content > p { max-width: 330px; font-size: 12px; }
  .gallery-section { padding: 58px 0 68px; }
  .gallery-section-head { margin-bottom: 28px; }
  .gallery-section-head h2 { font-size: 40px; }
  .gallery-item { border-radius: 2px 12px 2px 2px; }
  .gallery-item > span { left: 11px; right: 29px; bottom: 10px; }
  .gallery-item strong { font-size: 14px; }
  .gallery-item small { font-size: 6px; }
  .gallery-item > i { right: 10px; bottom: 11px; font-size: 10px; }
  .gallery-lightbox { padding: 64px 42px 38px; }
  .gallery-lightbox-close { top: 13px; right: 13px; width: 38px; height: 38px; }
  .gallery-lightbox-figure { max-width: 100%; }
  .gallery-lightbox-figure img { max-height: 72vh; }
  .gallery-lightbox-figure figcaption { align-items: flex-start; flex-direction: column; gap: 3px; font-size: 18px; }
}

/* =========================================================
   PRODUCT DETAILS PAGE
   ========================================================= */
.catalog-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.catalog-product-detail,
.catalog-product-price {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 8px;
  border: 1px solid rgba(150,112,57,.48);
  color: var(--gold-dark);
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: .3s ease;
}
.catalog-product-detail:hover,
.catalog-product-price:hover {
  border-color: var(--dark-brown);
  color: var(--ivory);
  background: var(--dark-brown);
}
.product-details-page {
  background: #0b0a09;
}
.product-details-page .site-header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(0,0,0,.94), rgba(0,0,0,.75));
}
.detail-breadcrumb-band {
  padding: 145px 0 27px;
  border-bottom: 1px solid rgba(200,156,80,.2);
  background: radial-gradient(circle at 82% -80%, rgba(200,156,80,.15), transparent 33%), #0c0b09;
}
.detail-breadcrumb {
  margin: 0;
}
.detail-breadcrumb a:last-of-type {
  color: var(--gold-light);
}
.detail-breadcrumb > span:not(:last-child) {
  color: rgba(255,255,255,.38);
}
.product-detail-section {
  padding: 66px 0 105px;
  background: #0b0a09;
}
.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: start;
  gap: clamp(45px, 6vw, 95px);
}
.product-detail-gallery {
  position: sticky;
  top: 108px;
}
.product-detail-main-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(200,156,80,.38);
  border-radius: 4px 34px 4px 4px;
  background: var(--ivory);
}
.product-detail-main-image::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(150,112,57,.12);
  border-radius: 50%;
  pointer-events: none;
}
.product-detail-main-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-image-label {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 7px 11px;
  color: var(--black);
  background: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-detail-thumbnail {
  width: 88px;
  height: 88px;
  margin-top: 13px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--gold);
  background: var(--ivory);
}
.product-detail-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-copy {
  padding-top: 18px;
}
.product-detail-copy h1 {
  max-width: 650px;
  font-size: clamp(54px, 5vw, 74px);
  line-height: .9;
}
.product-detail-intro {
  max-width: 610px;
  color: #c5bdb1;
  font-size: 14px;
  line-height: 1.75;
}
.product-detail-price-note {
  display: grid;
  gap: 2px;
  margin: 29px 0;
  padding: 20px 22px;
  border-left: 2px solid var(--gold);
  background: rgba(200,156,80,.08);
}
.product-detail-price-note span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.product-detail-price-note strong {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 27px;
  font-weight: 500;
}
.product-detail-price-note small {
  color: var(--text-muted);
  font-size: 9px;
}
.product-detail-features h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 25px;
}
.product-detail-features ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 11px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-detail-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #d3cbc0;
  font-size: 11px;
}
.product-detail-features i {
  color: var(--gold);
}
.product-detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.product-detail-help {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 10px;
}
.product-detail-help i,
.product-detail-help a {
  color: var(--gold-light);
}

.product-detail-spec-section {
  padding: 85px 0 95px;
  color: var(--dark-brown);
  background: var(--ivory);
}
.product-detail-spec-heading {
  margin-bottom: 35px;
}
.product-detail-spec-heading h2 {
  color: var(--dark-brown);
  font-size: clamp(43px, 4vw, 58px);
  line-height: .95;
}
.product-detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  border-top: 1px solid rgba(24,19,14,.18);
  border-left: 1px solid rgba(24,19,14,.18);
}
.product-detail-spec-grid > div {
  min-height: 125px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 24px 27px;
  border-right: 1px solid rgba(24,19,14,.18);
  border-bottom: 1px solid rgba(24,19,14,.18);
}
.product-detail-spec-grid span {
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.product-detail-spec-grid strong {
  color: var(--dark-brown);
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
}

.product-detail-craft {
  min-height: 560px;
  display: grid;
  grid-template-columns: 48% 52%;
  background: #090909;
}
.product-detail-craft-media {
  min-height: 560px;
}
.product-detail-craft-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-craft-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px clamp(45px,6vw,110px);
}
.product-detail-craft-copy h2 {
  font-size: clamp(48px,4.4vw,65px);
  line-height: .92;
}
.product-detail-craft-copy > p {
  max-width: 570px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.75;
}
.product-detail-craft-points {
  display: grid;
  gap: 10px;
  margin-top: 25px;
}
.product-detail-craft-points span {
  display: flex;
  gap: 9px;
  color: #d5cdc1;
  font-size: 11px;
}
.product-detail-craft-points i { color: var(--gold); }

.related-products-section {
  padding: 90px 0 105px;
  background: #0d0c0a;
}
.related-products-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}
.related-products-head h2 {
  font-size: clamp(42px,4vw,58px);
  line-height: .95;
}
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.related-product-card {
  position: relative;
  min-width: 0;
  padding: 0 0 22px;
  overflow: hidden;
  border: 1px solid rgba(200,156,80,.26);
  border-radius: 3px 18px 3px 3px;
  background: #141210;
}
.related-product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--ivory);
}
.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.related-product-card:hover .related-product-image img { transform: scale(1.05); }
.related-product-card > span,
.related-product-card > h3 {
  display: block;
  margin-left: 19px;
  margin-right: 42px;
}
.related-product-card > span {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.related-product-card > h3 {
  font-size: 23px;
  line-height: 1;
}
.related-product-card > i {
  position: absolute;
  right: 18px;
  bottom: 26px;
  color: var(--gold-light);
}

@media (max-width: 1199.98px) {
  .product-detail-layout { gap: 45px; }
  .product-detail-copy h1 { font-size: 58px; }
}
@media (max-width: 991.98px) {
  .detail-breadcrumb-band { padding-top: 125px; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .product-detail-gallery { position: static; }
  .product-detail-main-image { max-width: 720px; }
  .product-detail-copy { padding-top: 15px; }
  .product-detail-spec-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-detail-craft { grid-template-columns: 1fr; }
  .product-detail-craft-media { min-height: 430px; }
  .product-detail-craft-copy { padding: 65px 36px 78px; }
  .related-products-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 575.98px) {
  .product-details-page .site-header .brand img { width: 118px; height: auto; }
  .detail-breadcrumb-band { padding: 105px 0 20px; }
  .product-details-page .detail-breadcrumb { display: flex; flex-wrap: wrap; margin: 0; font-size: 10px; }
  .product-detail-section { padding: 38px 0 64px; }
  .product-detail-main-image { border-radius: 3px 22px 3px 3px; }
  .product-detail-main-image::after { display: none; }
  .product-detail-thumbnail { width: 68px; height: 68px; }
  .product-detail-copy h1 { font-size: 43px; }
  .product-detail-intro { font-size: 12px; }
  .product-detail-features ul { grid-template-columns: 1fr; }
  .product-detail-actions { flex-direction: column; }
  .product-detail-actions .btn-luxury { width: 100%; justify-content: center; }
  .product-detail-spec-section { padding: 58px 0 65px; }
  .product-detail-spec-heading h2 { font-size: 39px; }
  .product-detail-spec-grid { grid-template-columns: 1fr; }
  .product-detail-spec-grid > div { min-height: 95px; padding: 20px; }
  .product-detail-craft-media { min-height: 330px; }
  .product-detail-craft-copy { padding: 54px 18px 64px; }
  .product-detail-craft-copy h2 { font-size: 42px; }
  .related-products-section { padding: 62px 0 70px; }
  .related-products-head { align-items: flex-start; flex-direction: column; gap: 18px; }
  .related-products-head h2 { font-size: 39px; }
  .related-products-head .btn-luxury { width: 100%; justify-content: center; }
  .related-products-grid { gap: 10px; }
  .related-product-card > span,
  .related-product-card > h3 { margin-left: 12px; margin-right: 28px; }
  .related-product-card > h3 { font-size: 18px; }
  .related-product-card > i { right: 11px; bottom: 24px; }
  .catalog-product-actions { grid-template-columns: 1fr; }
}
