:root {
  --bg: #050507;
  --bg-2: #0a0a0f;
  --panel: rgba(255,255,255,0.075);
  --panel-strong: rgba(255,255,255,0.12);
  --line: rgba(255,255,255,0.14);
  --line-gold: rgba(235,194,92,0.38);
  --gold: #f5c85b;
  --gold-2: #c89225;
  --gold-3: #fff0b7;
  --text: #f7f3ea;
  --muted: rgba(247,243,234,0.68);
  --muted-2: rgba(247,243,234,0.46);
  --shadow: rgba(0,0,0,0.55);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(245,200,91,0.13), transparent 34rem),
    radial-gradient(circle at 84% 13%, rgba(255,255,255,0.06), transparent 26rem),
    linear-gradient(180deg, #060609 0%, #0c0906 38%, #060608 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: #111; }

#auroraCanvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100vw;
  height: 100vh;
  opacity: 0.45;
  pointer-events: none;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(245,200,91,0.12), transparent 21rem);
  transition: background .2s;
}

.top-strip {
  position: relative;
  z-index: 20;
  background: #030303;
  border-bottom: 1px solid rgba(245,200,91,0.22);
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.top-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.top-strip a { color: var(--gold); font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  max-width: calc(var(--max) + 2rem);
  margin: 0.85rem auto 0;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(8,8,11,0.58);
  box-shadow: 0 18px 60px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.10);
  backdrop-filter: blur(22px);
  transform: translateZ(0);
  transition: .35s var(--ease);
}
.site-header.scrolled {
  margin-top: 0.35rem;
  background: rgba(5,5,7,0.82);
  box-shadow: 0 20px 70px rgba(0,0,0,0.45), 0 0 45px rgba(245,200,91,0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}
.brand__logo-wrap {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle, rgba(245,200,91,0.32), rgba(255,255,255,0.02));
  border: 1px solid rgba(245,200,91,0.32);
  box-shadow: 0 0 28px rgba(245,200,91,0.18);
}
.brand__logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.brand__text { display: flex; flex-direction: column; line-height: 1.08; }
.brand__text strong { font-size: 1.05rem; letter-spacing: .04em; }
.brand__text small { color: var(--muted-2); font-size: .68rem; margin-top: .16rem; letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; gap: 0.35rem; align-items: center; }
.nav-links a {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
  font-weight: 700;
  transition: .25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-3);
  background: rgba(245,200,91,0.10);
}
.header-enquire,
.footer-message,
.notify-all {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-2));
  color: #171006;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 14px 38px rgba(245,200,91,0.22), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: .25s var(--ease);
}
.header-enquire:hover,
.footer-message:hover,
.notify-all:hover { transform: translateY(-2px); filter: brightness(1.06); }

.hero-section {
  min-height: calc(100vh - 114px);
  position: relative;
  padding: 5.5rem 1.25rem 4.5rem;
  overflow: hidden;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.hero-glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .22;
  pointer-events: none;
  animation: floatGlow 10s ease-in-out infinite;
}
.hero-glow--one { background: var(--gold); left: -10rem; top: 5rem; }
.hero-glow--two { background: #fff; right: -11rem; bottom: 4rem; animation-delay: -4s; opacity: .07; }
@keyframes floatGlow { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(2rem,-1rem,0) scale(1.08); } }
.super-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold-3);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.super-label span {
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
h1, h2, h3, p { margin-top: 0; }
.hero-copy h1,
.section-heading h2,
.experience-panel h2,
.contact-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.052em;
  line-height: .94;
}
.hero-copy h1 {
  margin: 1rem 0 1.25rem;
  font-size: clamp(3.5rem, 8vw, 8rem);
  max-width: 750px;
}
em {
  font-style: normal;
  background: linear-gradient(110deg, #fff8d7 0%, var(--gold) 34%, #a86d16 72%, #fff0b7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(245,200,91,0.14));
}
.hero-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.75;
  max-width: 660px;
}
.hero-actions,
.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .04em;
  transition: .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.48), transparent 70%);
  transform: translateX(-125%);
  transition: .65s var(--ease);
}
.btn:hover::after { transform: translateX(125%); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-2));
  color: #1d1407;
  box-shadow: 0 20px 50px rgba(245,200,91,0.22), inset 0 1px 0 rgba(255,255,255,0.65);
}
.btn--glass {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
}
.btn:hover { transform: translateY(-3px); }
.proof-row {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 650px;
}
.proof-row div {
  padding: 1.1rem;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.proof-row strong { display: block; font-size: 1.45rem; color: var(--gold); }
.proof-row span { display: block; margin-top: .25rem; color: var(--muted-2); font-size: .8rem; font-weight: 700; }

.hero-stage {
  position: relative;
  min-height: 650px;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(245,200,91,0.24);
  border-radius: 50%;
  transform: rotateX(64deg) rotateZ(-20deg);
  box-shadow: 0 0 70px rgba(245,200,91,0.08), inset 0 0 40px rgba(245,200,91,0.04);
  animation: spinOrbit 22s linear infinite;
}
.orbit--outer { inset: 9% 3% 12%; }
.orbit--inner { inset: 23% 18% 26%; animation-duration: 15s; animation-direction: reverse; }
@keyframes spinOrbit { to { transform: rotateX(64deg) rotateZ(340deg); } }
.hero-card--main {
  position: absolute;
  inset: 14% 9% 15% 7%;
  border-radius: 44px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  background: #15120c;
  box-shadow: 0 50px 120px rgba(0,0,0,0.55), 0 0 90px rgba(245,200,91,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
  transform: rotateY(-10deg) rotateX(5deg) translateZ(30px);
}
.hero-card--main::before,
.product-tile::before,
.collection-card::before,
.experience-panel::before,
.address-card::before,
.contact-modal__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 12%, rgba(255,255,255,0.20) 42%, transparent 55%);
  transform: translateX(-140%);
  transition: .85s var(--ease);
}
.hero-card--main:hover::before,
.product-tile:hover::before,
.collection-card:hover::before,
.experience-panel:hover::before,
.address-card:hover::before,
.contact-modal__panel:hover::before { transform: translateX(140%); }
.hero-card--main img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); filter: contrast(1.1) saturate(1.04); }
.hero-card--main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.22) 54%, rgba(0,0,0,0.6) 100%);
}
.floating-product {
  position: absolute;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(245,200,91,0.24);
  background: #111;
  box-shadow: 0 28px 80px rgba(0,0,0,0.52), 0 0 35px rgba(245,200,91,0.08);
  animation: productFloat 5s ease-in-out infinite;
  transform-style: preserve-3d;
}
.floating-product img { width: 100%; height: 100%; object-fit: cover; }
.fp-one { width: 180px; height: 130px; left: -2%; top: 8%; transform: translateZ(90px) rotate(-7deg); }
.fp-two { width: 190px; height: 155px; right: -1%; top: 49%; transform: translateZ(115px) rotate(8deg); animation-delay: -1.8s; }
.fp-three { width: 170px; height: 145px; left: 6%; bottom: 4%; transform: translateZ(125px) rotate(7deg); animation-delay: -3s; }
@keyframes productFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -16px; } }
.stage-badge {
  position: absolute;
  right: 11%;
  top: 10%;
  width: 182px;
  padding: 1rem;
  border-radius: 23px;
  background: rgba(8,8,10,0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 22px 70px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translateZ(150px) rotateY(-10deg);
}
.stage-badge span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  color: #161007;
  font-weight: 950;
  margin-bottom: .8rem;
}
.stage-badge strong { font-size: .95rem; line-height: 1.3; display:block; }

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(245,200,91,0.22);
  background: linear-gradient(90deg, rgba(245,200,91,0.10), rgba(255,255,255,0.04), rgba(245,200,91,0.10));
  transform: rotate(-1deg) scale(1.03);
  margin: -1.5rem 0 1rem;
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 2.6rem;
  padding: 1.1rem 0;
  animation: marqueeMove 22s linear infinite;
}
.marquee span {
  font-weight: 950;
  color: var(--gold-3);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
}
@keyframes marqueeMove { to { transform: translateX(-50%); } }

