/* ══ GRAND CREATION STUDIOS ════════════════════════════════ */
/* GLOBAL STYLES & SHARED COMPONENTS                          */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Raleway:wght@200;300;400;500;600&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --black: #050505;
  --dark: #0C0C0C;
  --surface: #131313;
  --surface2: #1A1A1A;
  --border: rgba(201, 168, 76, 0.18);
  --text: #EDE8DE;
  --muted: #8A8378;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  overflow-x: hidden
}

/* ── SPARKLE CANVAS ──────────────────────────────────────── */
#sparkle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998
}

/* ── NAV & MOBILE MENU ───────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .5s, padding .4s, border-color .4s, box-shadow .4s;
}

nav.solid {
  background: rgba(5, 5, 5, 0.97);
  padding: 13px 60px;
  border-color: var(--border);
}

.nl {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.nl img {
  height: 40px;
  width: auto;
  mix-blend-mode: lighten;
  transition: height .4s
}

nav.solid .nl img {
  height: 34px
}

.nlt {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.nln {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .08em
}

.nls {
  font-size: 8px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 3px
}

.nv {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center
}

.nv a {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color .3s;
  position: relative;
  padding-bottom: 3px
}

.nv a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease)
}

.nv a:hover,
.nv a.act {
  color: var(--gold)
}

.nv a:hover::after,
.nv a.act::after {
  width: 100%
}

.nc {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 8px 20px;
  transition: background .3s, color .3s, border-color .3s;
  white-space: nowrap
}

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

.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  -webkit-tap-highlight-color: transparent
}

.hbg span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all .3s;
  border-radius: 1px
}

.hbg.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px)
}

.hbg.open span:nth-child(2) {
  opacity: 0
}

.hbg.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px)
}

.mm {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, .98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 40px 24px;
  overflow-y: auto
}

.mm.open {
  display: flex
}

.mm a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 7vw, 36px);
  color: var(--text);
  text-decoration: none;
  transition: color .3s;
  -webkit-tap-highlight-color: transparent
}

.mm a:hover,
.mm a:active {
  color: var(--gold)
}

/* ── COMMON TYPOGRAPHY ───────────────────────────────────── */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text)
}

h2 em {
  font-style: italic;
  color: var(--gold-light)
}

.ey {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px
}

.ey::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold)
}

/* ── SHARED BUTTONS ──────────────────────────────────────── */
.bg {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--black);
  padding: 13px 30px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  text-decoration: none;
  transition: opacity .3s, transform .3s;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px
}

.bg:hover,
.bg:active {
  opacity: .82;
  transform: translateY(-2px)
}

.la {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: gap .3s
}

.la:hover {
  gap: 16px
}

/* ── GLASS EFFECT ────────────────────────────────────────── */
.glass {
  background: rgba(18, 16, 10, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(201, 168, 76, 0.13);
  border-top-color: rgba(201, 168, 76, 0.32);
  box-shadow: inset 0 1px 0 rgba(201, 168, 76, 0.18), inset 0 -1px 0 rgba(0, 0, 0, 0.35), 0 4px 24px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(201, 168, 76, 0.06);
  position: relative;
  overflow: hidden;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}

.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.07) 0%, rgba(201, 168, 76, 0.02) 25%, transparent 60%);
  border-radius: inherit;
}

.glass>* {
  position: relative;
  z-index: 1
}

.glass:hover,
.glass:active {
  background: rgba(22, 19, 12, 0.65);
  border-color: rgba(201, 168, 76, 0.22);
  border-top-color: rgba(201, 168, 76, 0.50);
  box-shadow: inset 0 1px 0 rgba(201, 168, 76, 0.30), inset 0 -1px 0 rgba(0, 0, 0, 0.40), 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.06);
  transform: translateY(-3px);
}

.glass-static:hover,
.glass-static:active {
  transform: none
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  padding: 32px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1
}

.fl {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.fl img {
  height: 36px;
  width: auto;
  mix-blend-mode: lighten
}

.flt {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: .08em
}

.fm {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
  text-align: center
}

.fs {
  display: flex;
  gap: 12px
}

.fsi {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color .3s, background .3s;
  overflow: hidden;
  border-radius: 2px
}

.fsi img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.65;
  transition: opacity .3s, transform .3s;
  filter: grayscale(1) brightness(1.3)
}

.fsi:hover img,
.fsi:active img {
  opacity: 1;
  transform: scale(1.1);
  filter: none
}

.fsi:hover,
.fsi:active {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05)
}

.fb {
  padding: 14px 60px;
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, .07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1
}

.fb span,
.fb a {
  font-size: 10px;
  color: rgba(138, 131, 120, .6);
  letter-spacing: .1em;
  text-decoration: none;
  transition: color .3s
}

.fb a:hover {
  color: var(--gold)
}

/* ── SHARED REVEAL & ANIMATIONS ──────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.rv.vis {
  opacity: 1;
  transform: none
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

.d4 {
  transition-delay: .4s
}

/* ── HERO SPLIT (SHARED) ─────────────────────────────────── */
.ah {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden
}

.al {
  background: var(--surface);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 400px
}

.al::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(201, 168, 76, .08), transparent 70%)
}

.alf {
  position: absolute;
  inset: 50px;
  border: 1px solid var(--border)
}

.alf::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 30px;
  height: 30px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: 0;
  transition: opacity 1s var(--ease) .8s, width 1s var(--ease) .8s, height 1s var(--ease) .8s
}

.alf.vis::after {
  opacity: 1;
  width: 50px;
  height: 50px
}

.ar {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 130px 60px 70px;
  position: relative
}

@keyframes goldBreathe {

  0%,
  100% {
    text-shadow: 0 0 8px rgba(201, 168, 76, 0.0), 0 0 16px rgba(201, 168, 76, 0.0);
    opacity: .85;
  }

  50% {
    text-shadow: 0 0 12px rgba(232, 201, 122, 0.65), 0 0 28px rgba(201, 168, 76, 0.35), 0 0 48px rgba(201, 168, 76, 0.15);
    opacity: 1;
  }
}

.ey,
.nls,
h2 em {
  animation: goldBreathe 3.5s ease-in-out infinite
}

/* ── MEDIA QUERIES (GLOBAL) ─────────────────────────────── */
@media(max-width:960px) {
  nav {
    padding: 14px 20px
  }

  nav.solid {
    padding: 11px 20px
  }

  .nl img {
    height: 36px
  }

  .nv,
  .nc {
    display: none
  }

  .hbg {
    display: flex
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    gap: 16px
  }

  .fl {
    flex-direction: column;
    gap: 10px
  }

  .fm {
    order: 3
  }

  .fb {
    padding: 14px 20px;
    flex-direction: column;
    text-align: center;
    gap: 6px
  }
}