/* ================================================
   KVM Creations — WHITE / LIGHT THEME
   ================================================ */

@font-face {
  font-family: 'Cardival Demo';
  src: url('../assets/fonts/Cardival Demo.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Top Luxury';
  src: url('../assets/fonts/TOPLUXURY.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- DESIGN TOKENS --- */
:root {
  --clr-bg:         #ffffff;
  --clr-bg-light:   #f8f7f5;
  --clr-bg-card:    #f2f0ed;
  --clr-cream:     #f4f0ea;
  --clr-gold:       #957531;
  --clr-gold-light: #bd9b52;
  --clr-gold-dark:  #6b5220;
  --clr-white:      #1a1814;
  --clr-fg:          #1a1814;
  --clr-muted:      #3b3632;
  --clr-fg-muted:   #3b3632;
  --clr-border:     #e0dbd4;
  --font-serif:     'Top Luxury', serif;
  --font-sans:      system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --nav-h:          80px;
  --ease-gold:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-expo:      cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body { background: transparent; color: var(--clr-white); font-family: var(--font-sans); font-weight: 300; line-height: 1.7; overflow-x: hidden; }


/* --- WALLPAPER BACKGROUND --- */
.bg-wallpaper {
  position: fixed;
  top: -10%; left: -10%;
  width: 120vw; height: 120vh;
  z-index: -999;
  pointer-events: none;
  background: #ffffff url('../assets/wallpaper/wallpaper_hq.png') center/cover no-repeat;
  filter: brightness(0.95) contrast(1.02);
  animation: bg-zoom-global 15s var(--ease-gold) forwards;
  will-change: transform;
}

.bg-wallpaper__inner {
  display: none;
}

@keyframes bg-zoom-global {
  0% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
a { color: inherit; text-decoration: none; transition: color 0.4s var(--ease-expo), transform 0.4s var(--ease-expo), opacity 0.4s ease; }
img { display: block; max-width: 100%; transition: transform 0.8s var(--ease-expo), filter 0.8s var(--ease-expo), opacity 0.8s ease; will-change: transform; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; transition: transform 0.4s var(--ease-expo), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 2px; }
::selection { background: var(--clr-gold); color: #ffffff; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  justify-content: space-between; padding: 0 48px;
  background: #ffffff;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.nav__logo { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.nav__logo-icon { font-family: var(--font-serif); font-size: 26px; font-weight: 500; font-style: italic; color: var(--clr-gold); letter-spacing: 2px; }
.nav__logo-text { font-size: 7.5px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--clr-muted); margin-top: 2px; }
.nav__links { 
  display: flex; 
  align-items: center; 
  gap: 32px; 
  list-style: none; 
}
.nav__link { font-size: 11px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: var(--clr-muted); position: relative; transition: color 0.3s; }
.nav__link::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--clr-gold); transition: width 0.35s var(--ease-gold); }
.nav__link:hover, .nav__link.active { color: var(--clr-gold); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

/* Premium Hamburger */
.nav__burger { 
  display: none; 
  flex-direction: column; justify-content: center; align-items: center; gap: 6px; 
  width: 60px; height: 60px; cursor: pointer; z-index: 1000; background: #ffffff; 
  border: 1px solid var(--clr-border); border-radius: 50%; box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
  transition: transform 0.3s, box-shadow 0.3s; padding: 0; 
}
.nav__burger:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.nav__burger span { 
  display: block; height: 2px; background: var(--clr-gold-light); 
  transition: transform 0.5s cubic-bezier(0.75, 0, 0.125, 1), opacity 0.3s, width 0.3s cubic-bezier(0.75, 0, 0.125, 1); 
  width: 26px; transform-origin: center; pointer-events: none; 
}
.nav__burger span:nth-child(2) { width: 18px; transform: translateX(-4px); }
.nav__burger span:nth-child(3) { width: 12px; transform: translateX(-7px); }

.nav__burger:hover span { background: #d4af37; }
.nav__burger:hover span:nth-child(1) { width: 12px; transform: translateX(-7px); }
.nav__burger:hover span:nth-child(2) { width: 26px; transform: translateX(0); }
.nav__burger:hover span:nth-child(3) { width: 18px; transform: translateX(-4px); }

.nav__burger.open span { width: 24px !important; background: #1a1814; transform: none !important; }
.nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg) !important; }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: translateX(10px) !important; }
.nav__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg) !important; }
.nav__mobile { position: fixed; inset: 0; background: #ffffff; z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px; opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease-gold); }
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile .nav__link { font-size: 32px; letter-spacing: 6px; font-family: var(--font-serif); font-weight: 300; font-style: italic; }
.nav__mobile-social { display: flex; gap: 24px; margin-top: 20px; }
.nav__mobile-social a { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--clr-muted); transition: color 0.3s; }
.nav__mobile-social a:hover { color: var(--clr-gold); }



/* ===== PAGE WRAPPER ===== */
.page-wrapper { min-height: 100vh; }

/* ===== HERO SLIDER ===== */
.hero { position: relative; height: 100vh; height: 100dvh; overflow: hidden; background: #0a0a08; }
.hero__slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; will-change: transform, opacity; }
.hero__slide.active { opacity: 1; pointer-events: auto; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92); transform-origin: center center; will-change: transform; transition: none; }
.hero__slide::after { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.35); pointer-events: none; }
.hero__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(0, 0, 0, 0.25); color: var(--clr-white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.35s ease; backdrop-filter: blur(8px); box-shadow: 0 4px 16px rgba(0,0,0,0.3); outline: none; }
.hero__arrow:hover { background: rgba(212, 175, 55, 0.9); border-color: #d4af37; color: #000000; transform: translateY(-50%) scale(1.1); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4); }
.hero__arrow--prev { left: 32px; }
.hero__arrow--next { right: 32px; }
.hero__dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; align-items: center; }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: rgba(255, 255, 255, 0.4); transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1); outline: none; }
.hero__dot:hover { background: rgba(255, 255, 255, 0.8); }
.hero__dot.active { background: var(--clr-gold); width: 26px; border-radius: 4px; }

@media (max-width: 768px) {
  .hero__arrow { width: 40px; height: 40px; }
  .hero__arrow--prev { left: 12px; }
  .hero__arrow--next { right: 12px; }
  .hero__dots { bottom: 18px; }
}