.section {
  padding: 7rem 1.25rem;
  position: relative;
}
.section-heading {
  max-width: 790px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-heading h2,
.experience-panel h2,
.contact-copy h2 {
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  margin: .85rem 0 1rem;
}
.section-heading p,
.experience-panel p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.06rem;
}
.collection-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 470px;
  gap: 1.25rem;
  perspective: 1200px;
}
.collection-card,
.product-tile,
.experience-panel,
.address-card,
.map-card,
.contact-modal__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: 0 35px 100px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.11);
  transform-style: preserve-3d;
}
.collection-card {
  border-radius: var(--radius-xl);
  min-height: 100%;
}
.collection-card--wide { grid-row: span 1; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.collection-card:hover img { transform: scale(1.08); }
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.84));
}
.collection-card__content {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  padding: 2rem;
  transform: translateZ(60px);
}
.collection-card__content span {
  display: inline-flex;
  color: var(--gold);
  font-weight: 950;
  letter-spacing: .16em;
  margin-bottom: 1rem;
}
.collection-card__content h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
  line-height: 1;
  margin-bottom: .8rem;
  font-family: "Playfair Display", Georgia, serif;
}
.collection-card__content p { color: rgba(255,255,255,0.72); line-height: 1.55; margin-bottom: 0; }

.products-section {
  background:
    radial-gradient(circle at 50% 8%, rgba(245,200,91,0.12), transparent 38rem),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}
.product-wall {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 1rem;
  perspective: 1200px;
}
.product-tile {
  padding: 0;
  cursor: pointer;
  border-radius: 28px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.product-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .35s; }
.product-tile::after {
  content: "Message";
  position: absolute;
  right: .9rem;
  bottom: .9rem;
  color: #171006;
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  border-radius: 999px;
  padding: .65rem .9rem;
  font-weight: 950;
  font-size: .78rem;
  transform: translateY(14px);
  opacity: 0;
  transition: .25s var(--ease);
}
.product-tile:hover { border-color: rgba(245,200,91,0.45); box-shadow: 0 36px 90px rgba(0,0,0,0.5), 0 0 50px rgba(245,200,91,0.12); }
.product-tile:hover img { transform: scale(1.08); filter: saturate(1.12) contrast(1.06); }
.product-tile:hover::after { transform: translateY(0); opacity: 1; }
.product-tile--tall { grid-row: span 2; }
.product-tile--wide { grid-column: span 2; }
.center-cta { display: flex; justify-content: center; margin-top: 2.5rem; }

.experience-section {
  padding: 3rem 1.25rem 7rem;
}
.experience-panel {
  max-width: var(--max);
  margin: 0 auto;
  border-radius: 42px;
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 2rem;
  background:
    radial-gradient(circle at 25% 15%, rgba(245,200,91,0.24), transparent 25rem),
    linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.045));
}
.experience-panel h2 { margin-bottom: 0; }
.feature-stack {
  display: grid;
  gap: 1rem;
}
.feature-stack article {
  padding: 1.35rem;
  border-radius: 22px;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.12);
}
.feature-stack strong { display: block; color: var(--gold-3); margin-bottom: .35rem; font-size: 1.05rem; }
.feature-stack span { display: block; color: var(--muted); line-height: 1.55; }

.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: .85rem;
}
.gallery-item {
  border: 0;
  padding: 0;
  border-radius: 22px;
  cursor: zoom-in;
  overflow: hidden;
  background: #111;
  box-shadow: 0 20px 55px rgba(0,0,0,0.32);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: .75s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.08); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.contact-section {
  background:
    radial-gradient(circle at 15% 18%, rgba(245,200,91,0.12), transparent 28rem),
    linear-gradient(180deg, transparent, rgba(255,255,255,0.035));
}
.contact-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 1.3rem;
  align-items: stretch;
}
.contact-copy,
.map-card {
  border-radius: 36px;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255,255,255,0.13);
  background: linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  box-shadow: 0 35px 100px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.10);
}
.address-card {
  border-radius: 25px;
  margin-top: 2rem;
  padding: 1.35rem;
}
.address-card span { color: var(--gold); font-weight: 950; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; }
.address-card strong { display: block; margin: .6rem 0; font-size: 1.14rem; line-height: 1.4; }
.address-card small { display: block; color: var(--muted-2); font-weight: 800; }
.map-card { padding: .6rem; min-height: 520px; overflow: hidden; }
.map-card iframe { width: 100%; height: 100%; min-height: 520px; border: 0; border-radius: 30px; filter: grayscale(.12) contrast(1.05) brightness(.95); }

.site-footer {
  padding: 3rem 1.25rem 1.4rem;
  background: #030304;
  border-top: 1px solid rgba(245,200,91,0.18);
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}
.site-footer img { width: 72px; height: 72px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(245,200,91,0.32); margin-bottom: 1rem; }
.site-footer p { color: var(--muted); line-height: 1.7; max-width: 520px; }
.site-footer h3 { color: var(--gold); margin: 0 0 1rem; font-size: .92rem; text-transform: uppercase; letter-spacing: .14em; }
.site-footer a { display: block; color: rgba(255,255,255,0.72); margin: 0 0 .65rem; }
.site-footer a:hover { color: var(--gold-3); }
.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-2);
  font-size: .86rem;
}
.footer-message { padding: .7rem 1rem; font-size: .82rem; }

