/* ============================================================
   OPALE DIGITAL STUDIO — Landing Page Styles
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }

:root {
  --black:        #000000;
  --white:        #ffffff;
  --opal-purple:  #8B6CC7;
  --opal-pink:    #E899D0;
  --opal-cyan:    #00D4D8;
  --opal-blue:    #5A8FF0;
  --gold:         #C49A3C;
  --gold-light:   #D4AF57;
  --gold-dim:     rgba(196,154,60,0.7);
  --font-display: 'Playfair Display', 'Didot', 'Bodoni MT', Georgia, serif;
  --font-body:    'Cormorant Garamond', 'Didot', Georgia, serif;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), visibility 0.9s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.35em;
}

.loader-o {
  background: conic-gradient(from 0deg, var(--opal-purple), var(--opal-pink), var(--opal-cyan), var(--opal-blue), var(--opal-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-pale { color: var(--white); }

.loader-bar-wrap {
  width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

#loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--opal-purple), var(--opal-cyan));
  transition: width 0.25s ease;
}

#loader-percent {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35);
}


/* ============================================================
   NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 52px;
  mix-blend-mode: normal;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  display: flex;
  align-items: baseline;
  gap: 0;
}

.nav-logo-o {
  background: conic-gradient(from 60deg, var(--opal-purple), var(--opal-pink), var(--opal-cyan), var(--opal-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-pale { color: var(--white); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--white); }

.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid rgba(196,154,60,0.35);
  padding: 10px 26px;
  border-radius: 1px;
  letter-spacing: 0.18em;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}


/* ============================================================
   HERO
   ============================================================ */
.hero-standalone {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  mask-image:         linear-gradient(to bottom, black 55%, transparent 100%);
}

/* --- Cinematic Flash --- */
.flash {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,245,220,0.12) 0%, transparent 55%);
  opacity: 0;
  animation: flash 2.5s ease-out 0.1s forwards;
  pointer-events: none; z-index: 0;
}
@keyframes flash {
  0%   { opacity: 0; transform: scale(0.8); }
  12%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.3); }
}

/* --- Particles --- */
.pts { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.pt  { position: absolute; width: 1.5px; height: 1.5px; border-radius: 50%; opacity: 0; }
.pt:nth-child(1) { left:10%; top:20%; background:rgba(196,154,60,0.5);   animation: pf 18s ease-in-out 5s infinite; }
.pt:nth-child(2) { left:80%; top:60%; background:rgba(139,108,199,0.4); animation: pf 22s ease-in-out 7s infinite; }
.pt:nth-child(3) { left:30%; top:78%; background:rgba(212,175,87,0.35); animation: pf 20s ease-in-out 9s infinite; }
.pt:nth-child(4) { left:90%; top:25%; background:rgba(0,212,216,0.3);   animation: pf 24s ease-in-out 6s infinite; }
.pt:nth-child(5) { left:50%; top:10%; background:rgba(232,153,208,0.25);animation: pf 19s ease-in-out 8s infinite; }
@keyframes pf {
  0%,100% { opacity:0; transform: translate(0,0); }
  20%      { opacity:0.7; }
  50%      { transform: translate(25px,-60px); opacity:0.4; }
  80%      { opacity:0; }
}

/* --- Vignette --- */
.vig {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.72) 100%);
  pointer-events: none; z-index: 10;
}


/* ============================================================
   ANIMATED LOGO (inlined, Swiss Made removed)
   ============================================================ */
.logo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  animation: logoBreathe 8s ease-in-out 4s infinite;
}
@keyframes logoBreathe {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.007); }
}

.wm { position: relative; display: flex; align-items: baseline; }

/* Aura glow behind the O */
.aura {
  position: absolute;
  width:  clamp(120px, 19vw, 240px);
  height: clamp(120px, 19vw, 240px);
  top:  clamp(-15px, -2.5vw, -30px);
  left: clamp(-25px, -4vw,   -50px);
  border-radius: 50%;
  opacity: 0;
  animation: auraIn 2s cubic-bezier(0.22,1,0.36,1) 0.6s forwards,
             auraLive 18s ease-in-out 3s infinite;
}
@keyframes auraIn  { from { opacity:0; transform:scale(0.3); } to { opacity:1; transform:scale(1); } }
@keyframes auraLive {
  0%,100% {
    background: radial-gradient(circle, rgba(139,108,199,0.18) 0%, rgba(196,154,60,0.04) 55%, transparent 70%);
    filter: blur(40px);
  }
  50% {
    background: radial-gradient(circle, rgba(196,154,60,0.16) 0%, rgba(139,108,199,0.04) 55%, transparent 70%);
    filter: blur(44px);
  }
}

