/* =============================================
   HONGKONG LUXURY — Wedding Studio Template
   Inspired by Spain Collection aesthetic
   Font: Playfair Display + Be Vietnam Pro
   ============================================= */

:root {
  --noir: #0c0b09;
  --noir-warm: #141210;
  --charcoal: #1e1c19;
  --rose-dark: #2a1a1a;
  --cream: #f7f2eb;
  --cream-soft: #ede5d8;
  --gold: #c8a97e;
  --gold-pale: #e8d4b4;
  --rose-gold: #d4a0a0;
  --muted: #7a7068;
  --muted-light: #a09688;
  --white: #fdfaf6;
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Be Vietnam Pro', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--noir);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--noir);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease-out), height .25s var(--ease-out), background .3s;
  mix-blend-mode: normal;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200, 169, 126, .45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

.cursor.hover {
  width: 20px;
  height: 20px;
  background: var(--rose-gold);
}

.cursor-ring.hover {
  width: 68px;
  height: 68px;
  border-color: rgba(212, 160, 160, .5);
}




@keyframes plUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .5s var(--ease-out), background .5s, border-color .5s;
  background: rgba(12, 11, 9, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 169, 126, 0.05);
}

nav.scrolled {
  padding: 16px 64px;
  background: rgba(12, 11, 9, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 169, 126, .12);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .3em;
  color: var(--cream);
}

.nav-logo-sub {
  font-size: 7px;
  letter-spacing: .65em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 9px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: .65;
  transition: opacity .3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease-out);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-contact {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--noir);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 12px 28px;
  font-weight: 500;
  transition: all .4s var(--ease-out);
  box-shadow: 0 4px 15px rgba(200, 169, 126, 0.2);
}

.nav-contact:hover {
  background: var(--white);
  color: var(--noir);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Nav Toggle (Hamburger) */
.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--cream);
  transition: transform .4s, opacity .4s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* ── OFFCANVAS MENU ── */
.offcanvas {
  position: fixed;
  inset: 0 0 0 auto;
  width: 90%;
  max-width: 400px;
  height: 100vh;
  height: 100dvh;
  background: var(--noir-warm);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform .6s var(--ease-inout);
  display: flex;
  flex-direction: column;
  padding: 40px;
  box-shadow: -10px 0 50px rgba(0, 0, 0, .5);
}

.offcanvas.open {
  transform: translateX(0);
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--noir);
  padding: 24px 40px;
  margin: -40px -40px 30px -40px;
  border-bottom: 1px solid var(--gold);
}

.offcanvas-logo {
  text-decoration: none;
}

.offcanvas-close {
  cursor: pointer;
  color: var(--gold);
  transition: transform .4s;
}

.offcanvas-close:hover {
  transform: rotate(90deg);
}

.offcanvas-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
}

.offcanvas-links::-webkit-scrollbar {
  display: none;
}

.offcanvas-links li a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  opacity: .5;
  transition: opacity .4s, transform .4s;
  display: block;
}

.offcanvas-links li a:hover {
  opacity: 1;
  transform: translateX(10px);
  color: var(--gold);
}

.offcanvas-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding-bottom: 90px;
}

.offcanvas-footer {
  margin-top: auto;
  padding-top: 30px;
  flex-shrink: 0;
  border-top: 1px solid rgba(200, 169, 126, 0.2);
}

.offcanvas-info p {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: .05em;
}

.offcanvas-info a {
  font-size: 14px;
  color: var(--gold);
  text-decoration: none;
}

.offcanvas-social {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}

.offcanvas-social a {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 169, 126, .2);
  padding-bottom: 4px;
  transition: color .3s, border-color .3s;
}

.offcanvas-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
  backdrop-filter: blur(4px);
}

.offcanvas-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* WP Admin Bar Fix */
html {
  margin-top: 0 !important;
}

body.admin-bar nav {
  top: 32px;
}

body.admin-bar .offcanvas {
  top: 32px;
  height: calc(100vh - 32px);
}

body.admin-bar .offcanvas-overlay {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar nav {
    top: 46px;
  }

  body.admin-bar .offcanvas {
    top: 46px;
    height: calc(100vh - 46px);
  }

  body.admin-bar .offcanvas-overlay {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }

  .offcanvas {
    width: 100% !important;
    max-width: none !important;
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--noir);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 120%;
  /* Padding for parallax */
  object-fit: cover;
  object-position: center 20%;
  will-change: transform;
  transform: scale(1);
  transition: transform 6.5s linear;
}

.hero-slide.active img {
  transform: scale(1.05);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(12, 11, 9, .15) 0%,
      rgba(12, 11, 9, .3) 40%,
      rgba(12, 11, 9, .75) 75%,
      rgba(12, 11, 9, .97) 100%);
}

.hero-deco {
  position: absolute;
  top: 50%;
  right: 72px;
  transform: translateY(-50%) rotate(90deg);
  font-size: 8px;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, .55);
  white-space: nowrap;
  opacity: 0;
  animation: plUp .7s ease 0.8s forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 96px;
  /* max-width: 840px; */
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 9px;
  letter-spacing: .6em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: plUp .5s ease .2s forwards;
  padding: 4px 8px;
  background-color: rgba(61, 61, 61, 0.6);
  border-radius: 40px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 50px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--cream);
  opacity: 0;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);

  animation: plUp .8s ease .4s forwards;
}