.wa-floating {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  z-index: 65;
  background: linear-gradient(135deg, #35ff83, #09b85f);
  color: #031408;
  box-shadow: 0 22px 55px rgba(9,184,95,.34), inset 0 1px 0 rgba(255,255,255,.55);
  display: grid;
  place-items: center;
  animation: pulseWhats 2.4s ease-in-out infinite;
}
.wa-floating svg { width: 34px; height: 34px; fill: currentColor; }
@keyframes pulseWhats { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-5px) scale(1.04); } }

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.contact-modal.open { display: flex; }
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.74);
  backdrop-filter: blur(12px);
}
.contact-modal__panel {
  width: min(960px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  border-radius: 34px;
  padding: clamp(1.2rem, 3vw, 2.3rem);
  z-index: 2;
  background:
    radial-gradient(circle at 16% 6%, rgba(245,200,91,.22), transparent 22rem),
    linear-gradient(145deg, rgba(18,18,21,.96), rgba(5,5,7,.96));
  border-color: rgba(245,200,91,.28);
  animation: modalIn .28s var(--ease) both;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(22px) scale(.96) rotateX(8deg); } to { opacity: 1; transform: translateY(0) scale(1) rotateX(0); } }
.contact-modal__close,
.lightbox__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.9rem;
  line-height: 1;
}
.modal-head { padding-right: 3rem; }
.modal-head h2 {
  margin: .75rem 0 .5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -.04em;
  line-height: .98;
}
.modal-head p { color: var(--muted); line-height: 1.6; max-width: 720px; }
.modal-section {
  margin-top: 1.4rem;
  padding: 1.1rem;
  border-radius: 24px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
}
.modal-section h3 {
  margin: 0 0 .9rem;
  color: var(--gold-3);
  letter-spacing: .06em;
  font-size: .96rem;
  text-transform: uppercase;
}
.contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
.contact-list a,
.notify-all {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .35rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.12);
  transition: .25s var(--ease);
}
.contact-list a:hover {
  transform: translateY(-3px);
  border-color: rgba(245,200,91,.45);
  background: rgba(245,200,91,.10);
}
.contact-list--groups a { background: linear-gradient(145deg, rgba(245,200,91,.15), rgba(0,0,0,.26)); }
.contact-list strong { color: #fff; font-size: .98rem; }
.contact-list span { color: var(--muted-2); font-size: .84rem; font-weight: 750; }
.staff-actions {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .85rem;
  flex-wrap: wrap;
}
.staff-actions span { color: var(--muted-2); font-size: .88rem; }
.notify-all {
  min-height: 0;
  width: max-content;
  padding: .9rem 1.1rem;
  border: 1px solid rgba(245,200,91,.55);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe08a 0%, #f5c85b 45%, #b57920 100%);
  color: #140b00;
  font-weight: 950;
  box-shadow: 0 16px 32px rgba(245,200,91,.18);
}
.notify-all:hover { transform: translateY(-2px); filter: brightness(1.05); }
.modal-section--owner { opacity: .92; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 35px 100px rgba(0,0,0,.75);
}
.lightbox__close { z-index: 2; }

.reveal-up,
.reveal-scale {
  opacity: 0;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-up { transform: translateY(30px); }
.reveal-scale { transform: translateY(30px) scale(.96); }
.reveal-up.visible,
.reveal-scale.visible { opacity: 1; transform: none; }
.tilt-card { transition: transform .18s ease, box-shadow .25s var(--ease), border-color .25s var(--ease); will-change: transform; }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 560px; order: -1; max-width: 640px; width: 100%; margin: 0 auto; }
  .collection-grid { grid-template-columns: 1fr; grid-auto-rows: 430px; }
  .product-wall { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .experience-panel, .contact-layout { grid-template-columns: 1fr; }
  .map-card { min-height: 410px; }
  .map-card iframe { min-height: 410px; }
}
@media (max-width: 860px) {
  .top-strip__inner { flex-direction: column; align-items: flex-start; gap: .35rem; }
  .site-header { border-radius: 26px; flex-wrap: wrap; margin-inline: .7rem; }
  .nav-links { order: 3; width: 100%; overflow-x: auto; justify-content: flex-start; padding-bottom: .2rem; }
  .nav-links a { white-space: nowrap; }
  .hero-section { padding-top: 3rem; }
  .hero-copy h1 { font-size: clamp(3rem, 16vw, 5.6rem); }
  .proof-row { grid-template-columns: 1fr; }
  .hero-stage { min-height: 450px; }
  .floating-product { display: none; }
  .stage-badge { right: 4%; top: 5%; transform: none; }
  .product-wall { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 180px; }
  .product-tile--wide { grid-column: span 1; }
  .product-tile--tall { grid-row: span 1; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 160px; }
  .gallery-item--wide, .gallery-item--tall { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .brand__text small { display: none; }
  .brand__logo-wrap { width: 44px; height: 44px; }
  .header-enquire { padding: .75rem 1rem; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-stage { min-height: 360px; }
  .hero-card--main { inset: 12% 0 14%; border-radius: 30px; }
  .orbit--outer { inset: 10% 0 15%; }
  .section { padding: 5rem 1rem; }
  .collection-grid { grid-auto-rows: 360px; }
  .product-wall { gap: .7rem; grid-auto-rows: 150px; }
  .product-tile { border-radius: 20px; }
  .wa-floating { width: 58px; height: 58px; }
  .modal-head { padding-right: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  #auroraCanvas { display: none; }
}

.gallery-section .section-heading a { color: var(--gold-2); font-weight: 900; text-decoration: none; }
.gallery-section .section-heading a:hover { color: #fff3ba; }


/* Patch refinements: modal lock, gallery alignment, hero hover depth */
html, body { max-width: 100%; overflow-x: hidden; }
body.modal-open { position: fixed; width: 100%; }
.contact-modal { overflow: hidden; touch-action: pan-y; }
.contact-modal__panel {
  max-width: calc(100vw - 2rem);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.contact-modal__panel *,
.contact-list a,
.staff-actions { min-width: 0; max-width: 100%; }
.contact-list a, .contact-list span, .contact-list strong { overflow-wrap: anywhere; word-break: normal; }
.notify-all {
  background: linear-gradient(135deg, #fff1b0 0%, #f5c85b 45%, #b57920 100%) !important;
  color: #150b00 !important;
  border-color: rgba(255, 224, 138, .85) !important;
  text-shadow: none !important;
}
.gallery-grid {
  grid-auto-flow: dense;
  justify-content: center;
}
.gallery-item { align-self: stretch; }
.hero-stage { isolation: isolate; }
.hero-card--main { z-index: 3; }
.orbit { z-index: 1; }
.floating-product {
  z-index: 9;
  transition: scale .28s var(--ease), z-index .01s, box-shadow .28s var(--ease), border-color .28s var(--ease), filter .28s var(--ease);
}
.floating-product:hover {
  z-index: 30;
  scale: 1.14;
  border-color: rgba(255, 226, 145, .75);
  box-shadow: 0 34px 95px rgba(0,0,0,.62), 0 0 55px rgba(245,200,91,.24);
  filter: saturate(1.08) contrast(1.06);
}
.stage-badge { z-index: 11; }
@media (max-width: 860px) {
  body.modal-open { position: fixed; width: 100%; }
  .contact-modal__panel { max-width: calc(100vw - 1.2rem); }
}


/* v3 luxury patch: larger LK identity, smaller headline, 3D slideshow, steeper stripe */
.brand { gap: 0.95rem; }
.brand__logo-wrap {
  width: 68px;
  height: 68px;
  box-shadow: 0 0 38px rgba(245,200,91,0.26), 0 12px 34px rgba(0,0,0,.36);
}
.brand__text strong {
  font-size: clamp(1.38rem, 1.65vw, 1.78rem);
  letter-spacing: .055em;
}
.brand__text small {
  font-size: .72rem;
  letter-spacing: .105em;
}
.nav-links a { padding-inline: .82rem; }
.hero-copy h1 {
  font-size: clamp(3rem, 6.2vw, 6.15rem);
  max-width: 690px;
}
.marquee {
  transform: rotate(-3.2deg) scale(1.08);
  margin: -1.85rem 0 1.55rem;
}
.hero-stage {
  min-height: 660px;
  perspective: 1500px;
  overflow: visible;
}
.hero-slideshow {
  position: absolute;
  inset: 12% 4% 12% 4%;
  border-radius: 46px;
  transform-style: preserve-3d;
  transform: rotateY(-11deg) rotateX(5deg) translateZ(38px);
  filter: drop-shadow(0 65px 95px rgba(0,0,0,.58));
  z-index: 6;
}
.hero-slideshow::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 56px;
  background: linear-gradient(135deg, rgba(255,230,150,.58), rgba(245,200,91,.12) 38%, rgba(255,255,255,.06) 65%, rgba(245,200,91,.32));
  opacity: .72;
  filter: blur(.2px);
  transform: translateZ(-18px);
  z-index: -2;
}
.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: -34px;
  border-radius: 70px;
  background: radial-gradient(circle at 35% 12%, rgba(245,200,91,.26), transparent 38%), radial-gradient(circle at 70% 90%, rgba(255,255,255,.12), transparent 42%);
  filter: blur(24px);
  opacity: .7;
  z-index: -3;
}
.showcase-slide {
  position: absolute;
  inset: 0;
  border-radius: 46px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: #13100a;
  box-shadow: 0 48px 120px rgba(0,0,0,.62), inset 0 1px 0 rgba(255,255,255,.16);
  opacity: 0;
  transform: translate3d(8%, 4%, -140px) rotateY(22deg) scale(.78);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1), filter .9s ease;
  filter: saturate(.85) contrast(.92) brightness(.82);
  will-change: opacity, transform;
}
.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 4.8s ease;
}
.showcase-slide.is-active {
  opacity: 1;
  z-index: 4;
  transform: translate3d(0,0,70px) rotateY(0) scale(1);
  filter: saturate(1.08) contrast(1.07) brightness(1);
}
.showcase-slide.is-active img { transform: scale(1.13); }
.showcase-slide.is-next {
  opacity: .72;
  z-index: 3;
  transform: translate3d(15%, -5%, 4px) rotateY(-18deg) scale(.76);
  filter: saturate(.92) contrast(.96) brightness(.88);
}
.showcase-slide.is-far {
  opacity: .42;
  z-index: 2;
  transform: translate3d(-13%, 7%, -45px) rotateY(18deg) scale(.62);
  filter: saturate(.82) contrast(.88) brightness(.76);
}
.showcase-shine {
  position: absolute;
  inset: 0;
  border-radius: 46px;
  z-index: 8;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 10%, rgba(255,255,255,.2) 42%, transparent 55%);
  mix-blend-mode: screen;
  animation: slideshowShine 4.2s ease-in-out infinite;
}
@keyframes slideshowShine {
  0%, 22% { transform: translateX(-125%); opacity: 0; }
  34%, 58% { opacity: .75; }
  82%,100% { transform: translateX(125%); opacity: 0; }
}
.slide-orb {
  position: absolute;
  border-radius: 999px;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(circle, rgba(245,200,91,.65), rgba(245,200,91,.10) 42%, transparent 70%);
  filter: blur(1px);
  animation: orbFloat 5.6s ease-in-out infinite;
}
.slide-orb--one { width: 125px; height: 125px; right: 0; top: 7%; }
.slide-orb--two { width: 88px; height: 88px; left: 4%; bottom: 6%; animation-delay: -2s; }
@keyframes orbFloat {
  0%,100% { transform: translate3d(0,0,95px) scale(1); }
  50% { transform: translate3d(-14px,-20px,130px) scale(1.12); }
}
.stage-badge { z-index: 12; }
.proof-row strong { font-size: 1.6rem; }

@media (max-width: 1120px) {
  .brand__logo-wrap { width: 62px; height: 62px; }
  .brand__text strong { font-size: 1.35rem; }
  .nav-links a { padding-inline: .65rem; font-size: .8rem; }
}
@media (max-width: 860px) {
  .hero-copy h1 { font-size: clamp(2.75rem, 14vw, 5rem); }
  .hero-slideshow { inset: 13% 3% 13%; transform: rotateY(-6deg) rotateX(3deg) translateZ(22px); }
}
@media (max-width: 560px) {
  .brand__logo-wrap { width: 54px !important; height: 54px !important; }
  .brand__text strong { font-size: 1.18rem; }
  .hero-slideshow { inset: 13% 0 14%; border-radius: 30px; }
  .showcase-slide { border-radius: 30px; }
  .showcase-shine { border-radius: 30px; }
}


/* v4 correction patch: stronger brand, clean slideshow, no random gallery gap, no limiting finish wording */
.site-header {
  padding: 0.95rem 1.15rem;
  border-radius: 34px;
}
.brand {
  position: relative;
  z-index: 80;
  gap: 1.1rem;
  padding: 0.28rem 0.75rem 0.28rem 0.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245,200,91,.16), rgba(255,255,255,.055));
  border: 1px solid rgba(245,200,91,.28);
  box-shadow: 0 0 42px rgba(245,200,91,.18), inset 0 1px 0 rgba(255,255,255,.13);
}
.brand__logo-wrap {
  width: 86px !important;
  height: 86px !important;
  flex: 0 0 86px;
  border: 2px solid rgba(255,224,138,.82);
  background: #050505;
  box-shadow:
    0 0 0 6px rgba(245,200,91,.08),
    0 0 55px rgba(245,200,91,.42),
    0 18px 42px rgba(0,0,0,.46);
}
.brand__text strong {
  color: #fff5c8;
  font-size: clamp(1.9rem, 2.45vw, 2.55rem) !important;
  line-height: .92;
  letter-spacing: .065em;
  text-shadow: 0 0 25px rgba(245,200,91,.34), 0 2px 0 rgba(0,0,0,.72);
}
.brand__text small {
  color: rgba(255,240,183,.86);
  font-size: .78rem !important;
  font-weight: 900;
  letter-spacing: .12em;
}
.nav-links a { padding-inline: .68rem; font-size: .8rem; }
.header-enquire { padding-inline: 1.05rem; }