/* ===== SECTION HEADINGS ===== */
.section-label { font-size: 9px; letter-spacing: 5px; text-transform: uppercase; color: var(--clr-gold); margin-bottom: 14px; }
.section-title { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 64px); font-weight: 300; font-style: italic; color: var(--clr-white); line-height: 1.15; }
.section-title em { font-style: normal; color: var(--clr-gold); }
.gold-line { width: 40px; height: 1px; background: var(--clr-gold); margin: 24px 0; opacity: 0.5; }

/* ===== GALLERY PAGE ===== */
.gallery-page { padding: 60px 48px 100px; max-width: 1400px; margin: 0 auto; }
.gallery-page__header { margin-bottom: 60px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 3px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: filter 0.5s; filter: brightness(0.95) saturate(0.95); animation: ambient-zoom-out 16s ease-in-out infinite alternate; will-change: transform; }
.gallery-item:hover img { filter: brightness(0.75) saturate(0.85); }
.gallery-item__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px 24px; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%); opacity: 0; transition: opacity 0.45s; }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__title { font-family: var(--font-serif); font-size: 22px; font-style: italic; color: #ffffff; margin-bottom: 4px; }
.gallery-item__date { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.75); }

/* ===== ESHOOT PAGE ===== */
.eshoot-page { max-width: 880px; margin: 0 auto; padding: 60px 48px 120px; }
.eshoot-page__header { margin-bottom: 60px; }
.eshoot-item { margin-bottom: 80px; }
.eshoot-item__image { width: 100%; aspect-ratio: 3/2; object-fit: cover; margin-bottom: 20px; filter: brightness(0.95) saturate(0.95); transition: filter 0.5s; animation: ambient-zoom-out 16s ease-in-out infinite alternate; will-change: transform; }
.eshoot-item__image:hover { filter: brightness(1) saturate(1); }
.eshoot-item__title { font-family: var(--font-serif); font-size: 28px; font-style: italic; color: var(--clr-gold); margin-bottom: 6px; }
.eshoot-item__date { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--clr-muted); margin-bottom: 14px; }
.eshoot-item__desc { font-size: 15px; color: var(--clr-muted); line-height: 1.8; }

/* ===== STORIES PAGE ===== */
.stories-page { max-width: 960px; margin: 0 auto; padding: 60px 48px 120px; }
.stories-page__header { margin-bottom: 60px; }
.story-item { margin-bottom: 100px; border-bottom: 1px solid var(--clr-border); padding-bottom: 60px; }
.story-item:last-child { border-bottom: none; }
.story-item__image-main { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 12px; filter: brightness(0.93); transition: filter 0.5s; animation: ambient-zoom-out 16s ease-in-out infinite alternate; will-change: transform; }
.story-item__image-main:hover { filter: brightness(1); }
.story-item__thumbnails { display: flex; gap: 4px; margin-bottom: 20px; }
.story-item__thumb { flex: 1; aspect-ratio: 1; object-fit: cover; cursor: pointer; opacity: 0.55; transition: opacity 0.3s; filter: brightness(0.9); }
.story-item__thumb:hover, .story-item__thumb.active { opacity: 1; filter: brightness(1); }
.story-item__meta { display: flex; gap: 24px; align-items: center; padding: 12px 0; border-top: 1px solid var(--clr-border); margin-bottom: 32px; }
.story-item__action { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--clr-muted); transition: color 0.3s; }
.story-item__action:hover { color: var(--clr-gold); }
.story-item__title { font-family: var(--font-serif); font-size: 34px; font-style: italic; color: var(--clr-gold); margin-bottom: 8px; }
.story-item__date { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--clr-muted); }

.about-editorial-wrapper {
  padding: 120px 48px 120px;
  max-width: 1380px;
  margin: 0 auto;
}

.hero__layout {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 100px;
}

.hero__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  padding: 48px 52px;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
  aspect-ratio: auto;
  overflow: visible;
  box-sizing: border-box;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: #a8832a;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.hero__title-wrap {
  overflow: visible;
  line-height: 1.15;
  display: block;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: #000000;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  text-shadow: none;
}

.loaded .hero__title {
  opacity: 1;
  transform: translateY(0%);
}

.hero__title.italic {
  font-style: italic;
  padding-left: 1.2rem;
  color: #b89230;
  text-shadow: none;
}

.hero__desc {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-top: 1.2rem;
  font-weight: 300;
  color: #333333;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.6rem;
  text-decoration: none;
  color: #111111;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 1.5px solid #b89230;
  padding-bottom: 0.4rem;
  align-self: flex-start;
  transition: color 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.hero__cta:hover {
  color: #b89230;
  border-color: #111111;
  transform: translateX(4px);
}

.hero__image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero__image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: autoZoomOut 7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform;
}

/* Editorial Split Section 2 & 4 */
.editorial-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 100px;
}

.editorial-split-section.reverse {
  grid-template-columns: 1fr 1fr;
}

.editorial-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: unset;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.editorial-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: autoZoomOut 7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.editorial-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  padding: 48px 52px;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
  aspect-ratio: auto;
  overflow: visible;
  box-sizing: border-box;
}

.editorial-text-col .hero__eyebrow {
  color: #a8832a;
}

.editorial-text-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-style: italic;
  font-weight: 300;
  color: #b89230;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.editorial-text-col p {
  font-size: 1.02rem;
  color: #333333;
  line-height: 1.85;
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.editorial-quote-box {
  border-left: 3px solid #b89230;
  padding: 14px 20px;
  margin-top: 1.8rem;
  background: rgba(184, 146, 48, 0.08);
}

.editorial-quote-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: #111111;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Editorial Stats Grid Section */
.editorial-stats-section {
  background: #ffffff;
  padding: 48px 40px;
  margin-bottom: 120px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.editorial-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card__number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: #b89230;
  line-height: 1;
}

.stat-card__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #222222;
  font-weight: 500;
  margin-top: 0.8rem;
}

