:root {
  --navy-950: #0c1118;
  --navy-900: #111821;
  --navy-800: #172130;
  --navy-700: #1d2a3c;
  --navy-600: #26364c;
  --cream: #f4efe4;
  --muted: #bcb2a2;
  --muted-2: #807869;
  --gold: #c5a26b;
  --gold-bright: #f2d58b;
  --gold-deep: #8f723d;
  --gold-line: rgba(197, 162, 107, .24);
  --glass: rgba(255, 255, 255, .055);
  --glass-2: rgba(255, 255, 255, .085);
  --shadow: 0 28px 80px rgba(0, 0, 0, .42);
  --display: 'Oswald', sans-serif;
  --serif: 'Cormorant Garamond', serif;
  --body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --maxw: 1220px;
  --pad: clamp(20px, 5vw, 72px);
  --gold-grad: linear-gradient(115deg, #8d6f34 0%, #c5a26b 28%, #fff1b8 50%, #b88b36 70%, #f2d58b 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  min-height: 100vh;
  font-family: var(--body);
  background: var(--navy-900);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg, video { max-width: 100%; height: auto; display: block; }
::selection { background: var(--gold); color: var(--navy-950); }

.site-noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.aurora {
  position: fixed;
  z-index: -2;
  width: 44vw;
  height: 44vw;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .42;
  pointer-events: none;
  animation: auroraDrift 18s ease-in-out infinite alternate;
}
.aurora-one { top: -15vw; left: -12vw; background: rgba(197, 162, 107, .20); }
.aurora-two { bottom: -18vw; right: -12vw; background: rgba(55, 83, 125, .52); animation-delay: -7s; }
@keyframes auroraDrift { to { transform: translate3d(7vw, 4vh, 0) scale(1.12); } }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section-pad { padding: clamp(90px, 13vw, 160px) 0; position: relative; }
.gold-text {
  background: var(--gold-grad);
  background-size: 230% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: goldSweep 10s ease-in-out infinite;
}
@keyframes goldSweep { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 76px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: height .35s ease, background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled {
  height: 64px;
  background: rgba(12, 17, 24, .72);
  border-bottom-color: var(--gold-line);
  backdrop-filter: blur(18px) saturate(130%);
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid rgba(197,162,107,.55);
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
  background: rgba(197, 162, 107, .06);
  box-shadow: 0 0 28px rgba(197,162,107,.10);
}
.brand-text {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 18px;
  color: var(--gold);
}
.brand.small .brand-mark { width: 30px; height: 30px; font-size: 18px; }
.brand.small .brand-text { font-size: 15px; }
.nav-panel { display: flex; align-items: center; gap: 5px; }
.nav-panel a {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, .76);
  padding: 10px 14px;
  border: 1px solid transparent;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.nav-panel a:hover { color: var(--gold-bright); }
.nav-panel .nav-portal { border-color: var(--gold-line); color: var(--gold); background: rgba(197,162,107,.05); }
.menu-toggle { display: none; width: 42px; height: 42px; background: transparent; border: 0; position: relative; color: var(--gold); }
.menu-toggle span { position: absolute; left: 9px; right: 9px; height: 1px; background: currentColor; transition: transform .3s ease, opacity .2s ease, top .3s ease; }
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(197,162,107,.13), transparent 42%),
    radial-gradient(ellipse at 78% 52%, rgba(63,86,124,.30), transparent 45%),
    linear-gradient(180deg, #0b1017 0%, #172130 58%, #0e141d 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image:
    linear-gradient(rgba(197,162,107,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,162,107,.11) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  animation: gridFloat 20s linear infinite;
}
@keyframes gridFloat { to { transform: translateY(64px); } }
.orb {
  position: absolute;
  width: clamp(180px, 30vw, 460px);
  height: clamp(180px, 30vw, 460px);
  border: 1px solid rgba(197,162,107,.15);
  border-radius: 999px;
  box-shadow: inset 0 0 80px rgba(197,162,107,.035), 0 0 120px rgba(0,0,0,.28);
  pointer-events: none;
}
.orb-left { left: -9vw; top: 18vh; }
.orb-right { right: -10vw; bottom: 10vh; }
.hero-inner { width: min(1120px, 100%); padding: 120px var(--pad) 90px; text-align: center; position: relative; z-index: 2; }
.eyebrow {
  font-family: var(--display);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
}
.hero-title {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: .92;
  margin: clamp(26px, 4vw, 44px) 0 20px;
  font-size: clamp(58px, 13vw, 164px);
}
.hero-title span { display: block; }
.hero-line { width: min(320px, 62%); height: 1px; margin: 0 auto 24px; background: linear-gradient(90deg, transparent, var(--gold-bright), transparent); }
.hero-subtitle { font-family: var(--display); letter-spacing: .42em; text-transform: uppercase; font-size: clamp(13px, 1.3vw, 17px); color: var(--cream); }
.hero-copy { max-width: 620px; margin: 30px auto 42px; color: var(--muted); font-size: clamp(15px, 1.45vw, 18px); font-weight: 300; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.btn {
  min-height: 54px;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 15px 28px;
  border: 1px solid var(--gold);
  font-family: var(--display);
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.btn::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: translateY(102%); transition: transform .45s cubic-bezier(.2,.9,.2,1); z-index: -1; }
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--navy-950); box-shadow: 0 16px 42px rgba(197,162,107,.13); }
.btn-gold { background: linear-gradient(115deg, #a97d2d, #f2d58b, #c5a26b); color: var(--navy-950); border-color: rgba(242,213,139,.82); }
.btn-gold::before { background: var(--navy-950); }
.btn-gold:hover { color: var(--gold-bright); }
.btn-ghost { background: rgba(255,255,255,.02); backdrop-filter: blur(8px); }
.scroll-cue { position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); display: flex; flex-direction: column; gap: 10px; align-items: center; color: var(--muted-2); font-family: var(--display); letter-spacing: .32em; text-transform: uppercase; font-size: 10px; }
.scroll-cue i { display: block; width: 1px; height: 38px; background: linear-gradient(180deg, transparent, var(--gold)); overflow: hidden; }
.scroll-cue i::after { content: ''; display: block; width: 100%; height: 100%; background: var(--gold-bright); animation: drip 2.3s ease-in-out infinite; }
@keyframes drip { from { transform: translateY(-110%); } to { transform: translateY(110%); } }

.statement { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); border-top: 1px solid var(--gold-line); }
.statement-layout { display: grid; grid-template-columns: .55fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.statement-kicker { font-family: var(--display); color: var(--gold); text-transform: uppercase; letter-spacing: .26em; font-size: 13px; position: sticky; top: 104px; }
.statement-title { font-family: var(--serif); font-size: clamp(38px, 6vw, 76px); font-weight: 500; line-height: 1.02; color: var(--cream); max-width: 850px; }
.statement-body { margin-top: 36px; max-width: 730px; color: var(--muted); font-size: clamp(15px, 1.35vw, 18px); display: grid; gap: 20px; }

.services { background: linear-gradient(180deg, var(--navy-800), var(--navy-950)); border-top: 1px solid var(--gold-line); }
.section-head { margin-bottom: clamp(44px, 7vw, 78px); }
.section-head.center { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-family: var(--display); text-transform: uppercase; letter-spacing: .025em; line-height: 1.05; font-size: clamp(38px, 6vw, 72px); margin: 16px 0; }
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 16px; max-width: 620px; margin: 0 auto; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.service-card {
  min-height: 330px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid rgba(197,162,107,.20);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: transform .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease;
}
.service-card::before { content: ''; position: absolute; inset: -1px; background: radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(242,213,139,.20), transparent 33%); opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-10px); border-color: rgba(242,213,139,.52); box-shadow: 0 36px 90px rgba(0,0,0,.52); }
.service-num { font-family: var(--serif); color: var(--gold); font-size: 34px; }
.service-card h3 { font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-size: 24px; line-height: 1.15; margin: 70px 0 18px; }
.service-card p { color: var(--muted); font-size: 14.5px; }

.experience { background: radial-gradient(ellipse at 25% 50%, rgba(197,162,107,.10), transparent 36%), var(--navy-950); border-top: 1px solid var(--gold-line); }
.experience-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 110px); align-items: center; }
.experience-visual { min-height: 460px; display: grid; place-items: center; }
.glass-stage {
  width: min(440px, 100%); aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(197,162,107,.32);
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.10), rgba(255,255,255,.025) 58%, rgba(197,162,107,.05));
  display: grid; place-items: center; text-align: center; padding: 40px;
  box-shadow: inset 0 0 80px rgba(197,162,107,.045), 0 32px 90px rgba(0,0,0,.48);
  position: relative;
  animation: floating 6s ease-in-out infinite;
  backdrop-filter: blur(18px);
}
@keyframes floating { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.pulse-ring { position: absolute; inset: 11%; border-radius: inherit; border: 1px solid rgba(197,162,107,.18); animation: pulseRing 3.6s ease-in-out infinite; }
@keyframes pulseRing { 50% { transform: scale(1.06); opacity: .45; } }
.stage-title { font-family: var(--display); color: var(--gold-bright); text-transform: uppercase; letter-spacing: .16em; font-size: clamp(26px, 3vw, 42px); align-self: end; }
.stage-bars { display: flex; align-items: end; justify-content: center; gap: 5px; min-height: 54px; align-self: center; }
.stage-bars span { display: block; width: 5px; height: 12px; border-radius: 20px; background: var(--gold); animation: audioBars .9s ease-in-out infinite alternate; }
.stage-bars span:nth-child(2) { animation-delay: .1s; }
.stage-bars span:nth-child(3) { animation-delay: .2s; }
.stage-bars span:nth-child(4) { animation-delay: .32s; }
.stage-bars span:nth-child(5) { animation-delay: .18s; }
.stage-bars span:nth-child(6) { animation-delay: .42s; }
@keyframes audioBars { to { height: 52px; filter: brightness(1.25); } }
.glass-stage p { color: var(--muted); font-size: 13px; align-self: start; }
.experience-copy h2 { font-family: var(--display); text-transform: uppercase; line-height: 1.05; font-size: clamp(36px, 5vw, 66px); margin: 18px 0 24px; }
.experience-copy p:not(.eyebrow) { color: var(--muted); font-size: 16.5px; max-width: 540px; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 32px; }
.feature-list span { padding: 14px 16px; border: 1px solid var(--gold-line); background: rgba(255,255,255,.035); color: var(--cream); font-size: 13px; }

.locations { background: var(--navy-900); border-top: 1px solid var(--gold-line); overflow: hidden; }
.city-marquee { width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; border-block: 1px solid var(--gold-line); padding: 22px 0; }
.city-track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 24s linear infinite; }
.city-track span { font-family: var(--display); text-transform: uppercase; letter-spacing: .10em; color: var(--cream); font-size: clamp(28px, 5vw, 68px); white-space: nowrap; }
.city-track i { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex: 0 0 auto; }
@keyframes marquee { to { transform: translateX(-50%); } }
.locations-copy { max-width: 680px; margin: 34px auto 0; text-align: center; color: var(--muted); font-size: 16px; }