.archive h1.hero-title {
  text-transform: uppercase;
}

.hero-title em {
  display: inline;
  font-style: italic;
  color: var(--gold-pale);
  text-shadow: 0 0 20px rgba(200, 169, 126, 0.3);
  animation: txtShine 4s ease-in-out infinite alternate;
}

@keyframes txtShine {
  0% {
    text-shadow: 0 0 10px rgba(200, 169, 126, 0.1), 2px 4px 12px rgba(0, 0, 0, 0.5);
  }

  100% {
    text-shadow: 0 0 35px rgba(200, 169, 126, 0.6), 2px 4px 12px rgba(0, 0, 0, 0.5);
  }
}

.tw-cursor {
  display: inline-block;
  width: 4px;
  height: 0.9em;
  background-color: var(--gold);
  vertical-align: middle;
  margin-left: 8px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-desc {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: .06em;
  line-height: 1.85;
  color: rgba(247, 242, 235, .5);
  max-width: 400px;
  opacity: 0;
  animation: plUp .7s ease 0.8s forwards;
}

.hero-btns {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 36px;
  opacity: 0;
  animation: plUp .7s ease 0.9s forwards;
}

.btn-gold {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--noir);
  text-decoration: none;
  padding: 15px 40px;
  transition: background .3s, letter-spacing .4s var(--ease-out);
  display: inline-block;
}

.btn-gold:hover {
  background: var(--gold-pale);
  letter-spacing: .55em;
}

.btn-line {
  font-size: 9px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  opacity: .6;
  transition: opacity .3s;
}

.btn-line::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--cream);
  transition: width .4s var(--ease-out);
}

.btn-line:hover {
  opacity: 1;
}

.btn-line:hover::after {
  width: 64px;
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: plUp .7s ease 1s forwards;
}

.hero-scroll span {
  font-size: 7px;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll-bar {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.2s ease-in-out 2.6s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ── MARQUEE ── */
.marquee {
  border-top: 1px solid rgba(200, 169, 126, .12);
  border-bottom: 1px solid rgba(200, 169, 126, .12);
  padding: 18px 0;
  overflow: hidden;
  background: rgba(200, 169, 126, .025);
}

.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marq 28s linear infinite;
}

.mi {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 56px;
}

.mi::after {
  content: '✦';
  font-size: 6px;
  color: var(--gold);
  flex-shrink: 0;
}

@keyframes marq {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── INTRO ── */
.intro {
  padding: 140px 64px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 64px;
  align-items: start;
}

.intro-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
  gap: 24px;
}

.intro-side-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gold);
}

.intro-side-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.intro-side-label {
  font-size: 8px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.intro-body {
  margin-top: 10px;
}

.intro-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--cream);
}

.intro-heading em {
  font-style: italic;
  color: var(--gold-pale);
}

.clip-parent {
  overflow: hidden;
  display: block;
}

.clip-child {
  display: block;
  transform: translateY(105%);
  transition: transform .9s var(--ease-out);
}

.clip-child:nth-child(2) {
  transition-delay: .11s;
}

.clip-child:nth-child(3) {
  transition-delay: .22s;
}

.clip-child:nth-child(4) {
  transition-delay: .33s;
}

.in-view .clip-child {
  transform: translateY(0);
}

.intro-text {
  margin-top: 36px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted-light);
  max-width: 560px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease .4s, transform .8s ease .4s;
}

.intro-text.in-view {
  opacity: 1;
  transform: translateY(0);
}

.intro-stats {
  margin-top: 52px;
  display: flex;
  gap: 56px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease .6s, transform .8s ease .6s;
}

.intro-stats.in-view {
  opacity: 1;
  transform: translateY(0);
}

.istat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.istat-num span {
  color: var(--gold);
  font-size: 24px;
}

.istat-lbl {
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ── SERVICES SECTION ── */
.services {
  padding: 0 64px 120px;
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 28px;
  margin-bottom: 56px;
  border-bottom: 1px solid rgba(200, 169, 126, .14);
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  text-transform: uppercase;
}

.sec-title em {
  font-style: italic;
  color: var(--gold-pale);
}

span.highlight,
.sec-title .highlight {
  color: var(--gold-pale);
}

.mobile-break {
  display: block;
  color: var(--gold-pale);
}

.sec-num {
  font-size: 9px;
  letter-spacing: .45em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Service grid */
.svc-grid {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.svc-grid::-webkit-scrollbar {
  display: none;
}

.svc-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  min-height: 480px;
  scroll-snap-align: start;
}

.svc-grid.has-slider .svc-card {
  flex: 0 0 calc(100% / 4.5);
}

.svc-grid.no-slider .svc-card {
  flex: 1;
}

.svc-controls button:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.svc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}

.svc-card:hover .svc-img {
  transform: scale(1.07);
}

.svc-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 11, 9, .9) 0%, rgba(12, 11, 9, .2) 50%, transparent 100%);
}

.svc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
}

.svc-tag {
  font-size: 8px;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .5s var(--ease-out), opacity .5s ease;
}