.hero-slideshow { overflow: visible; }
.showcase-shine { display: none !important; }
.showcase-slide { overflow: hidden; }
.showcase-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.30) 100%);
  opacity: .75;
}
.showcase-slide.is-active {
  box-shadow: 0 60px 135px rgba(0,0,0,.68), 0 0 55px rgba(245,200,91,.18), inset 0 1px 0 rgba(255,255,255,.18);
}
.showcase-slide.is-active img { animation: heroKenBurns 5.8s ease-in-out both; }
@keyframes heroKenBurns {
  from { transform: scale(1.045) translate3d(0,0,0); }
  to { transform: scale(1.12) translate3d(-1.2%, -1%, 0); }
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  grid-auto-rows: 225px !important;
  grid-auto-flow: row !important;
  align-items: stretch;
}
.gallery-item,
.gallery-item--tall,
.gallery-item--wide {
  grid-column: span 1 !important;
  grid-row: span 1 !important;
  min-height: 0;
}
.gallery-item img { object-fit: cover; object-position: center; }

.collection-card__content p,
.feature-stack span { font-size: 1rem; }

@media (max-width: 1120px) {
  .brand__logo-wrap { width: 76px !important; height: 76px !important; flex-basis: 76px; }
  .brand__text strong { font-size: 1.75rem !important; }
  .nav-links { gap: .1rem; }
  .nav-links a { padding-inline: .5rem; }
}
@media (max-width: 860px) {
  .brand { padding-right: .55rem; }
  .brand__logo-wrap { width: 66px !important; height: 66px !important; flex-basis: 66px; }
  .brand__text strong { font-size: 1.38rem !important; }
  .brand__text small { font-size: .64rem !important; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; grid-auto-rows: 170px !important; }
}
@media (max-width: 560px) {
  .brand__logo-wrap { width: 58px !important; height: 58px !important; flex-basis: 58px; }
  .brand__text strong { font-size: 1.16rem !important; }
  .brand__text small { display: none; }
}