.contact { background: radial-gradient(ellipse at 50% 0%, rgba(197,162,107,.12), transparent 45%), var(--navy-950); border-top: 1px solid var(--gold-line); }
.contact-layout { display: grid; grid-template-columns: .85fr 1.1fr; gap: clamp(36px, 7vw, 90px); align-items: start; }
.contact-copy h2 { font-family: var(--display); text-transform: uppercase; line-height: 1.03; font-size: clamp(42px, 7vw, 82px); margin: 18px 0 20px; }
.contact-copy p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.contact-meta { display: grid; gap: 12px; margin-top: 34px; color: var(--gold); font-family: var(--display); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; }
.glass-panel { background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); border: 1px solid rgba(197,162,107,.25); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.inquiry-form { padding: clamp(22px, 4vw, 38px); display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inquiry-form label { display: grid; gap: 8px; }
.inquiry-form label span { font-family: var(--display); color: var(--gold); text-transform: uppercase; letter-spacing: .22em; font-size: 11px; }
.inquiry-form input, .inquiry-form textarea, .inquiry-form select {
  width: 100%; border: 1px solid rgba(197,162,107,.26); background: rgba(12,17,24,.45); color: var(--cream); padding: 15px 14px; outline: 0; border-radius: 0;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.inquiry-form textarea { min-height: 130px; resize: vertical; }
.inquiry-form input:focus, .inquiry-form textarea:focus, .inquiry-form select:focus { border-color: var(--gold-bright); background: rgba(12,17,24,.70); box-shadow: 0 0 0 3px rgba(197,162,107,.10); }
.inquiry-form .hp { position: absolute; left: -9999px; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.form-status { min-height: 24px; text-align: center; font-family: var(--display); letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); font-size: 11px; }
.form-status.success { color: var(--gold-bright); }
.form-status.error { color: #f0a0a8; }
.inquiry-form button[disabled] { opacity: .62; cursor: wait; }

.footer { padding: 34px 0; background: var(--navy-950); border-top: 1px solid var(--gold-line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; color: var(--muted-2); font-size: 13px; }
.footer a:not(.brand) { color: var(--gold); font-family: var(--display); letter-spacing: .18em; text-transform: uppercase; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(42px) scale(.985); filter: blur(10px); transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1), filter 1s cubic-bezier(.16,1,.3,1); will-change: opacity, transform, filter; }
.reveal.in { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.float-card { transform-style: preserve-3d; }

@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .statement-layout, .experience-layout, .contact-layout { grid-template-columns: 1fr; }
  .statement-kicker { position: static; }
}
@media (max-width: 780px) {
  .menu-toggle { display: block; z-index: 110; }
  .nav-panel {
    position: fixed; inset: 0; z-index: 105;
    background: rgba(12,17,24,.96);
    backdrop-filter: blur(18px);
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 18px;
    opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .35s ease, transform .35s ease;
  }
  .nav-panel.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-panel a { font-size: 18px; padding: 12px 22px; }
  .hero-inner { padding-top: 110px; }
  .hero-title { font-size: clamp(54px, 17vw, 94px); }
  .hero-subtitle { letter-spacing: .25em; }
  .service-grid, .feature-list, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .service-card h3 { margin-top: 42px; }
  .experience-visual { min-height: 360px; }
  .glass-stage { width: min(320px, 88vw); }
  .scroll-cue { display: none; }
}
@media (max-width: 480px) {
  :root { --pad: 18px; }
  .nav { height: 68px; }
  .brand-text { font-size: 15px; letter-spacing: .16em; }
  .brand-mark { width: 31px; height: 31px; }
  .hero-copy { margin-top: 24px; }
  .hero-actions .btn { width: 100%; }
  .btn { width: 100%; padding-inline: 18px; letter-spacing: .18em; }
  .section-pad { padding: 78px 0; }
  .statement-title { font-size: clamp(36px, 12vw, 54px); }
  .contact-meta { word-break: break-word; }
  .footer-inner { justify-content: center; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001s !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}