@media (max-width: 900px) {
  .about-editorial-wrapper {
    padding: 100px 16px 80px;
  }
  .hero__layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    margin-bottom: 60px;
    min-height: auto;
  }
  .hero__text-col,
  .editorial-text-col {
    aspect-ratio: auto;
    height: auto;
    min-height: auto;
    padding: 32px 24px;
    overflow-y: visible;
  }
  .hero__title.italic {
    padding-left: 0;
  }
  .hero__image-wrapper,
  .editorial-image-wrapper {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .editorial-split-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 60px;
  }
  .editorial-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .about-editorial-wrapper {
    padding: 90px 14px 80px;
  }

  .hero__layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.8rem;
    margin-bottom: 45px;
    min-height: auto;
  }

  .hero__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    margin-bottom: 1.2rem;
  }

  .hero__title {
    font-size: clamp(2.4rem, 9vw, 3.6rem);
    line-height: 1.15;
  }

  .hero__title.italic {
    padding-left: 0;
  }

  .hero__desc {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-top: 1.4rem;
  }

  .hero__cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    margin-top: 1.8rem;
    background: rgba(149, 117, 49, 0.18);
    border: 1px solid var(--clr-gold);
    border-radius: 30px;
    color: #ffffff;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    box-shadow: 0 6px 20px rgba(149, 117, 49, 0.2);
  }

  .hero__image-col {
    justify-content: center;
    width: 100%;
  }

  .hero__image-wrapper {
    height: 320px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
  }

  /* App Story Sections */
  .editorial-split-section {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-bottom: 50px;
  }

  .editorial-split-section.reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .editorial-image-wrapper {
    height: 280px;
    min-height: auto;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
  }

  .editorial-text-col h2 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    margin-bottom: 1rem;
  }

  .editorial-text-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .editorial-quote-box {
    padding: 12px 18px;
    border-left-width: 3px;
    border-radius: 0 8px 8px 0;
    margin-top: 1.2rem;
  }

  .editorial-quote-box p {
    font-size: 1rem;
  }

  /* App Stat Cards */
  .editorial-stats-section {
    padding: 30px 0;
    margin-bottom: 50px;
  }

  .editorial-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 16px 10px;
    border-radius: 10px;
  }

  .stat-card__number {
    font-size: 2.5rem;
  }

  .stat-card__label {
    font-size: 0.62rem;
    letter-spacing: 2px;
    margin-top: 0.4rem;
  }
}

/* ===== REDESIGNED ULTRA-LUXURY EDITORIAL CONTACT PAGE ===== */
.contact-redesign-wrapper {
  padding: 40px 48px 120px;
  max-width: 1380px;
  margin: 0 auto;
}

.contact-split-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 90px;
  min-height: 75vh;
}

.contact-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-text-box {
  background: #ffffff;
  padding: 40px 44px;
  border-radius: 0;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.contact-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(184, 146, 48, 0.08);
  border: 1px solid rgba(184, 146, 48, 0.3);
  backdrop-filter: blur(12px);
  padding: 8px 22px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a8832a;
  margin-bottom: 24px;
  align-self: flex-start;
  font-weight: 500;
}

.contact-main-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 20px;
}

.contact-main-heading em {
  font-style: italic;
  color: #b89230;
  text-shadow: none;
}

.contact-hero-bio {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333333;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 0;
}

/* Giant Click-to-Copy Email Banner */
.giant-email-banner {
  background: rgba(18, 18, 15, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 24px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.giant-email-banner:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: #e5c158;
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 30px rgba(229, 193, 88, 0.2);
}

.giant-email__text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: #ffffff;
  letter-spacing: 0.5px;
}

.giant-email__badge {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e5c158;
  background: rgba(10, 10, 8, 0.8);
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Contact Image Frame */
.contact-split-media {
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 600px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

.contact-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: autoZoomOut 7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.contact-media-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 10, 8, 0.88);
  backdrop-filter: blur(12px);
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e5c158;
  border-radius: 4px;
}

/* Social Media Platforms Grid Section */
.contact-platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.platform-card-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 32px 26px;
  border-radius: 16px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-card-item:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.55);
}

.platform-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8832a;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.platform-card-item:hover .platform-card__icon {
  background: #a8832a;
  color: #ffffff;
  transform: scale(1.08);
}

.platform-card__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #a8832a;
  margin-bottom: 6px;
  font-weight: 500;
}

.platform-card__val {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #111111;
  margin-bottom: 14px;
}

.platform-card__btn {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444444;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.platform-card-item:hover .platform-card__btn {
  color: #111111;
}

/* --- PLATFORM SPECIFIC BRAND COLORS (WHITE THEME ENHANCED) --- */
/* Instagram Brand Colors */
.platform-card-item--instagram .platform-card__icon {
  background: rgba(225, 48, 108, 0.1);
  border-color: rgba(225, 48, 108, 0.3);
  color: #e1306c;
}

.platform-card-item--instagram:hover {
  border-color: transparent;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.5), 0 0 35px rgba(225, 48, 108, 0.25);
}

.platform-card-item--instagram:hover .platform-card__icon {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
}

.platform-card-item--instagram .platform-card__label,
.platform-card-item--instagram:hover .platform-card__btn {
  color: #e1306c;
}

/* TikTok Brand Colors */
.platform-card-item--tiktok .platform-card__icon {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.25);
  color: #111111;
}

.platform-card-item--tiktok:hover {
  border-color: transparent;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.5), 0 0 35px rgba(0, 242, 254, 0.2);
}

.platform-card-item--tiktok:hover .platform-card__icon {
  background: linear-gradient(135deg, #00f2fe 0%, #fe2c55 100%);
  color: #ffffff;
}

.platform-card-item--tiktok .platform-card__label,
.platform-card-item--tiktok:hover .platform-card__btn {
  color: #111111;
}

/* WhatsApp Brand Colors */
.platform-card-item--whatsapp .platform-card__icon {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.35);
  color: #128c7e;
}

.platform-card-item--whatsapp:hover {
  border-color: transparent;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.5), 0 0 35px rgba(37, 211, 102, 0.25);
}

.platform-card-item--whatsapp:hover .platform-card__icon {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
}

.platform-card-item--whatsapp .platform-card__label,
.platform-card-item--whatsapp:hover .platform-card__btn {
  color: #128c7e;
}

@media (max-width: 992px) {
  .contact-split-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
    margin-bottom: 60px;
  }
  .contact-split-media {
    height: 380px;
  }
  .contact-platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .contact-redesign-wrapper {
    padding: 20px 14px 80px;
  }
  .contact-platforms-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .giant-email-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}