/* v5 direct fixes: original-style slideshow, no dream badge, filled product wall, smoother contacts, larger nav */
html, body { max-width: 100%; overflow-x: hidden; }
body.modal-open { overflow: hidden !important; position: static !important; width: auto !important; }
body.modal-open #auroraCanvas { opacity: 0; }
.stage-badge { display: none !important; }

.nav-links { gap: .28rem !important; }
.nav-links a {
  font-size: .95rem !important;
  padding: .82rem .95rem !important;
  letter-spacing: .035em;
}

.hero-slideshow {
  overflow: hidden !important;
  transform: rotateY(-8deg) rotateX(4deg) translateZ(35px) !important;
  border: 1px solid rgba(255,255,255,.18);
  background: #070604;
}
.hero-slideshow::before {
  inset: -10px !important;
  opacity: .58 !important;
  filter: blur(0) !important;
}
.hero-slideshow::after {
  inset: -26px !important;
  opacity: .45 !important;
  filter: blur(18px) !important;
}
.showcase-slide {
  inset: 0 !important;
  opacity: 0 !important;
  transform: none !important;
  filter: none !important;
  transition: opacity 1.05s cubic-bezier(.16,1,.3,1), visibility 1.05s cubic-bezier(.16,1,.3,1) !important;
  visibility: hidden;
  border-radius: 46px !important;
  z-index: 0 !important;
  box-shadow: none !important;
}
.showcase-slide::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 36%, rgba(0,0,0,.10) 72%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.35)) !important;
  opacity: 1 !important;
  z-index: 1;
}
.showcase-slide img {
  transform: scale(1.14) !important;
  transition: transform 6.2s ease !important;
  filter: contrast(1.05) saturate(1.06) brightness(.96);
}
.showcase-slide.is-active {
  opacity: 1 !important;
  visibility: visible;
  z-index: 3 !important;
  transform: none !important;
  filter: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15) !important;
}
.showcase-slide.is-active img {
  animation: originalSlideZoom 5.9s ease both !important;
}
@keyframes originalSlideZoom {
  from { transform: scale(1.16) translate3d(0,0,0); }
  to { transform: scale(1.04) translate3d(-.8%, -.8%, 0); }
}
.hero-slideshow .slide-content {
  position: absolute;
  left: clamp(1.25rem, 5vw, 3.5rem);
  right: clamp(1.1rem, 4vw, 2.8rem);
  top: 50%;
  transform: translateY(-44%);
  z-index: 2;
  max-width: 78%;
  color: #fff;
  pointer-events: none;
  text-shadow: 0 18px 35px rgba(0,0,0,.65);
}
.hero-slideshow .slide-tag {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: clamp(.68rem, 1vw, .86rem);
  color: var(--gold-3);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 900;
  opacity: 0;
  transform: translateY(18px);
  transition: .72s cubic-bezier(.16,1,.3,1);
}
.hero-slideshow .slide-tag::before,
.hero-slideshow .slide-tag::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(245,200,91,.55);
}
.hero-slideshow .slide-title {
  margin: .78rem 0 .3rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.65rem, 6.2vw, 5.6rem);
  line-height: .82;
  letter-spacing: -.055em;
  color: #fff8df;
  opacity: 0;
  transform: translateY(26px);
  transition: .86s cubic-bezier(.16,1,.3,1) .08s;
}
.hero-slideshow .slide-title em {
  font-style: italic;
  color: var(--gold-3);
}
.hero-slideshow .slide-line {
  width: 0;
  height: 2px;
  margin: 1rem 0 1rem;
  background: linear-gradient(90deg, var(--gold-3), transparent);
  transition: width .86s cubic-bezier(.16,1,.3,1) .22s;
}
.hero-slideshow .slide-sub {
  max-width: 580px;
  color: rgba(255,255,255,.86);
  font-size: clamp(.9rem, 1.25vw, 1.12rem);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(18px);
  transition: .78s cubic-bezier(.16,1,.3,1) .3s;
}
.showcase-slide.is-active .slide-tag,
.showcase-slide.is-active .slide-title,
.showcase-slide.is-active .slide-sub {
  opacity: 1;
  transform: translateY(0);
}
.showcase-slide.is-active .slide-line { width: 70px; }