/* O wrapper reveal */
.ow {
  position: relative; display: inline-block;
  opacity: 0;
  animation: oIn 1.8s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}
@keyframes oIn {
  0%   { opacity:0; transform: translateY(40px) scale(0.88); }
  50%  { opacity:1; }
  100% { opacity:1; transform: translateY(0) scale(1); }
}

/* O — opal-to-gold gem facet sweep */
.ot {
  font-family: var(--font-display);
  font-size: clamp(68px, 12vw, 175px);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(
    135deg,
    var(--opal-purple) 0%,
    var(--opal-pink)   9%,
    var(--opal-cyan)   18%,
    var(--opal-purple) 30%,
    var(--gold)        40%,
    var(--gold-light)  50%,
    var(--gold)        60%,
    var(--opal-purple) 70%,
    var(--opal-pink)   82%,
    var(--opal-cyan)   91%,
    var(--opal-purple) 100%
  );
  background-size: 300% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: oShimmer 8s ease-in-out 2.5s infinite;
}
@keyframes oShimmer {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

/* O glow (blur shadow layer) */
.og {
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display);
  font-size: clamp(68px, 12vw, 175px);
  font-weight: 400; line-height: 1;
  color: rgba(139,108,199,0.25);
  filter: blur(22px); z-index: -1;
  opacity: 0; pointer-events: none; user-select: none;
  animation: ogIn 2s ease 1.2s forwards, ogPulse 16s ease-in-out 3s infinite;
}
@keyframes ogIn { to { opacity:1; } }
@keyframes ogPulse {
  0%,100% { opacity: 0.18; }
  50%      { opacity: 0.35; }
}

/* P A L E letters */
.lt {
  font-family: var(--font-display);
  font-size: clamp(68px, 12vw, 175px);
  font-weight: 400; color: var(--white); line-height: 1;
  display: inline-block;
  letter-spacing: clamp(1px, 0.25vw, 4px);
  opacity: 0;
  transform: translateY(30px);
}
.lt:nth-child(3) { animation: ltIn 1.4s cubic-bezier(0.22,1,0.36,1) 0.80s forwards; }
.lt:nth-child(4) { animation: ltIn 1.4s cubic-bezier(0.22,1,0.36,1) 0.95s forwards; }
.lt:nth-child(5) { animation: ltIn 1.4s cubic-bezier(0.22,1,0.36,1) 1.10s forwards; }
.lt:nth-child(6) { animation: ltIn 1.4s cubic-bezier(0.22,1,0.36,1) 1.25s forwards; }
@keyframes ltIn {
  0%   { opacity:0; transform: translateY(30px); }
  50%  { opacity:1; }
  100% { opacity:1; transform: translateY(0); }
}

/* Gold line beneath logo */
.lw {
  width: clamp(260px, 48vw, 640px);
  margin-top: clamp(8px, 1.2vw, 20px);
  position: relative;
}
.gl {
  width: 100%; height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, #B08830 12%, #D4AF57 50%, #B08830 88%, transparent 100%);
  transform: scaleX(0); transform-origin: center;
  animation: glDraw 1.6s cubic-bezier(0.22,1,0.36,1) 1.6s forwards;
}
@keyframes glDraw { to { transform: scaleX(1); } }
.glg {
  position: absolute; top: -2px; left: 10%; width: 80%; height: 6px;
  background: radial-gradient(ellipse at center, rgba(212,175,87,0.22) 0%, transparent 70%);
  filter: blur(4px); opacity: 0;
  animation: glgIn 1s ease 2.6s forwards, glgPulse 4s ease-in-out 3.5s infinite;
}
@keyframes glgIn { to { opacity:1; } }
@keyframes glgPulse { 0%,100% { opacity:0.4; } 50% { opacity:1; } }


/* ============================================================
   HERO TAGLINE
   ============================================================ */
.hero-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(32px, 4.5vw, 60px);
  z-index: 5;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 1.6s cubic-bezier(0.22,1,0.36,1) 2.8s forwards;
}