/* Interactive Direct Contact Cards Grid */
.contact-interactive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.contact-card-item {
  position: relative;
  background: rgba(18, 18, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card-item:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(212, 175, 55, 0.15);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.4rem;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.contact-card-item:hover .contact-card__icon {
  background: var(--clr-gold);
  color: #000;
  transform: scale(1.08);
}

.contact-card__label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 6px;
}

.contact-card__val {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.contact-card__action {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.contact-card-item:hover .contact-card__action {
  color: var(--clr-gold);
}

/* Social Media Platforms Showcase Section */
.social-platforms-section {
  margin-bottom: 100px;
}

.social-section-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--clr-gold);
  margin-bottom: 40px;
}

.social-platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.social-card {
  position: relative;
  background: rgba(18, 18, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.social-card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(212, 175, 55, 0.15);
}

.social-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.social-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.3rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.social-card:hover .social-card__icon-wrap {
  background: var(--clr-gold);
  color: #000;
}

.social-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #ffffff;
}

.social-card__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}

.social-card__link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Toast Copy Badge */
.copy-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(15, 15, 12, 0.95);
  border: 1px solid var(--clr-gold);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.copy-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 900px) {
  .contact-awwwards-wrapper { padding: 24px 16px 80px; }
  .contact-interactive-grid { grid-template-columns: 1fr; gap: 16px; }
  .social-platforms-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--clr-border); padding: 60px 48px 40px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; background: transparent; }
.footer__quote { max-width: 500px; background: #ffffff; border-left: 4px solid var(--clr-gold); padding: 24px 32px; border-radius: 0 4px 4px 0; text-align: left; box-shadow: 0 4px 16px rgba(0,0,0,0.03); }
.footer__quote p { font-family: var(--font-serif); font-size: 16px; font-style: italic; color: #000000; line-height: 1.8; margin-bottom: 12px; min-height: 85px; display: flex; align-items: center; transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); transform: translateY(0); }
.footer__quote cite { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--clr-gold-dark); font-weight: 500; font-style: normal; display: block; transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); transform: translateY(0); }
.footer__quote.fade-out p, .footer__quote.fade-out cite { opacity: 0; transform: translateY(8px); }
.footer__social { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
.footer__social a, .nav__mobile-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 18px;
  border-radius: 30px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.footer__social a:hover, .nav__mobile-social a:hover {
  color: #ffffff;
  background: #000000;
  border-color: var(--clr-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}
.footer__social a svg, .nav__mobile-social a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}
.footer__social a:hover svg, .nav__mobile-social a:hover svg {
  transform: scale(1.15);
  stroke: var(--clr-gold);
}
.footer__social-dot { display: none; }
.footer__copy { font-size: 10px; letter-spacing: 2px; color: rgba(122,112,104,0.6); text-transform: uppercase; }

/* ===== MASK REVEAL (CURTAIN PULL) ANIMATION ===== */
.mask-reveal-wrap {
  display: inline-block;
  overflow: hidden;
  /* Extra padding prevents clipping of box-shadow or tall letters while overflow hidden clips translations */
  padding: 10px 10px 0 10px;
  margin: -10px -10px 0 -10px;
  vertical-align: bottom;
}

.mask-reveal-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transform-origin: bottom center;
}

.loaded .mask-reveal-inner {
  animation: curtain-glide 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0.2s);
}

@keyframes curtain-glide {
  0% {
    opacity: 0;
    transform: translateY(110%);
  }
  1% {
    opacity: 1; 
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== REVEAL ANIMATIONS (INSTANT VISIBILITY - NO SLOW FADE-IN) ===== */
.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.reveal.in-view {
  opacity: 1 !important;
  transform: none !important;
}
.reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4 {
  transition: none !important;
  transition-delay: 0s !important;
}

@keyframes ambient-zoom-out {
  0% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ===== CUSTOM CURSOR ===== */
.cursor__ring {
  width: 28px;
  height: 28px;
  border: 1px solid var(--clr-gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.65;
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.cursor__dot {
  width: 4px;
  height: 4px;
  background: var(--clr-gold);
  border-radius: 50%;
  position: fixed;
  top: -2px;
  left: -2px;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
    .nav__burger { 
      display: flex; 
      flex-direction: column; 
      justify-content: center; 
      align-items: center; 
      width: 48px; 
      height: 48px; 
      padding: 0; 
      gap: 5px; 
    }
    .nav__burger span { width: 22px; }
    .nav__burger span:nth-child(2) { width: 15px; transform: translateX(-3.5px); }
    .nav__burger span:nth-child(3) { width: 9px; transform: translateX(-6.5px); }
    .nav__burger:hover span:nth-child(1) { width: 9px; transform: translateX(-6.5px); }
    .nav__burger:hover span:nth-child(2) { width: 22px; transform: translateX(0); }
    .nav__burger:hover span:nth-child(3) { width: 15px; transform: translateX(-3.5px); }
    .nav__burger.open span { width: 20px !important; transform: none !important; }
    .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
    .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }
  .hero { height: calc(100svh - 64px); }
  .gallery-page, .eshoot-page, .stories-page, .about-page, .contact-page { padding: 40px 24px 80px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-group--row { grid-template-columns: 1fr; }
  .footer { padding: 40px 24px 32px; }
}
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero__slide { transition: none; } }
/* ===== HOMEPAGE-ONLY SECTIONS ===== */

/* Hero — nav bar first, then video below it */
.hero--full { 
  height: 100vh; 
  height: 100dvh;
  margin-top: 0; 
}

/* Intro statement */
.home-intro {
  max-width: 900px;
  margin: 120px auto;
  padding: 80px 64px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  text-align: center;
}
.home-intro__eyebrow {
  font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--clr-gold); margin-bottom: 32px; display: block;
}
.home-intro__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300; font-style: normal;
  color: #000000; line-height: 1.2;
  margin-bottom: 32px;
}
.home-intro__title em { 
  font-style: italic; 
  background: linear-gradient(135deg, #8b6c31 0%, #bd9b52 30%, #d4af37 50%, #bd9b52 70%, #8b6c31 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-intro__line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  margin: 0 auto 32px;
}
.home-intro__body {
  font-size: 16px; color: #111111; line-height: 1.9;
  max-width: 620px; margin: 0 auto;
}

/* Featured Work */
.home-featured {
  padding: 0 48px 120px;
  max-width: 1400px;
  margin: 0 auto;
}
.home-featured__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
}
.home-featured__header-left .section-label { margin-bottom: 8px; }
.home-featured__header-left h2 {
  font-family: var(--font-serif); font-size: clamp(28px, 3vw, 42px);
  font-weight: 300; font-style: italic; color: var(--clr-white);
}
.home-featured__cta {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--clr-gold); border-bottom: 1px solid var(--clr-gold);
  padding-bottom: 2px; transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.home-featured__cta:hover { color: var(--clr-gold-light); border-color: var(--clr-gold-light); }
.home-featured__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 4px;
}
.home-featured__item {
  position: relative; overflow: hidden; cursor: pointer;
}
.home-featured__item--tall { grid-row: span 2; }
.home-featured__item img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 1s ease-in-out, filter 0.5s ease;
  filter: brightness(0.92) saturate(0.9);
  will-change: opacity;
}
.home-featured__item img.active {
  opacity: 1;
}
.home-featured__item:hover img { filter: brightness(0.72); }
.home-featured__item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.58) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.4s;
}
.home-featured__item:hover .home-featured__item-label { opacity: 1; }
.home-featured__item-label p {
  font-family: var(--font-serif); font-size: 18px; font-style: italic; color: #fff;
}