/* ── Hero slideshow navigation dots (centered) ── */
.hero-mini-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(1.2rem, 3vw, 2rem);
  z-index: 8;
  display: flex;
  gap: .72rem;
}
.hero-mini-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.38);
  cursor: pointer;
  transition: .3s cubic-bezier(.16,1,.3,1);
}
.hero-mini-dots span.on {
  background: var(--gold-3);
  transform: scale(1.55);
  box-shadow: 0 0 18px rgba(245,200,91,.72);
}

.product-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  grid-auto-rows: 225px !important;
  grid-auto-flow: dense !important;
  align-items: stretch !important;
}
.product-wall .product-tile { min-height: 0; overflow: hidden; }
.product-wall .product-tile:nth-child(1) { grid-row: span 2 !important; }
.product-wall .product-tile:nth-child(5) { grid-column: span 2 !important; }
.product-wall .product-tile:nth-child(8) { grid-column: span 2 !important; }
.product-wall .product-tile:nth-child(12) { grid-column: span 1 !important; }
.product-wall .product-tile img { object-position: center; }

.contact-modal { overflow: hidden !important; contain: layout paint; }
.contact-modal__backdrop { backdrop-filter: none !important; background: rgba(0,0,0,.72) !important; }
.contact-modal__panel {
  animation: modalInFast .18s cubic-bezier(.16,1,.3,1) both !important;
  will-change: transform, opacity;
  transform: translateZ(0);
  max-width: min(960px, calc(100vw - 1.25rem));
  overscroll-behavior: contain;
}
@keyframes modalInFast {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.contact-list a:hover { transform: translateY(-1px) !important; }

@media (max-width: 1120px) {
  .nav-links a { font-size: .88rem !important; padding-inline: .62rem !important; }
  .hero-slideshow .slide-title { font-size: clamp(2.2rem, 8vw, 4.7rem); }
}
@media (max-width: 860px) {
  .nav-links a { font-size: .92rem !important; padding: .7rem .85rem !important; }
  .product-wall { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; grid-auto-rows: 170px !important; }
  .product-wall .product-tile,
  .product-wall .product-tile:nth-child(1),
  .product-wall .product-tile:nth-child(5),
  .product-wall .product-tile:nth-child(8),
  .product-wall .product-tile:nth-child(12) { grid-column: span 1 !important; grid-row: span 1 !important; }
  .hero-slideshow .slide-content { max-width: 90%; transform: translateY(-45%); }
}
@media (max-width: 560px) {
  .hero-slideshow .slide-title { font-size: clamp(2.2rem, 13vw, 3.6rem); }
  .hero-slideshow .slide-sub { display: none; }
  .hero-slideshow .slide-tag { font-size: .62rem; letter-spacing: .16em; }
}


/* v6 direct fixes: steeper moving stripe + restored luxury About Us section */
.marquee {
  transform: rotate(-6.2deg) scale(1.12) !important;
  margin: -2.15rem 0 2.35rem !important;
  box-shadow: 0 28px 72px rgba(0,0,0,.46), 0 0 34px rgba(245,200,91,.13) !important;
}

.about-section {
  position: relative;
  padding-top: clamp(4.5rem, 7vw, 7rem);
  padding-bottom: clamp(4.8rem, 7vw, 7.5rem);
  background:
    radial-gradient(circle at 14% 22%, rgba(245,200,91,.13), transparent 28rem),
    radial-gradient(circle at 88% 72%, rgba(255,255,255,.055), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(245,200,91,.035));
}
.about-lux-panel {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 4vw, 3.25rem);
  align-items: center;
  border-radius: 44px;
  padding: clamp(1.2rem, 3.5vw, 3rem);
  border: 1px solid rgba(245,200,91,.22);
  background:
    linear-gradient(135deg, rgba(255,255,255,.105), rgba(255,255,255,.035)),
    radial-gradient(circle at 28% 12%, rgba(245,200,91,.18), transparent 24rem);
  box-shadow: 0 48px 130px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.13);
  overflow: hidden;
}
.about-lux-panel::before {
  content: "";
  position: absolute;
  width: 48%;
  height: 160%;
  left: -22%;
  top: -30%;
  background: linear-gradient(120deg, transparent, rgba(245,200,91,.14), transparent);
  transform: rotate(-18deg);
  pointer-events: none;
}
.about-lux-photos {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-auto-rows: 190px;
  gap: 1rem;
  transform-style: preserve-3d;
  perspective: 1200px;
}
.about-lux-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 76px rgba(0,0,0,.44), 0 0 28px rgba(245,200,91,.10);
  transform: rotateY(-5deg) rotateX(2deg) translateZ(10px);
  transition: transform .55s var(--ease), filter .55s var(--ease), box-shadow .55s var(--ease);
}
.about-lux-img--main {
  grid-column: span 2;
  grid-row: span 1;
  min-height: 245px;
  transform: rotateY(-7deg) rotateX(3deg) translateZ(36px);
}
.about-lux-panel:hover .about-lux-img {
  transform: rotateY(0deg) rotateX(0deg) translateZ(22px) scale(1.018);
  filter: saturate(1.08) contrast(1.04);
  box-shadow: 0 34px 92px rgba(0,0,0,.52), 0 0 42px rgba(245,200,91,.15);
}
.about-lux-copy { position: relative; z-index: 2; }
.about-lux-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 5.2vw, 5.2rem);
  line-height: .92;
  letter-spacing: -.055em;
  margin: .75rem 0 1.25rem;
  color: #fff8df;
}
.about-lux-copy p {
  color: rgba(255,255,255,.74);
  font-size: clamp(1rem, 1.4vw, 1.17rem);
  line-height: 1.78;
  margin: 0 0 1rem;
  max-width: 690px;
}
.about-lux-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1.6rem;
}
.about-lux-facts div {
  border-radius: 22px;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(245,200,91,.18);
  background: rgba(0,0,0,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.about-lux-facts strong {
  display: block;
  color: var(--gold-3);
  font-size: 1.12rem;
  line-height: 1.2;
  margin-bottom: .32rem;
}
.about-lux-facts span {
  display: block;
  color: rgba(255,255,255,.66);
  font-size: .88rem;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .marquee { transform: rotate(-4.6deg) scale(1.1) !important; }
  .about-lux-panel { grid-template-columns: 1fr; }
  .about-lux-photos { grid-auto-rows: 165px; }
  .about-lux-img--main { min-height: 215px; }
}
@media (max-width: 560px) {
  .marquee { transform: rotate(-3.3deg) scale(1.08) !important; }
  .about-section { padding-top: 4rem; }
  .about-lux-panel { border-radius: 30px; padding: 1rem; }
  .about-lux-photos { gap: .7rem; grid-auto-rows: 130px; }
  .about-lux-img { border-radius: 20px; }
  .about-lux-img--main { min-height: 175px; }
  .about-lux-facts { grid-template-columns: 1fr; }
}

/* v8 direct fixes: fixed header/nav and centred final product row */
body {
  padding-top: 8.15rem !important;
}
.top-strip {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 12000 !important;
}
.site-header {
  position: fixed !important;
  top: 2.45rem !important;
  left: 50% !important;
  right: auto !important;
  width: min(calc(var(--max) + 2rem), calc(100vw - 2rem)) !important;
  max-width: calc(var(--max) + 2rem) !important;
  margin: 0 !important;
  z-index: 11950 !important;
  transform: translateX(-50%) translateZ(0) !important;
}
.site-header.scrolled {
  margin-top: 0 !important;
}
.nav-links a {
  font-size: .96rem !important;
}
.brand__logo-wrap {
  width: 67px !important;
  height: 67px !important;
}
.brand__text strong {
  font-size: 1.46rem !important;
}
.brand__text small {
  font-size: .76rem !important;
}
.section,
.hero-section,
.products-section,
.about-section,
.gallery-section,
.contact-section {
  scroll-margin-top: 9.1rem !important;
}
.contact-modal {
  z-index: 30000 !important;
}

.products-section .product-wall {
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  grid-auto-rows: 225px !important;
  grid-auto-flow: dense !important;
}
.products-section .product-wall .product-tile {
  grid-column: span 3 !important;
}
.products-section .product-wall .product-tile--tall,
.products-section .product-wall .product-tile:nth-child(1) {
  grid-column: span 3 !important;
  grid-row: span 2 !important;
}
.products-section .product-wall .product-tile--wide,
.products-section .product-wall .product-tile:nth-child(5),
.products-section .product-wall .product-tile:nth-child(8) {
  grid-column: span 6 !important;
}
.products-section .product-wall .product-tile:nth-child(10) {
  grid-column: 2 / span 3 !important;
}
.products-section .product-wall .product-tile:nth-child(11) {
  grid-column: 5 / span 3 !important;
}
.products-section .product-wall .product-tile:nth-child(12) {
  grid-column: 8 / span 3 !important;
}

@media (max-width: 1120px) {
  body { padding-top: 8.6rem !important; }
  .brand__logo-wrap { width: 58px !important; height: 58px !important; }
  .brand__text strong { font-size: 1.28rem !important; }
  .nav-links a { font-size: .9rem !important; padding-inline: .55rem !important; }
}
@media (max-width: 860px) {
  body { padding-top: 12.8rem !important; }
  .site-header {
    top: 2.35rem !important;
    width: calc(100vw - 1.1rem) !important;
    border-radius: 26px !important;
  }
  .products-section .product-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: 170px !important;
  }
  .products-section .product-wall .product-tile,
  .products-section .product-wall .product-tile--tall,
  .products-section .product-wall .product-tile--wide,
  .products-section .product-wall .product-tile:nth-child(1),
  .products-section .product-wall .product-tile:nth-child(5),
  .products-section .product-wall .product-tile:nth-child(8),
  .products-section .product-wall .product-tile:nth-child(10),
  .products-section .product-wall .product-tile:nth-child(11),
  .products-section .product-wall .product-tile:nth-child(12) {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}
@media (max-width: 560px) {
  body { padding-top: 13.6rem !important; }
  .top-strip__inner { padding: .55rem .9rem !important; font-size: .66rem !important; }
  .brand__logo-wrap { width: 48px !important; height: 48px !important; }
  .brand__text strong { font-size: 1.05rem !important; }
  .brand__text small { font-size: .62rem !important; }
}

/* v9 focused patch: circular logo, straight stripe, smaller hero slideshow text */
.brand__logo-wrap {
  border-radius: 50% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  padding: 0 !important;
  background: #050505 !important;
  display: grid !important;
  place-items: center !important;
}
.brand__logo-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  display: block !important;
  transform: none !important;
}

.marquee {
  transform: rotate(0deg) scale(1) !important;
  margin: 0 0 2.75rem !important;
  width: 100% !important;
  border-radius: 0 !important;
}

.hero-slideshow .slide-content {
  left: clamp(1.05rem, 3.8vw, 2.75rem) !important;
  right: clamp(1rem, 3vw, 2rem) !important;
  max-width: 64% !important;
  transform: translateY(-42%) !important;
}
.hero-slideshow .slide-tag {
  font-size: clamp(.52rem, .72vw, .68rem) !important;
  letter-spacing: .145em !important;
  gap: .48rem !important;
}
.hero-slideshow .slide-tag::before,
.hero-slideshow .slide-tag::after {
  width: 17px !important;
}
.hero-slideshow .slide-title {
  font-size: clamp(1.85rem, 3.7vw, 3.75rem) !important;
  line-height: .88 !important;
  letter-spacing: -.04em !important;
  margin: .55rem 0 .2rem !important;
}
.hero-slideshow .slide-line {
  margin: .72rem 0 .72rem !important;
}
.showcase-slide.is-active .slide-line {
  width: 52px !important;
}
.hero-slideshow .slide-sub {
  max-width: 410px !important;
  font-size: clamp(.72rem, .9vw, .95rem) !important;
  line-height: 1.48 !important;
}

@media (max-width: 1120px) {
  .hero-slideshow .slide-content { max-width: 72% !important; }
  .hero-slideshow .slide-title { font-size: clamp(1.75rem, 5vw, 3.15rem) !important; }
}
@media (max-width: 860px) {
  .hero-slideshow .slide-content { max-width: 82% !important; }
  .hero-slideshow .slide-title { font-size: clamp(1.65rem, 8vw, 2.75rem) !important; }
}
@media (max-width: 560px) {
  .hero-slideshow .slide-title { font-size: clamp(1.55rem, 10vw, 2.3rem) !important; }
  .hero-slideshow .slide-tag { font-size: .55rem !important; }
}

/* v10 focused patch: fix logo crop + reverse stripe direction */
.brand__logo-wrap {
  border-radius: 999px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  background: #050505 !important;
}
.brand__logo-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 999px !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
}
.marquee__track {
  animation: marqueeMoveLTR 22s linear infinite !important;
  will-change: transform !important;
}
@keyframes marqueeMoveLTR {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* v11 focused patch: force the logo holder to be a true circle, not an oval */
.brand__logo-wrap {
  width: 78px !important;
  height: 78px !important;
  inline-size: 78px !important;
  block-size: 78px !important;
  min-width: 78px !important;
  max-width: 78px !important;
  min-height: 78px !important;
  max-height: 78px !important;
  flex: 0 0 78px !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
}
.brand__logo-wrap img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 50% !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 860px) {
  .brand__logo-wrap {
    width: 62px !important;
    height: 62px !important;
    inline-size: 62px !important;
    block-size: 62px !important;
    min-width: 62px !important;
    max-width: 62px !important;
    min-height: 62px !important;
    max-height: 62px !important;
    flex: 0 0 62px !important;
  }
}
@media (max-width: 560px) {
  .brand__logo-wrap {
    width: 54px !important;
    height: 54px !important;
    inline-size: 54px !important;
    block-size: 54px !important;
    min-width: 54px !important;
    max-width: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
    flex: 0 0 54px !important;
  }
}