.svc-card:hover .svc-tag {
  transform: translateY(0);
  opacity: 1;
}

.svc-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.svc-count {
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  background: rgba(200, 169, 126, .15);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(200, 169, 126, .2);
}

.svc-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.svc-desc {
  font-size: 12px;
  letter-spacing: .04em;
  line-height: 1.7;
  color: rgba(247, 242, 235, .55);
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out), opacity .5s;
  opacity: 0;
}

.svc-card:hover .svc-desc {
  max-height: 80px;
  opacity: 1;
}

.svc-arrow {
  margin-top: 18px;
  font-size: 9px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: .55;
  transition: opacity .3s, gap .4s;
}

.svc-arrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--cream);
  transition: width .4s;
}

.svc-card:hover .svc-arrow {
  opacity: 1;
  gap: 18px;
}

.svc-card:hover .svc-arrow::after {
  width: 48px;
}

/* Sub-services list */
.svc-subs {
  position: absolute;
  top: 32px;
  left: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-sub-item {
  font-size: 8px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, .7);
  background: rgba(12, 11, 9, .6);
  padding: 5px 10px;
  backdrop-filter: blur(4px);
  transform: translateX(-20px);
  opacity: 0;
  transition: transform .5s var(--ease-out), opacity .5s;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}

.svc-sub-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.svc-sub-item a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.svc-sub-item a:hover {
  color: var(--gold);
}

.svc-card:hover .svc-sub-item {
  transform: translateX(0);
  opacity: 1;
}

.svc-card:hover .svc-sub-item:nth-child(2) {
  transition-delay: .08s;
}

.svc-card:hover .svc-sub-item:nth-child(3) {
  transition-delay: .16s;
}

/* ── PARALLAX QUOTE ── */
.pquote {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 2px 0;
}

.pquote-bg {
  position: absolute;
  inset: -20%;
  will-change: transform;
}

.pquote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.35) saturate(.6);
}

.pquote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 11, 9, .5), rgba(12, 11, 9, .3), rgba(12, 11, 9, .5));
}

.pquote-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 64px;
}

.pquote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: .5;
  color: var(--gold);
  opacity: .25;
  margin-bottom: 36px;
  display: block;
}

.pquote-text {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 56px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--cream);
  max-width: 820px;
}

.pquote-text span {
  color: var(--gold-pale);
}

.pquote-attr {
  margin-top: 32px;
  font-size: 9px;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── LOCATIONS SECTION ── */
.locations {
  padding: 120px 0;
}

.loc-header {
  padding: 0 64px;
  margin-bottom: 64px;
}

/* Horizontal scroll track */
.loc-track-wrap {
  overflow: hidden;
  padding-left: 64px;
}

.loc-track {
  display: flex;
  gap: 20px;
  width: max-content;
  transition: transform .65s var(--ease-out);
}

.loc-card {
  width: 360px;
  flex-shrink: 0;
  cursor: none;
}

.loc-card-visual {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.loc-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease-out);
}

.loc-card:hover .loc-card-visual img {
  transform: scale(1.07);
}

.loc-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 8px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(12, 11, 9, .65);
  backdrop-filter: blur(6px);
  padding: 7px 12px;
  border: 1px solid rgba(200, 169, 126, .2);
}

.loc-card-num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, 0.6);
  background-color: rgba(46, 44, 40, 0.6);
  backdrop-filter: blur(6px);
  padding: 7px 12px;
}

.loc-concepts {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 20px 20px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s, transform .4s;
}

.loc-card:hover .loc-concepts {
  opacity: 1;
  transform: translateY(0);
}

.loc-concept-tag {
  font-size: 7px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(200, 169, 126, .25);
  backdrop-filter: blur(8px);
  padding: 4px 8px;
}

.loc-card-info {
  padding: 22px 0;
}

.loc-card-region {
  font-size: 8px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.loc-card-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 6px;
}

.loc-card-meta {
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--muted);
}

.loc-nav {
  padding: 36px 64px 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.loc-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(200, 169, 126, .3);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 16px;
  transition: background .3s, border-color .3s, color .3s;
}

.loc-btn:hover {
  background: var(--gold);
  color: var(--noir);
  border-color: var(--gold);
}

.loc-prog {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: rgba(200, 169, 126, .15);
  position: relative;
  overflow: hidden;
}

.loc-prog-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gold);
  width: 16.66%;
  transition: width .55s var(--ease-out);
}

/* ── PRODUCTS: VÁAY / VEST ── */
.products {
  background: var(--cream);
  color: var(--noir);
}

.products-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

.prod-half {
  position: relative;
  overflow: hidden;
  cursor: none;
}

.prod-half-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
  filter: grayscale(20%);
}

.prod-half:hover .prod-half-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.prod-half-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 11, 9, .8) 0%, transparent 55%);
}

.prod-half-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 48px 52px;
  z-index: 2;
}

.prod-category {
  font-size: 8px;
  letter-spacing: .6em;
  text-transform: uppercase;
  /* color: var(--gold); */
  color: whitesmoke;
  margin-bottom: 12px;
  background: rgba(12, 11, 9, .6);
  padding: 5px 10px;
  display: inline-block;
  border-radius: 50px;
}

