/* =========================================================
   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;
}

.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);
}
.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;
  }
}