/* v13 patch: slightly smaller left hero title + cleaner slideshow with minimal overlay */
.hero-copy h1 {
  font-size: clamp(3rem, 6.3vw, 6.35rem) !important;
  max-width: 680px !important;
}

#heroSlideshow .slide-tag,
#heroSlideshow .slide-title,
#heroSlideshow .slide-sub,
#heroSlideshow .slide-line {
  display: none !important;
}

#heroSlideshow .slide-content--minimal {
  position: absolute !important;
  left: 1.35rem !important;
  right: 1.35rem !important;
  bottom: 1.3rem !important;
  top: auto !important;
  transform: none !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  max-width: none !important;
  width: auto !important;
  z-index: 3 !important;
  pointer-events: none !important;
}

#heroSlideshow .slide-ornament {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  padding: .72rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(10,10,10,.50), rgba(30,22,8,.30));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 40px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#heroSlideshow .slide-ornament__dots {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
}

#heroSlideshow .slide-ornament__dots span {
  width: .44rem;
  height: .44rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff3c1, #f2c14c 58%, #9f7114 100%);
  box-shadow: 0 0 12px rgba(242,193,76,.55);
}

#heroSlideshow .slide-ornament__line {
  width: clamp(56px, 8vw, 92px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(242,193,76,.18), rgba(242,193,76,.95), rgba(255,255,255,.24));
}