@keyframes fadeUp {
  0%   { opacity:0; transform: translateY(14px); }
  100% { opacity:1; transform: translateY(0); }
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-align: center;
}


/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
.scroll-indicator {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 5;
  opacity: 0;
  animation: fadeUp 1s ease 3.6s forwards;
}

.scroll-chevron { display: block; }
@keyframes chevronFade {
  0%,100% { opacity: 0.25; transform: translateY(0); }
  50%      { opacity: 0.55; transform: translateY(4px); }
}
.scroll-chevron { animation: chevronFade 2.2s ease-in-out 4.2s infinite; }


/* ============================================================
   CANVAS WRAP (fixed, reveals via circle clip-path)
   ============================================================ */
#canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background: #000;
  will-change: opacity, transform;
}

#canvas {
  display: block;
  width: 100%; height: 100%;
}

#canvas-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 32%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

/* Subtle film grain overlay on video */
#canvas-grain {
  position: absolute; inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}


/* ============================================================
   DARK OVERLAY (stats section)
   ============================================================ */
#dark-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  transition: none;
}


/* ============================================================
   MARQUEE (fixed, scroll-driven)
   ============================================================ */
.marquee-wrap {
  position: fixed;
  top: 50%; left: 0;
  width: 100vw;
  transform: translateY(-50%);
  z-index: 18;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.marquee-text {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(10vw, 12vw, 14vw);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.82);
  -webkit-text-stroke: 0;
  white-space: nowrap;
  will-change: transform;
}


/* ============================================================
   SCROLL CONTAINER
   ============================================================ */
#scroll-container {
  position: relative;
  height: 940vh;
}


/* ============================================================
   SCROLL SECTIONS (all fixed, shown/hidden via JS)
   ============================================================ */
.scroll-section {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-section.is-active {
  pointer-events: auto;
}

/* Hard 1/3 text | 2/3 image grid — text column cannot escape 33.33% */
.section-content.align-left,
.section-content.align-right {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  padding: 0;
  align-self: stretch;
}
.section-content.align-left .section-inner {
  grid-column: 1;
  padding: 0 clamp(16px, 2.5vw, 40px) 0 clamp(24px, 5.5vw, 72px);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* ===== Section Typography ===== */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 26px;
  text-shadow: 0 2px 60px rgba(0,0,0,0.85);
}

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

.section-body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  text-shadow: 0 1px 24px rgba(0,0,0,0.9);
}


/* ============================================================
   STATS SECTION
   ============================================================ */
.section-stats {
  justify-content: center;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  max-width: 1000px;
  width: 100%;
  padding: 0 8vw;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.stat:last-child { border-right: none; }

.stat-number-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 14px;
  line-height: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  margin-top: 4px;
  margin-left: 2px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}


/* ============================================================
   CTA SECTION
   ============================================================ */
.section-cta {
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: rgba(0,0,0,0.82);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  padding: 0 24px;
}

.section-cta .section-heading {
  font-size: clamp(3rem, 6.5vw, 7.5rem);
  font-weight: 400;
  line-height: 1.02;
  text-shadow: none;
  margin-bottom: 52px;
}

.cta-button {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  padding: 18px 52px;
  border-radius: 1px;
  transition: color 0.3s, background 0.3s, transform 0.25s;
  margin-bottom: 22px;
}

.cta-button:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.cta-note {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
}