.prod-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 10px;
}

.prod-name em {
  font-style: italic;
  display: block;
}


.prod-sub {
  font-size: 12px;
  color: rgba(247, 242, 235, .55);
  margin-bottom: 28px;
}

.prod-link {
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.prod-link::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--cream);
  transition: width .4s;
}

.prod-link:hover::after {
  width: 54px;
}

/* Label vàng góc trên */
.prod-label {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: rgba(200, 169, 126, .07);
  line-height: 1;
  pointer-events: none;
}

/* ── PACKAGES ── */
.packages {
  padding: 120px 64px;
}

.pkg-track-wrap {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-top: 64px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pkg-track-wrap::-webkit-scrollbar {
  display: none;
}

.pkg-track-wrap:active {
  cursor: grabbing;
}

.pkg-track {
  display: flex;
  gap: 2px;
  min-width: 100%;
  pointer-events: none;
}

.pkg-track.is-dragging {
  scroll-snap-type: none;
}

.pkg-card {
  background: var(--charcoal);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background .4s;
  cursor: pointer;
  scroll-snap-align: start;
  flex: 0 0 calc(100% / 3.5);
  pointer-events: auto;
}

.pkg-card:hover {
  background: #252220;
}

.pkg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: transparent;
  transition: background .4s;
}

.pkg-card:hover::before {
  background: var(--gold);
}

.pkg-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  /* color: rgba(200, 169, 126, .1); */
  color: rgb(239 212 173 / 51%);
  line-height: 1;
  margin-bottom: 28px;
  transition: color .4s;
}

.pkg-card:hover .pkg-num {
  color: rgba(200, 169, 126, .18);
}

.pkg-icon {
  font-size: 20px;
  margin-bottom: 16px;
  opacity: .7;
}

.pkg-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.2;
}

.pkg-sub {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.pkg-sep {
  width: 32px;
  height: 1px;
  background: rgba(200, 169, 126, .3);
  margin-bottom: 24px;
  transition: width .4s;
}

.pkg-card:hover .pkg-sep {
  width: 56px;
}

.pkg-features {
  list-style: none;
}

.pkg-features li {
  font-size: 12px;
  color: var(--muted-light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(200, 169, 126, .06);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pkg-features li::before {
  content: '—';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pkg-price-area {
  margin-top: 36px;
}

.pkg-from {
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.pkg-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
}

.pkg-price span {
  font-size: 14px;
  color: var(--muted);
}

.pkg-cta {
  display: inline-block;
  margin-top: 24px;
  font-size: 9px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(200, 169, 126, .3);
  padding: 10px 24px;
  transition: all .3s;
}

.pkg-cta:hover {
  background: var(--gold);
  color: var(--noir);
  border-color: var(--gold);
}

.pkg-featured {
  background: linear-gradient(160deg, #1e1610 0%, #2a1e10 100%);
}

.pkg-featured-badge {
  position: absolute;
  top: 0;
  right: 32px;
  font-size: 7px;
  letter-spacing: .4em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--noir);
  padding: 6px 14px;
}

/* ── GALLERY STRIP ── */
.gallery-strip-wrap {
  width: 100%;
  overflow-x: hidden;
}

.gallery-mobile-only {
  display: none !important;
}

.gallery-strip {
  display: flex;
  gap: 2px;
  height: 380px;
  overflow: hidden;
}


.gallery-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: flex .6s var(--ease-out);
}

.gallery-item:hover {
  flex: 2.5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .gallery-mobile-only {
    display: block !important;
  }

  .gallery-strip {
    display: flex !important;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    height: 300px !important;
    background: transparent !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .gallery-strip::-webkit-scrollbar {
    display: none !important;
  }

  .gallery-item {
    width: 250px !important;
    flex: 0 0 250px !important;
    transition: none !important;
  }

  .gallery-item:hover {
    flex: 0 0 250px !important;
  }
}

.gallery-item-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 8px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s, transform .4s;
  background: rgba(12, 11, 9, .6);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 140px 64px;
}

.testi-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 120px;
  align-items: start;
}

.testi-left {
  flex: 1;
}

.testi-carousel {
  position: relative;
}

.testi-slide {
  display: none;
}

.testi-slide.active {
  display: block;
}

.tq-mark {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: .5;
  color: var(--gold);
  opacity: .25;
  margin-bottom: 32px;
}

.tq-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--cream);
  margin-bottom: 36px;
}

.tq-author {
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--muted);
}

.tq-couple {
  color: var(--gold);
}

.testi-dots {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.testi-dot {
  width: 24px;
  height: 1px;
  background: rgba(200, 169, 126, .25);
  cursor: pointer;
  transition: background .3s, width .3s;
}

.testi-dot.active {
  background: var(--gold);
  width: 40px;
}

/* ── EDITORIAL (SPLIT) ── */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.ed-left {
  background: var(--cream-soft);
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ed-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 300;
  color: var(--noir);
  line-height: 1.2;
}

.ed-title em {
  font-style: italic;
  color: #8a6040;
}

.ed-body {
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.9;
  color: #5a4a40;
  max-width: 420px;
}

.ed-link {
  margin-top: 44px;
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--noir);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: gap .4s;
}