/* Services strip */
.home-services {
  padding: 100px 48px;
  background: #ffffff;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.home-services__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  background: transparent;
}
.home-service {
  background: transparent;
  border: 1px solid rgba(224, 219, 212, 0.6);
  padding: 52px 44px; position: relative;
  transition: background 0.35s, transform 0.35s, box-shadow 0.35s;
}
.home-service:hover { background: rgba(255,255,255,0.2); }
.home-service__num {
  font-family: var(--font-serif); font-size: 48px; font-style: italic;
  color: #000000; line-height: 1; margin-bottom: 28px;
  transition: color 0.35s;
}
.home-service:hover .home-service__num { color: var(--clr-gold); opacity: 0.3; }
.home-service__title {
  font-family: var(--font-serif); font-size: 24px; font-style: italic;
  background: linear-gradient(135deg, #5c4415 0%, #8b6c31 25%, #bd9b52 45%, #8b6c31 65%, #5c4415 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.home-service__desc { font-size: 13px; color: var(--clr-muted); line-height: 1.8; }
.home-service__arrow {
  position: absolute; bottom: 44px; right: 44px;
  font-size: 20px; color: var(--clr-gold); opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.home-service:hover .home-service__arrow { opacity: 1; transform: translateX(4px); }

/* About teaser */
.home-about {
  padding: 120px 48px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.home-about__img-wrap { position: relative; }
.home-about__img-wrap img,
.home-about__img-wrap video {
  width: 100%; height: auto;
  filter: brightness(0.94) saturate(0.9);
  will-change: transform;
}
.home-about__img-wrap::after {
  content: ''; position: absolute;
  top: 24px; left: 24px;
  width: 100%; height: 100%;
  border: 2px solid var(--clr-gold); z-index: -1;
}

/* Vogue Mask Reveal */
.vogue-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.vogue-mask {
  position: absolute;
  inset: 0;
  background-color: var(--clr-gold);
  z-index: 2;
  transform-origin: top;
}
.vogue-parallax {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.vogue-parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15); /* Scale up to give room for parallax */
}

.video-badge {
  position: absolute;
  bottom: -80px;
  left: -30px;
  background: var(--clr-bg);
  padding: 16px 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--clr-border);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-badge img {
  width: 180px;
  height: auto;
  display: block;
}

.round-badge {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  z-index: 10;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease;
}

.round-badge:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.08);
}

.round-badge img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s ease-in-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.round-badge img.active {
  opacity: 1;
  transform: scale(1);
}
.home-about__content {
  background: #ffffff;
  padding: 64px 48px;
  border-radius: 4px;
}
.home-about__content .section-label { margin-bottom: 16px; }
.home-about__content h2 {
  font-family: var(--font-serif); font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300; font-style: italic; color: var(--clr-white);
  margin-bottom: 28px; line-height: 1.2;
}
.home-about__content h2 em { font-style: normal; color: var(--clr-gold); }
.home-about__content p {
  font-size: 15px; color: var(--clr-muted); line-height: 1.9; margin-bottom: 20px;
}
.home-about__link {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--clr-white); margin-top: 12px;
  border-bottom: 1px solid var(--clr-border); padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.home-about__link:hover { color: var(--clr-gold); border-color: var(--clr-gold); }
.home-about__link::after { content: '→'; transition: transform 0.3s; }
.home-about__link:hover::after { transform: translateX(4px); }

/* Responsive */
@media (max-width: 1024px) {
  .home-featured__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 260px;
  }
  .home-featured__item--tall { grid-row: span 1; }
  .home-services__inner { grid-template-columns: 1fr; }
  .home-about { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .home-intro { margin: 80px 16px; padding: 64px 24px; }
  .home-featured { padding: 0 24px 80px; }
  .home-featured__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .home-featured__item { aspect-ratio: 4/3; }
  .home-featured__item--tall { grid-row: span 1; }
  .home-services { padding: 60px 24px; }
  .home-service { padding: 36px 28px; }
  .home-about { padding: 80px 24px; }
}

/* --- SHINY HOVER EFFECT --- */
.shiny-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
}
.shiny-wrapper::before,
.shiny-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  z-index: 5;
  pointer-events: none;
}
.shiny-wrapper:hover::before {
  animation: shine-sweep 2.5s ease forwards;
}
.shiny-wrapper:hover::after {
  animation: shine-sweep 2.5s ease 0.4s forwards;
}
@keyframes shine-sweep {
  0% { left: -150%; }
  100% { left: 250%; }
}

/* --- PREMIUM GOLD/SILVER SHINE FOR WHITE BOXES --- */
.home-intro,
.home-services,
.home-about__content,
.footer__quote {
  position: relative;
  overflow: hidden;
}

.home-intro::before,
.home-services::before,
.home-about__content::before,
.footer__quote::before {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 150%; height: 100%;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(212, 175, 55, 0.3) 40%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(192, 192, 192, 0.35) 55%,
    rgba(212, 175, 55, 0.3) 60%,
    transparent 80%
  );
  animation: premium-shine 6s infinite ease-in-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes premium-shine {
  0% { left: -150%; }
  25% { left: 150%; }
  100% { left: 150%; }
}