/* ============================================================
   MOBILE  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .site-header { padding: 20px 24px; }
  .nav-links { gap: 16px; }
  .nav-links li:not(:last-child) { display: none; }

  /* Side-aligned sections: collapse to single column on mobile */
  .section-content.align-left,
  .section-content.align-right {
    grid-template-columns: 1fr;
    align-items: flex-end;
    padding-bottom: 48px;
  }

  .align-left  .section-inner,
  .align-right .section-inner {
    max-width: 100%;
    width: 100%;
    background: rgba(0,0,0,0.76);
    padding: 32px 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

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

  .stat { border-right: none; }

  .stat:nth-child(1),
  .stat:nth-child(2) { padding-bottom: 32px; }

  .section-cta .section-heading { font-size: 2.8rem; }

  .marquee-text { font-size: 20vw; }

  #scroll-container { height: 680vh; }
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 25;
  background: #000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 52px;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer-link:hover { color: var(--gold); }

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.footer-social {
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.footer-social:hover { color: var(--gold); }


/* ============================================================
   SERVICES / PRICING PAGE
   ============================================================ */
.pricing-section {
  background: #000;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto 60px;
}
.pricing-card {
  background: #080808;
  border: 1px solid rgba(255,255,255,0.1);
  padding: clamp(48px, 4.5vw, 68px) clamp(28px, 3vw, 44px) clamp(36px, 3.5vw, 52px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s;
}
.pricing-card:hover { border-color: rgba(255,255,255,0.22); }
.pricing-card.is-pro {
  border-color: var(--gold);
  box-shadow: 0 0 60px rgba(196,154,60,0.06);
}
.pricing-card.is-pro:hover { border-color: var(--gold-light); }

.pricing-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-family: var(--font-body);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 4px 4px;
  white-space: nowrap;
}
.pricing-tier {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.6rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}
.pricing-price-sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.pricing-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex: 1;
}
.pricing-includes li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pricing-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.35em;
  width: 11px; height: 11px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpolyline points='1.5,6 4.5,9 10.5,3' stroke='%23C49A3C' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.pricing-btn {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  margin-top: auto;
}
.pricing-btn:hover { border-color: var(--gold); color: var(--gold); }
.pricing-btn.is-pro-btn { border-color: var(--gold); background: var(--gold); color: #000; }
.pricing-btn.is-pro-btn:hover { filter: brightness(1.12); color: #000; }
.pricing-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  max-width: 600px;
  margin: 0 auto;
}


/* ============================================================
   STUDIO PAGE
   ============================================================ */

/* Hero */
.studio-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px clamp(24px, 8vw, 120px);
  background: #000;
}
.studio-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 9rem);
  font-weight: 500;
  line-height: 1.02;
  color: var(--white);
  margin: 20px 0 32px;
}

/* Projects */
.studio-project {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  background: #000;
}
.studio-project[data-dir="right"] {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}
.studio-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(16px, 2.5vw, 40px) 0 clamp(24px, 5.5vw, 72px);
}
.studio-project[data-dir="right"] .studio-text {
  padding: 0 clamp(24px, 5.5vw, 72px) 0 clamp(16px, 2.5vw, 40px);
}
.studio-image {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 56px);
  overflow: hidden;
}
.project-placeholder {
  width: 100%;
  min-height: 60vh;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  border-left: 1px solid rgba(255,255,255,0.04);
}
.studio-project[data-dir="right"] .project-placeholder {
  border-left: none;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.project-img-wrap {
  overflow: hidden;
  cursor: pointer;
  width: 100%;
}
.project-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease-out;
}
.project-img-wrap:hover .project-img {
  transform: scale(1.05);
}
.project-link {
  display: inline-block;
  margin-top: 36px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-dim);
  transition: color 0.3s, letter-spacing 0.3s;
}
.project-link:hover {
  color: var(--gold);
  letter-spacing: 0.28em;
}

/* Studio CTA */
.studio-cta {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

@media (max-width: 480px) {
  .section-heading { font-size: 2.2rem; }
  .section-body { font-size: 0.95rem; }
  .align-left .section-inner,
  .align-right .section-inner { padding: 28px 20px; }
}

/* ===== CONTACT MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 20px;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: #030303;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: clamp(36px, 5vw, 56px) clamp(32px, 4vw, 52px);
  max-width: 540px;
  width: 100%;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.35s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.is-open .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.9);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px;
}
.modal-close:hover { color: #fff; }
.modal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  color: var(--white);
  margin: 0 0 10px;
}
.modal-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin: 0 0 36px;
  line-height: 1.6;
}
.modal-form { display: flex; flex-direction: column; gap: 20px; }
.modal-field { display: flex; flex-direction: column; gap: 8px; }
.modal-field label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.modal-field select,
.modal-field input,
.modal-field textarea {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.25s;
  resize: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.modal-field select:focus,
.modal-field input:focus,
.modal-field textarea:focus { border-color: var(--gold); }
.modal-field select option { background: #111; }
.modal-submit {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 15px 24px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #000;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.3s;
}
.modal-submit:hover { filter: brightness(1.12); }

/* Modal success state */
.modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0 8px;
  gap: 16px;
}
.modal-success-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
}
.modal-success-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.modal-success-close {
  margin-top: 8px;
  padding: 13px 36px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #000;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.3s;
}
.modal-success-close:hover { filter: brightness(1.12); }