.ed-link::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--noir);
  transition: width .4s;
}

.ed-link:hover {
  gap: 24px;
}

.ed-link:hover::after {
  width: 60px;
}

.ed-right {
  position: relative;
  overflow: hidden;
}

.ed-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}

.ed-right:hover img {
  transform: scale(1.04);
}

.ed-right-label {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 9px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
}

.ed-right-text {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 300;
  line-height: .9;
  color: rgba(247, 242, 235, .06);
  pointer-events: none;
  user-select: none;
  text-align: right;
}

/* ── CTA BANNER ── */
.cta {
  padding: 120px 64px;
  border-top: 1px solid rgba(200, 169, 126, .12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}

.cta-title em {
  font-style: italic;
  color: var(--gold-pale);
  display: block;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cta-note {
  font-size: 9px;
  letter-spacing: .25em;
  color: var(--muted);
  text-align: center;
}

/* ── FOOTER ── */
.footer {
  padding: 72px 64px 0;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: .25em;
  color: var(--cream);
  margin-bottom: 6px;
}

.footer-brand-sub {
  font-size: 7px;
  letter-spacing: .6em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 169, 126, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  color: var(--muted);
  transition: border-color .3s, color .3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col-title {
  font-size: 8px;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-col-links {
  list-style: none;
}

.footer-col-links li+li {
  margin-top: 11px;
}

.footer-col-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .3s;
}

.footer-col-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  margin-top: 52px;
  padding: 24px 64px;
  border-top: 1px solid rgba(200, 169, 126, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 9px;
  letter-spacing: .2em;
  color: rgba(122, 112, 104, .45);
}

/* ── CUSTOM CURSOR FIX ── */
.cursor,
.cursor-ring {
  z-index: 999999 !important;
}

/* ── CONCEPT ALBUM POPUP & BTN ── */
.loc-btn-album {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(12, 11, 9, 0.6);
  color: #fff;
  border: 1px solid rgba(200, 169, 126, 0.3);
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 40px;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
  pointer-events: auto;
  opacity: 1;
  /* Always visible requested by user */
}

.loc-btn-album:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.hkl-concept-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.hkl-concept-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.hkl-concept-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}

.hkl-concept-popup-inner {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  background: var(--black, #0c0b09);
  display: flex;
  flex-direction: column;
}

.hkl-concept-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: rgba(12, 11, 9, 0.98);
  border-bottom: 1px solid rgba(200, 169, 126, 0.15);
  position: sticky;
  top: 0;
  z-index: 20;
}

.hkl-concept-popup-header h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.hkl-concept-popup-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 40px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.3s, transform 0.3s;
}

.hkl-concept-popup-close:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.hkl-concept-popup-content {
  flex: 1;
  overflow-y: auto;
  padding: 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.hkl-concept-popup-content::-webkit-scrollbar {
  width: 6px;
}

.hkl-concept-popup-content::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 6px;
}

.hkl-popup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  align-items: start;
}

.hkl-popup-img-item {
  width: 100%;
}

.hkl-popup-img-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  object-fit: cover;
}