/* --- GLOBAL PRELOADER --- */
.global-preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: #ffffff;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.global-preloader video {
  width: 90vw;
  max-width: 600px;
  height: auto;
}

@media (min-width: 768px) {
  .global-preloader video {
    width: 70vw;
    max-width: 900px;
  }
}

@media (min-width: 1200px) {
  .global-preloader video {
    width: 60vw;
    max-width: 1200px;
  }
}
.global-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* --- HERO MUTE BUTTON --- */
.hero-mute-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  z-index: 10;
  transition: all 0.3s ease;
}
.hero-mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .hero-mute-btn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ==========================================================================
   PRO UI/UX CREATIVE GALLERY & COLLAGE STYLES
   ========================================================================== *//* --- HERO SECTION UI/UX POLISH --- */
.gallery-page__header {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}

.gallery-page__header .gold-line {
  margin: 20px auto 0;
}

/* Smooth Ambient Floating Showcase Container */
.gallery-hero-collage {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 20px auto 75px;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, rgba(149, 117, 49, 0.08) 0%, transparent 70%);
  animation: heroFloat 8s ease-in-out infinite alternate;
}

@keyframes heroFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.collage-item {
  position: absolute;
  border-radius: 0;
  overflow: hidden;
  background: #12120f;
  border: none;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease, filter 0.5s ease, z-index 0.3s;
  cursor: pointer;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: autoZoomOut 7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform;
}

.collage-item--main {
  width: 520px;
  height: 350px;
  z-index: 3;
  transform: translateY(0);
}

.collage-item--left {
  width: 380px;
  height: 280px;
  left: 7%;
  transform: translateY(18px);
  z-index: 2;
  filter: brightness(0.85);
}

.collage-item--right {
  width: 380px;
  height: 280px;
  right: 7%;
  transform: translateY(18px);
  z-index: 2;
  filter: brightness(0.85);
}

.collage-item:hover {
  z-index: 10 !important;
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.75);
}

.collage-item--left:hover {
  transform: translateY(6px);
  filter: brightness(1);
}

.collage-item--right:hover {
  transform: translateY(6px);
  filter: brightness(1);
}

.collage-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(10, 10, 8, 0.85);
  backdrop-filter: blur(12px);
  padding: 8px 18px;
  border-radius: 0;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--clr-gold);
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
  .gallery-hero-collage { height: 320px; margin: 20px auto 45px; }
  .collage-item--main { width: 400px; height: 260px; }
  .collage-item--left { width: 280px; height: 200px; left: 2%; }
  .collage-item--right { width: 280px; height: 200px; right: 2%; }
}

@media (max-width: 768px) {
  .gallery-page {
    padding: 25px 16px 80px;
  }

  .gallery-page__header {
    margin-bottom: 20px;
    padding: 0 8px;
    text-align: center;
  }

  .gallery-page__header .section-title {
    font-size: clamp(28px, 8vw, 42px);
  }

  .gallery-page__header .gold-line {
    margin: 14px auto 0;
  }

  /* App-style horizontal touch snap swipe carousel */
  .gallery-hero-collage {
    position: relative;
    width: 100vw;
    margin: 10px -16px 30px;
    height: 260px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 20px;
    gap: 14px;
    background: none;
    animation: none;
    scrollbar-width: none;
  }

  .gallery-hero-collage::-webkit-scrollbar {
    display: none;
  }

  .collage-item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    flex: 0 0 82vw;
    height: 240px;
    scroll-snap-align: center;
    transform: none !important;
    filter: brightness(1) !important;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.65);
  }

  .collage-item--main,
  .collage-item--left,
  .collage-item--right {
    display: block !important;
    width: 82vw !important;
    height: 240px !important;
  }

  .collage-badge {
    bottom: 12px;
    left: 12px;
    padding: 6px 14px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    background: rgba(10, 10, 8, 0.88);
  }
}

.hero-swipe-hint {
  display: none;
}

@media (max-width: 768px) {
  .hero-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin: -15px auto 25px;
    opacity: 0.85;
  }
}

/* --- CATEGORY FILTER TABS --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto 50px;
  max-width: fit-content;
  padding: 6px 10px;
  background: #ffffff;
  border: 1px solid var(--clr-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 40px;
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--clr-muted);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
  color: var(--clr-gold);
  background: rgba(149, 117, 49, 0.08);
}

.filter-btn.active {
  background: linear-gradient(135deg, #957531 0%, #bd9b52 100%);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(149, 117, 49, 0.35);
  border-radius: 30px;
}

@media (max-width: 768px) {
  .gallery-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: calc(100% - 32px);
    margin: 0 16px 36px;
    padding: 6px;
    border-radius: 30px;
    scrollbar-width: none;
  }
  .gallery-filters::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    flex: 0 0 auto;
    font-size: 0.72rem;
    padding: 8px 18px;
    white-space: nowrap;
  }
}

/* --- UNCROPPED CREATIVE MASONRY COLUMN GRID --- */
.gallery-masonry-wrapper {
  max-width: 1440px;
  margin: 0 auto 120px;
  padding: 0 24px;
}

.gallery-masonry {
  column-count: 4;
  column-gap: 24px;
  width: 100%;
}

@media (max-width: 1200px) {
  .gallery-masonry { column-count: 3; column-gap: 20px; }
}

@media (max-width: 840px) {
  .gallery-masonry-wrapper { padding: 0 16px; margin-bottom: 60px; }
  .gallery-masonry { column-count: 2; column-gap: 14px; }
  .gallery-card { margin-bottom: 14px; border-radius: 0; }
}

@media (max-width: 480px) {
  .gallery-masonry-wrapper { padding: 0 12px; }
  .gallery-masonry { column-count: 2; column-gap: 10px; }
  .gallery-card { margin-bottom: 10px; border-radius: 0; }
}

.gallery-card {
  break-inside: avoid;
  margin-bottom: 24px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: rgba(18, 18, 15, 0.85);
  border: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: opacity 0.4s ease, box-shadow 0.4s ease;
  display: inline-block;
  width: 100%;
}

.gallery-card--tilt-left {
  transform: rotate(-1.2deg);
}