#heroSlideshow .slide-counter {
  min-width: 58px;
  height: 58px;
  padding: 0 .9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(17,17,17,.82), rgba(50,35,10,.40));
  border: 1px solid rgba(245,200,91,.42);
  color: rgba(255,243,208,.92);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .14em;
  box-shadow: 0 18px 38px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#heroSlideshow .showcase-slide::after {
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 46%, rgba(0,0,0,.56) 100%) !important;
}

@media (max-width: 860px) {
  .hero-copy h1 {
    font-size: clamp(2.65rem, 10vw, 4.85rem) !important;
  }
  #heroSlideshow .slide-content--minimal {
    left: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
  }
  #heroSlideshow .slide-ornament {
    padding: .62rem .82rem;
    gap: .68rem;
  }
  #heroSlideshow .slide-counter {
    min-width: 50px;
    height: 50px;
    font-size: .96rem;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.6rem) !important;
  }
  #heroSlideshow .slide-ornament__line {
    width: 48px;
  }
  #heroSlideshow .slide-counter {
    min-width: 44px;
    height: 44px;
    font-size: .84rem;
    letter-spacing: .1em;
  }
}


/* v14 patch: cleaner header/nav + top corner LK logo on slideshow + remove bottom numbers */
.site-header {
  display: grid !important;
  grid-template-columns: minmax(280px, 440px) 1fr auto !important;
  align-items: center !important;
  gap: 1.2rem !important;
  padding: .68rem 1rem .68rem 1rem !important;
  border-radius: 38px !important;
}
.brand {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 440px !important;
  gap: .85rem !important;
  padding: .4rem 1.05rem .4rem .55rem !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(245,200,91,.08)) !important;
  border: 1px solid rgba(245,200,91,.18) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 30px rgba(0,0,0,.16) !important;
}
.brand__text {
  min-width: 0 !important;
}
.brand__text strong {
  font-size: 1.34rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}
.brand__text small {
  font-size: .56rem !important;
  letter-spacing: .16em !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.nav-links {
  justify-self: center !important;
  justify-content: center !important;
  gap: .55rem !important;
  flex-wrap: wrap !important;
}
.nav-links a {
  padding: .78rem 1rem !important;
  font-size: .92rem !important;
}
.header-enquire {
  justify-self: end !important;
  white-space: nowrap !important;
}

#heroSlideshow .slide-counter {
  display: none !important;
}
#heroSlideshow .slide-content--minimal {
  justify-content: flex-start !important;
}
#heroSlideshow .slide-corner-logo {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(12,12,12,.72), rgba(42,29,8,.34));
  border: 1px solid rgba(245,200,91,.38);
  box-shadow: 0 14px 30px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 4;
  pointer-events: none;
}
#heroSlideshow .slide-corner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(250px, 380px) 1fr auto !important;
  }
  .brand { max-width: 380px !important; }
  .brand__text strong { font-size: 1.18rem !important; }
  .brand__text small { font-size: .52rem !important; }
  .nav-links a { padding: .72rem .78rem !important; font-size: .86rem !important; }
}
@media (max-width: 860px) {
  .site-header {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: .8rem !important;
    border-radius: 26px !important;
  }
  .brand {
    max-width: 100% !important;
    flex: 1 1 100% !important;
  }
  .nav-links {
    order: 2 !important;
    width: 100% !important;
    justify-content: center !important;
  }
  .header-enquire {
    order: 3 !important;
    margin-inline: auto !important;
  }
  #heroSlideshow .slide-corner-logo {
    width: 50px;
    height: 50px;
    top: .85rem;
    right: .85rem;
  }
}
@media (max-width: 560px) {
  .brand__text strong { font-size: 1.02rem !important; }
  .brand__text small { font-size: .48rem !important; letter-spacing: .12em !important; }
  .nav-links a { font-size: .8rem !important; }
  #heroSlideshow .slide-corner-logo {
    width: 44px;
    height: 44px;
    top: .75rem;
    right: .75rem;
  }
}