.hkl-concept-loader {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(200, 169, 126, 0.3);
  border-radius: 50%;
  border-top-color: var(--gold);
  animation: spin 1s ease-in-out infinite;
  margin: 100px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hkl-concept-popup-close-mobile {
  display: none;
}

/* ── FADE-UP BASE ── */
.fu {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

.fu.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fu:nth-child(2) {
  transition-delay: .1s;
}

.fu:nth-child(3) {
  transition-delay: .2s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 18px 24px;
  }

  nav.scrolled {
    padding: 14px 24px;
  }

  .nav-links,
  .nav-contact {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-logo-main {
    font-size: 15px;
    letter-spacing: 0.15em;
  }

  .nav-logo-sub {
    font-size: 6px;
    letter-spacing: 0.3em;
  }

  .hero-content {
    padding: 0 24px 100px;
  }

  .hero-eyebrow {
    letter-spacing: 0.3em;
    gap: 10px;
  }

  .hero-title {
    font-size: clamp(40px, 8vw, 80px);

  }

  .hero-btns {
    flex-wrap: wrap;
    gap: 15px;
  }

  .btn-gold {
    width: 100%;
    text-align: center;
  }

  .btn-line {
    width: 100%;
    justify-content: center;
  }

  .hero-deco {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .intro {
    grid-template-columns: 1fr;
    padding: 80px 24px;
  }

  .intro-side {
    flex-direction: row;
  }

  .intro-side-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .intro-stats {
    flex-direction: column;
    gap: 32px;
  }

  .prod-label {
    font-size: 40px;
    top: 20px;
    left: 20px;
    opacity: 0.05;
  }

  .prod-half-content {
    padding: 30px 24px;
  }

  .prod-name {
    font-size: 32px;
  }

  .services {
    padding: 0 24px 80px;
  }

  .svc-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .svc-grid::-webkit-scrollbar {
    display: none;
  }

  .svc-grid.has-slider .svc-card,
  .svc-grid.no-slider .svc-card,
  .svc-card {
    flex: 0 0 40%;
    min-height: 420px;
  }

  .svc-img {
    height: 100%;
  }

  .svc-tag {
    opacity: 1;
    transform: none;
    margin-bottom: 8px;
  }

  .svc-desc {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
  }

  .svc-subs {
    display: flex;
    margin-top: 15px;
    top: 15px;
    left: 15px;
    right: 15px;
  }

  .svc-sub-item {
    opacity: 1;
    transform: none;
  }

  .loc-header {
    padding: 0 24px;
  }

  .loc-track-wrap {
    padding-left: 24px;
  }

  .loc-nav {
    padding: 24px 24px 0;
  }

  .products-inner {
    display: block;
    position: relative;
    height: 75vh;
    min-height: 500px;
  }

  .prod-half {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
  }

  .prod-half.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }

  .packages {
    padding: 80px 24px;
  }

  .pkg-card {
    flex: 0 0 40%;
  }

  .editorial {
    grid-template-columns: 1fr;
  }

  .ed-right {
    min-height: 400px;
  }

  .testimonials {
    padding: 80px 24px;
  }

  .testi-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta {
    grid-template-columns: 1fr;
    padding: 80px 24px;
  }

  .pquote-content {
    padding: 0 24px;
  }

  .pquote-text {
    font-size: clamp(24px, 6vw, 40px);
  }

  .footer {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px 0;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
  }

  @media (max-width: 600px) {
    .hkl-concept-popup-header {
      display: none;
    }

    .hkl-concept-popup-content {
      padding: 24px 20px 100px;
    }

    .hkl-concept-popup-close-mobile {
      display: block;
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: #0c0b09;
      border: none;
      border-radius: 40px;
      padding: 14px 40px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      z-index: 30;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
      cursor: pointer;
    }

    .svc-grid.has-slider .svc-card,
    .svc-grid.no-slider .svc-card,
    .svc-card,
    .pkg-track-wrap .pkg-card {
      flex: 0 0 90.909%;
    }

    .services .sec-head,
    .locations .sec-head,
    .packages .sec-head {
      align-items: center;
      text-align: center;
    }

    .services .sec-head>div,
    .locations .sec-head>div,
    .packages .sec-head>div {
      align-items: center !important;
    }

    .footer {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .footer-brand {
      justify-content: center;
    }

    .footer-desc {
      margin: 0 auto;
    }

    .footer-social {
      justify-content: center;
    }
  }

  .sec-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .loc-concepts-section .sec-head {
    flex-direction: row !important;
    align-items: flex-end !important;
    flex-wrap: nowrap !important;
    gap: 15px !important;
  }

  /* Final Overflow Protection */
  html,
  body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
  }

  * {
    max-width: 100vw;
  }
}

/* ══════════ CONSULT POPUP ══════════ */
.hkl-consult-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 11, 9, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.hkl-consult-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hkl-consult-popup-content {
  background: var(--noir);
  border: 1px solid var(--gold);
  border-radius: 4px;
  width: 90%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  max-height: 90vh;
  overflow-y: auto;
}

.hkl-consult-popup-content::-webkit-scrollbar {
  width: 4px;
}

.hkl-consult-popup-content::-webkit-scrollbar-track {
  background: var(--noir);
}

.hkl-consult-popup-content::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.hkl-consult-popup-overlay.active .hkl-consult-popup-content {
  transform: translateY(0);
}

.hkl-consult-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--gold-pale);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s, transform 0.3s;
}

.hkl-consult-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.hkl-consult-body {
  padding: 0;
}

/* ══════════ SMARTCRM LEAD FORM (THEME OVERRIDE) ══════════ */
.smartcrm-lead-container {
  padding: 20px 30px;
  background: var(--noir);
  color: var(--cream);
  border-radius: 4px;
}

.smartcrm-lead-container h3.smartcrm-title {
  text-transform: uppercase;
}

.smartcrm-lead-header {
  text-align: center;
  margin-bottom: 30px;
}

.smartcrm-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold-pale);
  margin-bottom: 10px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.smartcrm-subtitle {
  font-size: 14px;
  color: rgba(253, 252, 245, 0.7);
  line-height: 1.5;
  margin: 0;
}

.smartcrm-input-group {
  margin-bottom: 20px;
}

.smartcrm-input-group label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.smartcrm-input-group input,
.smartcrm-input-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 169, 126, 0.3);
  color: var(--cream);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 2px;
  transition: all 0.3s ease;
  outline: none;
}

.smartcrm-input-group input:focus,
.smartcrm-input-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.smartcrm-input-group input::placeholder,
.smartcrm-input-group textarea::placeholder {
  color: rgba(253, 252, 245, 0.3);
}

.smartcrm-submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--noir);
  border: none;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.smartcrm-submit-btn:hover {
  background: #fff;
}

.smartcrm-loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(12, 11, 9, 0.3);
  border-top-color: var(--noir);
  border-radius: 50%;
  animation: smartcrmSpin 1s linear infinite;
}

@keyframes smartcrmSpin {
  to {
    transform: rotate(360deg);
  }
}

.smartcrm-message {
  margin-top: 20px;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  border-radius: 2px;
  display: none;
}

.smartcrm-message.error {
  display: block;
  background: rgba(255, 77, 77, 0.1);
  color: #ff4d4d;
  border: 1px solid rgba(255, 77, 77, 0.3);
}