.gallery-card--tilt-right {
  transform: rotate(1.2deg);
}

@media (max-width: 768px) {
  .gallery-card--tilt-left, .gallery-card--tilt-right {
    transform: none;
  }
}

.gallery-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
  opacity: 0.94;
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0;
  transform: scale(1.15);
  transition: filter 0.5s ease;
  will-change: transform;
}

.gallery-card.in-view img,
.gallery-card.active img,
.gallery-card img {
  animation: autoZoomOut 7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gallery-card:hover img {
  filter: brightness(1.08) saturate(1.05);
}

@keyframes autoZoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1.00);
  }
}

.gallery-card__expand {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: rgba(10, 10, 8, 0.7);
  backdrop-filter: blur(10px);
  border: none;
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card__expand {
  opacity: 1;
}

/* --- SHINY HOVER WRAPPER & AGENCY GLARE EFFECT --- */
.shiny-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.shiny-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -70%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}

.gallery-card:hover .shiny-wrapper::after,
.collage-item:hover .shiny-wrapper::after,
.shiny-wrapper:hover::after {
  transform: rotate(25deg) translateX(450%);
}

/* --- LIGHTBOX MODAL --- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 0;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
}

.lightbox-caption {
  margin-top: 18px;
  text-align: center;
}

.lightbox-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--clr-cream);
}

.lightbox-sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--clr-gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 100001;
}

.lightbox-close:hover {
  background: var(--clr-gold);
  color: #000;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 100001;
}

.lightbox-nav:hover {
  background: var(--clr-gold);
  color: #000;
}

.lightbox-nav--prev { left: 30px; }
.lightbox-nav--next { right: 30px; }

@media (max-width: 768px) {
  .lightbox-modal { padding: 12px; }
  .lightbox-content { max-width: 96vw; max-height: 90vh; }
  .lightbox-content img { max-height: 70vh; border-radius: 0; }
  .lightbox-caption { margin-top: 12px; }
  .lightbox-title { font-size: 1.15rem; }
  .lightbox-sub { font-size: 0.72rem; }
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    background: rgba(10, 10, 8, 0.85);
  }
  .lightbox-nav--prev { left: 8px; }
  .lightbox-nav--next { right: 8px; }
  .lightbox-close {
    top: 12px; right: 12px;
    width: 42px; height: 42px;
    font-size: 1.5rem;
    background: rgba(10, 10, 8, 0.85);
  }
}

/* ==========================================================================
   ULTRA-LUXURY MOBILE APP EXPERIENCE (NATIVE APP UX POLISH)
   ========================================================================== */

/* Touch & Highlight Reset */
* {
  -webkit-tap-highlight-color: transparent;
}
a, button, input, textarea, .gallery-card, .collage-item, .filter-btn, .mobile-nav-item, .hero__cta, .giant-email-banner, .platform-card-item, .contact-card-item {
  touch-action: manipulation;
}

/* Global Overflow Protection */
html, body {
  overflow-x: hidden !important;
  width: 100%;
}

/* Glassmorphic Floating Bottom App Navigation Dock (< 768px) */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    position: fixed;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 420px;
    height: 62px;
    background: rgba(12, 12, 10, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 35px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 8px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  }

  .mobile-bottom-nav.nav-hidden {
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
    pointer-events: none;
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    transition: color 0.3s ease, transform 0.2s ease, background 0.3s ease;
    flex: 1;
    min-height: 48px;
  }

  .mobile-nav-item:active {
    transform: scale(0.92);
  }

  .mobile-nav-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), stroke 0.3s ease;
    stroke: rgba(255, 255, 255, 0.6);
  }

  .mobile-nav-item span {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
  }

  .mobile-nav-item.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.14);
  }

  .mobile-nav-item.active .mobile-nav-icon {
    stroke: #d4af37;
    transform: translateY(-1px) scale(1.08);
  }

  /* Padding adjustments to prevent content overlap with bottom dock */
  body {
    padding-bottom: calc(75px + env(safe-area-inset-bottom));
  }

  .footer {
    padding-bottom: 95px !important;
  }

  /* Header Logo & Burger fixes on Mobile */
  .nav__logo-text {
    font-size: 9.5px !important;
    letter-spacing: 2px !important;
    color: #8f8475 !important;
  }

  /* Hide Hamburger & Mobile Overlay Drawer on Mobile in favor of Bottom App Dock */
  .nav__burger,
  .nav__mobile {
    display: none !important;
  }

  /* Contact page email banner wrap fix */
  .giant-email__text {
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    font-size: clamp(1.05rem, 4vw, 1.5rem) !important;
  }

  .giant-email-banner {
    width: 100% !important;
  }

  /* Positioning Toast Notice above bottom bar */
  .copy-toast {
    bottom: 88px !important;
  }

  /* Hero Mute button position on mobile */
  .hero-mute-btn {
    bottom: 88px !important;
    right: 16px !important;
  }

  /* Badges positioning on mobile (no clipping) */
  .round-badge {
    top: -20px !important;
    right: 10px !important;
    width: 85px !important;
    height: 85px !important;
  }

  .video-badge {
    bottom: -40px !important;
    left: 10px !important;
    padding: 10px 16px !important;
  }

  .video-badge img {
    width: 130px !important;
  }
}

/* ==========================================================================
   ULTRA-LUXURY EYE-CATCHING CONTACT PAGE REDESIGN
   ========================================================================== */
.contact-redesign-wrapper {
  padding: 40px 48px 120px;
  max-width: 1380px;
  margin: 0 auto;
}

.contact-hero-section {
  text-align: center;
  margin-bottom: 60px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.contact-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(184, 146, 48, 0.08);
  border: 1px solid rgba(184, 146, 48, 0.3);
  backdrop-filter: blur(12px);
  padding: 8px 24px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a8832a;
  margin-bottom: 24px;
  font-weight: 500;
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 10px #25d366;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.contact-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 20px;
}

.contact-hero-heading em {
  font-style: italic;
  color: #b89230;
}

.contact-hero-sub {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  line-height: 1.8;
  color: #444444;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Main Grid: Form + Side Dock */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 90px;
}

.contact-form-card {
  background: #ffffff;
  padding: 48px 44px;
  border-radius: 16px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.form-card__title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-style: italic;
  color: #000000;
  margin-bottom: 6px;
}

.form-card__desc {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 32px;
}

/* Service Pill Selector */
.service-selector-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 8px;
}

.service-pill {
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #f8f7f5;
  color: #333333;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-pill:hover,
.service-pill.active {
  background: #000000;
  color: #d4af37;
  border-color: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 8px;
  font-weight: 500;
  min-height: 20px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: #f8f7f5;
  border: 1.5px solid #e0dbd4;
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #111111;
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #b89230;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(184, 146, 48, 0.12);
}

.submit-inquiry-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #181815 0%, #000000 100%);
  color: #d4af37;
  border: 1px solid #b89230;
  border-radius: 40px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-top: 10px;
}

.submit-inquiry-btn:hover {
  background: #b89230;
  color: #000000;
  border-color: #b89230;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(184, 146, 48, 0.35);
}

.submit-inquiry-btn.loading {
  background: transparent;
  border-color: #b89230;
  color: #d4af37;
  pointer-events: none;
  opacity: 0.8;
  box-shadow: 0 0 15px rgba(184, 146, 48, 0.2);
}

.submit-inquiry-btn.loading .spinner-icon {
  animation: spinner-rotate 1s linear infinite;
}

@keyframes spinner-rotate {
  100% { transform: rotate(360deg); }
}

.submit-inquiry-btn.success {
  background: #d4af37;
  color: #000000;
  border-color: #b89230;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(184, 146, 48, 0.4);
}

/* Side Col: Giant Email + Media Frame + WhatsApp */
.contact-side-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.giant-email-banner {
  background: rgba(18, 18, 15, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 24px 28px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.giant-email-banner:hover {
  background: rgba(212, 175, 55, 0.14);
  border-color: #e5c158;
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 30px rgba(229, 193, 88, 0.2);
}

.giant-email-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.giant-email-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.giant-email-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b89230;
}

.giant-email__text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: #ffffff;
  letter-spacing: 0.5px;
}

.giant-email__badge {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e5c158;
  background: rgba(10, 10, 8, 0.8);
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.contact-side-card {
  background: rgba(18, 18, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 28px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.contact-side-card:hover {
  border-color: #25d366;
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(37, 211, 102, 0.2);
}

.side-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
}

.side-card__label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #25d366;
}

.side-card__val {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #ffffff;
}

.side-card__arrow {
  margin-left: auto;
  color: #25d366;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.contact-side-card:hover .side-card__arrow {
  transform: translateX(4px);
}

.social-channels-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: #b89230;
  margin-bottom: 36px;
}

@media (max-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contact-redesign-wrapper {
    padding: 20px 16px 90px;
  }
  .contact-hero-section {
    margin-bottom: 35px;
  }
  .contact-form-card {
    padding: 32px 20px;
    border-radius: 14px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .service-selector-pills {
    gap: 8px;
  }
  .service-pill {
    padding: 8px 14px;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
  }
}

/* Custom Checkboxes grid and inputs styling */
.service-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--clr-muted);
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}
.checkbox-label:hover {
  color: var(--clr-gold);
}
.checkbox-input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid #e0dbd4;
  border-radius: 4px;
  background-color: #f8f7f5;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.checkbox-input:checked {
  background-color: #b89230;
  border-color: #b89230;
}
.checkbox-input:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.checkbox-input:focus {
  outline: none;
  border-color: #b89230;
  box-shadow: 0 0 0 3px rgba(184, 146, 48, 0.12);
}

@media (max-width: 480px) {
  .service-checkboxes {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Minimal Social Links styling */
.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--clr-muted);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid transparent;
}
.contact-social-link svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-social-link:hover {
  color: var(--clr-gold);
  border-color: rgba(212, 175, 55, 0.15);
  background-color: rgba(212, 175, 55, 0.03);
  transform: translateY(-2px);
}
.contact-social-link:hover svg {
  transform: scale(1.15) rotate(4deg);
}

@media (max-width: 768px) {
  .contact-social-links {
    gap: 24px;
  }
  .contact-social-link {
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 8px 12px;
  }
}

/* ================================================
   MINIMAL CLIENT REVIEWS SLIDER
   ================================================ */
.home-reviews {
  padding: 110px 48px;
  background: #ffffff;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}

.home-reviews__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.home-reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 24px;
}

.home-reviews__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: #ffffff;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s var(--ease-expo);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.review-nav-btn:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(149, 117, 49, 0.25);
}

.review-nav-btn:active {
  transform: scale(0.95);
}

.home-reviews__viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0 20px;
  cursor: grab;
}

.home-reviews__viewport:active {
  cursor: grabbing;
}

.home-reviews__track {
  display: flex;
  gap: 32px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.home-review-card {
  flex: 0 0 calc(50% - 16px);
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  padding: 44px 40px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s var(--ease-expo), border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.home-review-card:hover {
  border-color: rgba(149, 117, 49, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.home-review-card__stars {
  color: var(--clr-gold);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.home-review-card__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-style: italic;
  color: var(--clr-white);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.home-review-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.home-review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--clr-gold);
  flex-shrink: 0;
}

.home-review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-review-card__name {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--clr-white);
  letter-spacing: 0.5px;
}

.home-review-card__detail {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--clr-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.home-reviews__footer {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.home-reviews__dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-expo);
  padding: 0;
}

.review-dot.active {
  background: var(--clr-gold);
  width: 28px;
  border-radius: 4px;
}

@media (max-width: 992px) {
  .home-review-card {
    flex: 0 0 calc(100% - 0px);
  }
  .home-reviews {
    padding: 80px 24px;
  }
}

@media (max-width: 576px) {
  .home-review-card {
    padding: 32px 24px;
  }
  .home-reviews__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.reveal-delay-1 { transition-delay: 0.12s; }
.reveal.reveal-delay-2 { transition-delay: 0.24s; }
.reveal.reveal-delay-3 { transition-delay: 0.36s; }
.reveal.reveal-delay-4 { transition-delay: 0.48s; }

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FOOTER QUOTE FADE ===== */
.footer__quote {
  transition: opacity 0.8s ease;
}
.footer__quote.fade-out {
  opacity: 0;
}

/* ===== REVIEW CARD STYLES (reviews page) ===== */
.review-card {
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s ease, border-color 0.4s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.35) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