.smartcrm-message.success {
  display: block;
  background: rgba(200, 169, 126, 0.1);
  color: var(--gold);
  border: 1px solid rgba(200, 169, 126, 0.3);
}

/* ══════════ ABOUT PAGE TEMPLATE ══════════ */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 11, 9, 0.4), rgba(12, 11, 9, 0.9));
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.about-hero-content .page-title {
  font-size: clamp(40px, 8vw, 72px);
  margin-top: 15px;
}

.about-story {
  background: var(--noir);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.story-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 25px;
  opacity: 0.9;
}

.story-image .img-wrapper {
  position: relative;
  border: 1px solid var(--gold);
  padding: 15px;
}

.story-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}

.about-values {
  background: var(--noir);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-item {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 2px solid transparent;
  transition: all 0.4s ease;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-bottom-color: var(--gold);
  transform: translateY(-10px);
}

.value-icon {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 20px;
  line-height: 1;
}

.value-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold-pale);
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.value-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.8;
}

.about-studio {
  background: var(--noir);
}

.studio-banner {
  display: flex;
  background: var(--cream-soft);
  color: var(--noir);
  align-items: center;
}

.studio-text {
  flex: 0 0 40%;
  padding: 60px;
}

.studio-text .sec-title {
  color: var(--noir);
}

.studio-img {
  flex: 0 0 60%;
  height: 500px;
}

.studio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta .cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--gold-pale);
  margin-bottom: 40px;
  font-weight: 300;
}

@media (max-width: 991px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .studio-banner {
    flex-direction: column-reverse;
  }

  .studio-text,
  .studio-img {
    flex: 0 0 100%;
    width: 100%;
  }

  .studio-text {
    padding: 40px 25px;
  }

  .studio-img {
    height: 300px;
  }
}

/* ══════════ CONTACT PAGE TEMPLATE ══════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-methods {
  margin: 40px 0;
  display: grid;
  gap: 30px;
}

.method-item {
  border-left: 1px solid var(--gold);
  padding-left: 20px;
}

.method-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
}

.method-value {
  font-size: 18px;
  color: var(--cream);
  margin: 0;
  line-height: 1.4;
}

.method-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.method-value a:hover {
  color: var(--gold);
}

.contact-social-wrap {
  margin-top: 50px;
}

.social-label {
  font-size: 12px;
  color: rgba(253, 252, 245, 0.5);
  margin-bottom: 15px;
}

.contact-social-links {
  display: flex;
  gap: 15px;
}

.contact-social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200, 169, 126, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-social-links a:hover {
  background: var(--gold);
  color: var(--noir);
  border-color: var(--gold);
}

.form-container-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 169, 126, 0.15);
  padding: 50px;
  border-radius: 4px;
}

.form-header {
  margin-bottom: 35px;
  text-align: center;
}

.form-header h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold-pale);
  margin-bottom: 10px;
  font-weight: 300;
}

.form-header p {
  font-size: 14px;
  color: rgba(253, 252, 245, 0.6);
  line-height: 1.6;
}

.contact-map-sec {
  background: var(--noir);
}

.map-wrapper {
  filter: grayscale(1) invert(1) contrast(1.2) opacity(0.8);
  height: 500px;
  overflow: hidden;
  transition: filter 0.5s;
}

.map-wrapper:hover {
  filter: grayscale(0.5) invert(0) contrast(1) opacity(1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1100px) {
  .contact-grid {
    gap: 40px;
  }

  .smartcrm-lead-container {
    padding: 10px 20px;
  }

  .smartcrm-lead-container .smartcrm-title {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .form-container-card {
    padding: 30px 20px;
  }
}

/* ══════════ MOBILE BOTTOM NAVIGATION ══════════ */
.hkl-mobile-bottom-nav {
  display: none;
}

@media (max-width: 991px) {
  body {
    padding-bottom: 70px;
  }

  .hkl-mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(18, 17, 15, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(200, 169, 126, 0.2);
    z-index: 9000;
    align-items: center;
    justify-content: space-around;
    padding: 0 10px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
  }

  .hkl-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(253, 252, 245, 0.6);
    font-size: 10px;
    gap: 4px;
    width: 20%;
    transition: color 0.3s;
  }

  .hkl-nav-item:hover,
  .hkl-nav-item:active {
    color: var(--gold);
  }

  .hkl-nav-icon {
    width: 24px;
    height: 24px;
  }

  .hkl-nav-item-center {
    width: 20%;
    display: flex;
    justify-content: center;
  }

  .hkl-nav-center-btn {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--noir);
    transform: translateY(-20px);
    box-shadow: 0 10px 25px rgba(200, 169, 126, 0.4);
    border: 4px solid var(--noir);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .hkl-nav-center-btn svg {
    width: 26px;
    height: 26px;
  }

  .hkl-nav-center-btn:active {
    transform: translateY(-18px) scale(0.95);
    box-shadow: 0 5px 15px rgba(200, 169, 126, 0.3);
  }
}

/* ══════════ SLIDE-UP BOTTOM POPUPS ══════════ */
.hkl-bottom-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.hkl-bottom-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hkl-bottom-popup-content {
  width: 100%;
  background: var(--noir);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  max-height: 80vh;
  overflow-y: auto;
  border-top: 1px solid rgba(200, 169, 126, 0.3);
}

.hkl-bottom-popup-overlay.active .hkl-bottom-popup-content {
  transform: translateY(0);
}

.hkl-bottom-popup-header {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hkl-bottom-popup-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold-pale);
  font-weight: 300;
}

.hkl-bottom-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  opacity: 0.6;
}

.hkl-bottom-popup-body {
  padding: 25px;
}

.hkl-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hkl-contact-list li {
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hkl-contact-list li strong {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.hkl-contact-list li a {
  color: var(--cream);
  text-decoration: none;
}

.hkl-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.hkl-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: 8px;
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: background 0.3s;
}

.hkl-social-btn:active {
  background: rgba(200, 169, 126, 0.2);
}

.hkl-section-padding {
  padding: 100px 64px;
}

@media (max-width: 900px) {
  .hkl-section-padding {
    padding: 60px 24px;
  }

  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .sec-nav {
    gap: 8px;
  }
}

.hkl-hero-header {
  padding: 180px 64px 100px;
}

.hkl-canvas-wrap {
  position: relative;
  overflow: hidden;
}

.hkl-header-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.hkl-header-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hkl-hero-header {
    padding: 140px 24px 80px;
  }
}

.post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.post-meta .meta-value {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(200, 169, 126, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
}

.post-meta .meta-value::before {
  content: '·';
  color: var(--muted);
}

@media (max-width: 900px) {
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .post-meta .meta-value::before {
    display: none;
  }
}

.loc-scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 8px 8px 8px 24px;
  background: rgba(200, 169, 126, 0.1);
  border: 1px solid rgba(200, 169, 126, 0.3);
  border-radius: 100px;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(10px);
}

.loc-scroll-btn:hover {
  background: var(--gold);
  color: var(--noir);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 169, 126, 0.2);
}

.lsb-text {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

.lsb-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--noir);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out);
}

.lsb-icon svg {
  width: 16px;
  height: 16px;
}

.loc-scroll-btn:hover .lsb-icon {
  background: var(--noir);
  color: var(--gold);
}

/* ── SINGLE LOCATION ENHANCEMENTS ── */
.desktop-only {
  display: flex;
}

@media (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }
}

.sec-nav {
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 169, 126, 0.3);
  background: transparent;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
}

.nav-btn:hover {
  background: var(--gold);
  color: var(--noir);
  border-color: var(--gold);
}

.hkl-scroll-track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  margin: 0 -64px;
  padding: 0 64px 30px;
}

.hkl-scroll-track-wrap::-webkit-scrollbar {
  display: none;
}

.hkl-scroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.hkl-scroll-item {
  flex: 0 0 calc((100vw - 128px - (2.5 * 24px)) / 3.5);
  width: calc((100vw - 128px - (2.5 * 24px)) / 3.5);
}

.concept-card .concept-visual img,
.location-card-small .loc-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-card:hover .concept-visual img {
  transform: scale(1.08);
}

.location-card-small:hover .loc-visual img {
  transform: scale(1.08);
}

.loc-concepts-section .loc-btn-album {
  position: absolute;
  top: auto;
  bottom: 24px;
  left: 24px;
  right: 24px;
  transform: none;
  background: rgba(12, 11, 9, 0.35);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  width: auto;
}

.loc-concepts-section .loc-btn-album:hover {
  background: var(--gold);
  color: var(--noir);
}

@media (max-width: 900px) {
  .hkl-scroll-track-wrap {
    margin: 0 -24px;
    padding: 0 24px 20px;
  }

  .hkl-scroll-track {
    gap: 12px;
  }

  .hkl-scroll-item {
    flex: 0 0 calc((100vw - 48px - (0.1 * 12px)) / 1.1);
    width: calc((100vw - 48px - (0.1 * 12px)) / 1.1);
  }
}

/* ── BLOG SYSTEM ── */
.blog-list {
  background: var(--noir);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.blog-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.blog-img-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--charcoal);
  display: block;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.08);
}

.blog-card .blog-meta,
.post-meta {
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.blog-meta a,
.post-meta a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-meta a:hover,
.post-meta a:hover {
  color: var(--cream);
}

.blog-card .blog-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.4;
}

.blog-card .blog-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card:hover .blog-title,
.blog-card .blog-title a:hover {
  color: var(--gold);
}

.blog-card .blog-excerpt {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted-light);
  font-weight: 300;
}

/* Pagination */
.pagination {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.pagination .page-numbers {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 169, 126, 0.2);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--gold);
  color: var(--noir);
  border-color: var(--gold);
}

.pagination .prev,
.pagination .next {
  width: auto !important;
  padding: 0 24px !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
}

@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .blog-img-wrap {
    height: 350px;
  }
}

/* ── UTILITY CLASSES FOR TEMPLATES ── */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.container-narrow {
  max-width: 1100px;
}

.section-padding {
  padding: 140px 0;
}

.section-padding-bottom {
  padding-bottom: 140px;
}

@media (max-width: 991px) {
  .container {
    padding: 0 32px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .section-padding-bottom {
    padding-bottom: 80px;
  }
}