/* ============================================================
   Aura Studios — aurastudios.in
   Apple-inspired design system · aura blue palette
   ============================================================ */

:root {
  /* Aura brand — sampled from the logo */
  --aura-sky:   #7fd0f0;
  --aura-blue:  #1499d3;
  --aura-core:  #1090c0;
  --aura-deep:  #006090;
  --aura-ink:   #0a3346;

  /* Studio night — the whole site lives in the blue dark now.
     --white/--paper/--ink keep their names (they're used everywhere)
     but now mean: card surface / page surface / light text. */
  --white:      #0b1926;
  --paper:      #060e16;
  --ink:        #f2f7fa;
  --ink-2:      #c6d6e0;
  --ink-3:      #8da6b5;
  --dark:       #050b12;
  --dark-2:     #0a141d;
  --dark-text:  #f5f8fa;
  --dark-sub:   #93aab8;
  --hairline:   rgba(127,208,240,0.13);
  --hairline-d: rgba(127,208,240,0.13);

  --radius: 22px;
  --nav-h: 52px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Inter", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--dark);
  line-height: 1.5;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 24px; border-radius: 980px;
  border: none; cursor: pointer; font-family: inherit; line-height: 1.5;
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary {
  background: var(--aura-blue); color: #fff;
  box-shadow: 0 1px 2px rgba(0,96,144,0.25), 0 8px 24px rgba(20,153,211,0.28);
}
.btn-primary:hover { background: var(--aura-core); box-shadow: 0 2px 4px rgba(0,96,144,0.3), 0 14px 34px rgba(20,153,211,0.38); }
.btn-ghost {
  color: var(--aura-sky);
  border: 1px solid rgba(127,208,240,0.45);
}
.btn-ghost:hover { background: rgba(127,208,240,0.10); border-color: var(--aura-sky); }
.btn-lg { padding: 14px 30px; font-size: 15px; }
.btn-signin {
  padding: 7px 18px; font-size: 14px;
  background: rgba(255,255,255,0.14); color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn-signin:hover { background: var(--aura-blue); border-color: transparent; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(5,11,18,0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav.scrolled { background: rgba(5,11,18,0.82); border-bottom-color: var(--hairline-d); }
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-mark { height: 30px; width: auto; }
.nav-name {
  color: #fff; font-size: 15px; font-weight: 600; letter-spacing: 0.06em;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: rgba(255,255,255,0.82); font-size: 12px; font-weight: 400;
  transition: color 0.25s;
}
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-burger { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  background: transparent; overflow: hidden;
}
.hero-wave {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.9;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 120px 24px 100px; max-width: 820px;
}
.hero-eyebrow {
  color: var(--aura-sky); font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-title {
  color: #fff; font-size: clamp(44px, 7.6vw, 88px);
  font-weight: 700; line-height: 1.02; letter-spacing: -0.03em;
  margin-bottom: 26px;
  background: linear-gradient(180deg, #ffffff 55%, #9adcf6 130%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  color: var(--dark-sub); font-size: clamp(15px, 2vw, 19px);
  font-weight: 400; max-width: 560px; margin: 0 auto 40px; line-height: 1.45;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 160px; z-index: 1;
  background: linear-gradient(180deg, transparent, var(--dark));
}

/* ---------- Sections ---------- */
.section { padding: 130px 0; }
.section-light { background: transparent; color: var(--ink); }
.section-light:nth-of-type(odd) { background: transparent; }
.section-dark { background: transparent; color: var(--dark-text); }

.section-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--aura-sky); margin-bottom: 14px;
}
.section-dark .section-eyebrow { color: var(--aura-sky); }
.section-title {
  font-size: clamp(30px, 4.6vw, 50px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 22px;
  color: #fff; text-shadow: 0 2px 34px rgba(20,153,211,0.28);
}
.section-lede {
  font-size: clamp(15px, 1.9vw, 18px); color: var(--ink-3);
  max-width: 560px; line-height: 1.5; margin-bottom: 64px;
}
.section-dark .section-lede { color: var(--dark-sub); }

/* ---------- Services ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
  background: rgba(11,25,38,0.72); border-radius: var(--radius);
  padding: 38px 30px 34px;
  border: 1px solid var(--hairline);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
}
#services.section-light { background: transparent; }
.service-card:hover {
  transform: translateY(-5px); border-color: rgba(127,208,240,0.38);
  box-shadow: 0 18px 48px rgba(0,0,0,0.45), 0 0 34px rgba(20,153,211,0.18);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(127,208,240,0.18), rgba(16,144,192,0.12));
  color: var(--aura-sky); margin-bottom: 22px;
}
.service-icon svg { width: 27px; height: 27px; }
.service-card h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 9px; }
.service-card p { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; }

/* ---------- Work / Portfolio ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--dark-2); border: 1px solid var(--hairline-d);
  transition: transform 0.5s var(--ease), border-color 0.4s;
  display: block;
}
.work-card:hover { transform: translateY(-6px); border-color: rgba(127,208,240,0.35); }
.work-art {
  position: relative; aspect-ratio: 1 / 0.72;
  display: flex; align-items: center; justify-content: center;
}
.art-1 { background: radial-gradient(120% 140% at 20% 15%, #7fd0f0 0%, #1090c0 48%, #06283a 100%); }
.art-2 { background: radial-gradient(130% 130% at 80% 20%, #0f6f9e 0%, #073a55 55%, #05131c 100%); }
.art-3 { background: radial-gradient(120% 150% at 50% 0%, #9adcf6 0%, #2aa5d8 45%, #0a3346 100%); }
.art-4 { background: radial-gradient(140% 120% at 15% 80%, #12a0d5 0%, #085a80 50%, #041722 100%); }
.art-5 { background: radial-gradient(130% 140% at 85% 75%, #66c6ec 0%, #0d7fae 52%, #062330 100%); }
.art-6 { background: radial-gradient(120% 130% at 50% 90%, #3fb4e2 0%, #0a5f88 55%, #030f16 100%); }
.work-play {
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  position: relative;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.work-play::after {
  content: ""; position: absolute; left: 55%; top: 50%;
  transform: translate(-50%, -50%);
  border-left: 16px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent;
}
.work-card:hover .work-play { transform: scale(1.08); background: rgba(20,153,211,0.45); }
.work-meta { padding: 22px 24px 26px; }
.work-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--aura-sky);
}
.work-meta h3 { font-size: 18px; font-weight: 600; margin: 8px 0 6px; letter-spacing: -0.01em; color: #fff; }
.work-meta p { font-size: 14px; color: var(--dark-sub); line-height: 1.5; }
.work-note { margin-top: 46px; font-size: 16px; color: var(--dark-sub); }
.work-note a { color: var(--aura-sky); border-bottom: 1px solid rgba(127,208,240,0.4); padding-bottom: 1px; }
.work-note a:hover { color: #fff; border-color: #fff; }

/* ---------- Studio / Gear ---------- */
.studio-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.studio-copy .section-lede { margin-bottom: 40px; }
.gear-list { list-style: none; }
.gear-list li {
  display: flex; flex-direction: column; gap: 3px;
  padding: 24px 0; border-bottom: 1px solid var(--hairline);
}
.gear-list li:first-child { border-top: 1px solid var(--hairline); }
.gear-cat {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--aura-sky);
}
.gear-name { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }

/* ---------- About ---------- */
.about-inner { max-width: 780px; text-align: center; }
.about .section-eyebrow { text-align: center; }
.about-quote {
  font-size: clamp(28px, 4.6vw, 46px); font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.15; color: #fff; margin: 10px 0 28px;
}
.about-body { font-size: 18px; color: var(--dark-sub); line-height: 1.65; margin-bottom: 64px; }
.about-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  border-top: 1px solid var(--hairline-d); padding-top: 44px;
}
.about-strip div { display: flex; flex-direction: column; gap: 6px; }
.about-strip strong {
  font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -0.02em;
  color: var(--aura-sky);
}
.about-per { font-size: 0.55em; font-weight: 600; color: var(--dark-sub); }
.about-strip span { font-size: 14px; color: var(--dark-sub); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px;
}
.contact-card {
  background: rgba(11,25,38,0.72); border-radius: var(--radius);
  border: 1px solid var(--hairline); padding: 34px 30px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.contact .section-title { margin-bottom: 56px; }
.contact-card h3 {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--aura-blue); margin-bottom: 16px;
}
.contact-card p { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin-bottom: 14px; }
.contact-big { font-size: 20px; font-weight: 600; color: var(--ink); }
.contact-link { font-size: 15px; font-weight: 500; color: var(--aura-blue); }
.contact-link:hover { color: var(--aura-sky); }
.contact-socials { display: flex; flex-direction: column; gap: 6px; }
.contact-socials a { font-size: 16px; font-weight: 500; color: var(--ink-2); width: fit-content; }
.contact-socials a:hover { color: var(--aura-blue); }
.contact-hours { font-size: 13.5px; color: var(--ink-3); }
.contact-cta { text-align: center; }

/* ---------- Footer ---------- */
.footer { background: transparent; padding: 72px 0 48px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.footer-logo { height: 88px; width: auto; opacity: 0.95; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--dark-sub); font-size: 13.5px; transition: color 0.25s; }
.footer-links a:hover { color: #fff; }
.footer-note { color: rgba(147,170,184,0.55); font-size: 12px; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .service-card, .work-card { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .services-grid, .work-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-split { grid-template-columns: 1fr; gap: 48px; }
  .about-strip { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 96px 0; }
}
@media (max-width: 640px) {
  .services-grid, .work-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(5,11,18,0.96);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--hairline-d);
    max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease);
  }
  .nav-links.open { max-height: 320px; }
  .nav-links a { padding: 16px 24px; font-size: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px; justify-content: center;
    width: 36px; height: 36px; background: none; border: none; cursor: pointer; align-items: center;
  }
  .nav-burger span {
    display: block; width: 18px; height: 1.6px; background: #fff;
    transition: transform 0.35s var(--ease);
  }
  .nav-burger[aria-expanded="true"] span:first-child { transform: translateY(3.3px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-3.3px) rotate(-45deg); }
  .hero-title { font-size: clamp(48px, 15vw, 72px); }
}

/* ============================================================
   SUBPAGES — page hero, service detail, gear catalogue, booking
   ============================================================ */
.page-hero {
  background: transparent; padding: 150px 0 70px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 80% at 80% 10%, rgba(20,153,211,0.12), transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff; font-size: clamp(30px, 4.8vw, 46px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 14px;
}
.page-hero p { color: var(--dark-sub); font-size: clamp(14px, 1.8vw, 17px); max-width: 560px; }

/* Service detail rows */
.svc-rows { display: flex; flex-direction: column; gap: 20px; }
.svc-row {
  display: grid; grid-template-columns: 220px 1fr auto; gap: 28px; align-items: start;
  background: rgba(11,25,38,0.72); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 34px 34px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.svc-row h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; }
.svc-row .svc-tag { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--aura-blue); margin-top: 8px; }
.svc-row p { font-size: 15px; color: var(--ink-3); line-height: 1.6; }
.svc-row ul { margin: 10px 0 0 18px; font-size: 14.5px; color: var(--ink-2); line-height: 1.8; }
.svc-price { text-align: right; white-space: nowrap; }
.svc-price strong { display: block; font-size: 20px; font-weight: 700; color: var(--ink); }
.svc-price span { font-size: 12.5px; color: var(--ink-3); }
@media (max-width: 800px) { .svc-row { grid-template-columns: 1fr; gap: 12px; } .svc-price { text-align: left; } }

/* Gear catalogue */
.cat-section { margin-bottom: 46px; }
.cat-section h3 {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--aura-sky); margin-bottom: 16px;
}
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.cat-item {
  background: rgba(11,25,38,0.72); border: 1px solid var(--hairline); border-radius: 16px;
  padding: 22px 22px 20px; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.cat-item::after {
  content: ""; position: absolute; right: -30px; top: -30px; width: 90px; height: 90px;
  border-radius: 50%; border: 1px dashed rgba(20,153,211,0.14);
  transition: transform 0.5s var(--ease);
}
.cat-item:hover {
  transform: translateY(-4px); border-color: rgba(127,208,240,0.4);
  box-shadow: 0 14px 36px rgba(0,0,0,0.4), 0 0 26px rgba(20,153,211,0.16);
}
.cat-item:hover::after { transform: scale(1.25) rotate(45deg); }
.cat-ico {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(127,208,240,0.18), rgba(16,144,192,0.12));
  color: var(--aura-sky); position: relative; z-index: 1;
}
.cat-ico svg { width: 23px; height: 23px; }
.cat-item strong { display: block; font-size: 15.5px; font-weight: 600; color: var(--ink); position: relative; z-index: 1; }
.cat-item span { font-size: 13px; color: var(--ink-3); position: relative; z-index: 1; line-height: 1.5; }
.cat-note { font-size: 14px; color: var(--ink-3); margin-top: 8px; }

/* Booking */
.bk-wrap { max-width: 720px; }
.bk-form { display: flex; flex-direction: column; gap: 22px; }
.bk-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 8px; }
.bk-field input[type="text"], .bk-field input[type="date"], .bk-field select, .bk-field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 15px; color: var(--ink);
  background: rgba(11,25,38,0.8); border: 1px solid rgba(127,208,240,0.24); border-radius: 12px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bk-field input:focus, .bk-field select:focus, .bk-field textarea:focus {
  border-color: var(--aura-blue); box-shadow: 0 0 0 3px rgba(20,153,211,0.14);
}
.bk-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .bk-two { grid-template-columns: 1fr; } }
.slot-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.slot {
  padding: 10px 16px; border-radius: 980px; font-size: 14px; font-weight: 500;
  background: rgba(11,25,38,0.8); border: 1px solid rgba(127,208,240,0.24); color: var(--ink-2);
  cursor: pointer; transition: all 0.2s;
}
.slot:hover { border-color: var(--aura-sky); color: var(--aura-sky); }
.slot.on { background: var(--aura-blue); border-color: var(--aura-blue); color: #fff; }
.bk-note { font-size: 13px; color: var(--ink-3); line-height: 1.55; }
.bk-status { font-size: 14.5px; line-height: 1.6; border-radius: 14px; padding: 16px 18px; display: none; }
.bk-status.ok { display: block; background: rgba(34,197,94,0.12); color: #8ee7b0; border: 1px solid rgba(34,197,94,0.35); }
.bk-status.err { display: block; background: rgba(239,68,68,0.1); color: #ffb1b1; border: 1px solid rgba(239,68,68,0.3); }
.bk-alt { font-size: 13.5px; color: var(--ink-3); }
.bk-alt a { color: var(--aura-blue); font-weight: 500; }

/* Light sections on subpages */
.section-sub { padding: 90px 0; }

/* ============================================================
   REAL CONTENT — studios rows, poster wall, founder & team
   ============================================================ */
.room-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
  margin-bottom: 64px;
}
.room-row:nth-child(even) .room-photo { order: 2; }
.room-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); }
.room-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; }
.room-copy h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.room-copy .room-floor {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--aura-blue); margin-bottom: 14px;
}
.room-copy p { font-size: 16px; color: var(--ink-2); line-height: 1.65; }
.room-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.room-badge {
  font-size: 12.5px; font-weight: 600; padding: 6px 13px; border-radius: 980px;
  background: rgba(20,153,211,0.14); color: var(--aura-sky); border: 1px solid rgba(127,208,240,0.3);
}
@media (max-width: 800px) {
  .room-row { grid-template-columns: 1fr; gap: 20px; }
  .room-row:nth-child(even) .room-photo { order: 0; }
}

/* Poster wall */
.poster-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px;
}
.poster-grid img {
  width: 100%; border-radius: 12px; border: 1px solid var(--hairline-d);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.poster-grid img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.poster-more {
  display: flex; align-items: center; justify-content: center; text-align: center;
  border: 1px dashed rgba(127,208,240,0.4); border-radius: 12px; min-height: 180px;
  color: var(--aura-sky); font-size: 15px; font-weight: 500; padding: 16px;
  transition: background 0.3s;
}
.poster-more:hover { background: rgba(127,208,240,0.08); }

/* Founder */
.founder-grid { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: center; }
.founder-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); }
.founder-photo img { width: 100%; display: block; }
.founder-copy h3 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.founder-copy .founder-role { color: var(--aura-blue); font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.founder-copy p { font-size: 16px; color: var(--ink-2); line-height: 1.7; margin-bottom: 14px; }
@media (max-width: 800px) { .founder-grid { grid-template-columns: 1fr; gap: 28px; } .founder-photo { max-width: 340px; } }

/* Team cards */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.team-card {
  background: rgba(11,25,38,0.72); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 30px 30px 26px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.team-card h4 { font-size: 19px; font-weight: 600; }
.team-card .team-role { color: var(--aura-blue); font-size: 13px; font-weight: 600; margin: 2px 0 12px; }
.team-card p { font-size: 14.5px; color: var(--ink-3); line-height: 1.6; }
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; } }

/* Small trust strip */
.trust-strip {
  display: flex; gap: 34px; flex-wrap: wrap; align-items: baseline;
  padding: 26px 0 0;
}
.trust-strip div strong { font-size: 20px; font-weight: 700; color: var(--aura-sky); display: block; }
.trust-strip div span { font-size: 13px; color: var(--dark-sub); }

/* (Catalogue is now an icon-based spec sheet — no product photos.) */

/* ============================================================
   THE BUILDING — scroll-driven 3D cutaway of 17/7 Yogambal St.
   Pure CSS 3D; driven by building.js setting transforms.
   ============================================================ */
.bldg-track { position: relative; height: 520vh; background: var(--dark); }
.bldg-stage {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center;
  background:
    radial-gradient(55% 45% at 72% 30%, rgba(20,153,211,0.13), transparent 65%),
    radial-gradient(40% 35% at 20% 80%, rgba(0,96,144,0.10), transparent 60%),
    var(--dark);
}
.bldg-hd {
  position: absolute; top: 0; left: 0; right: 0; z-index: 5;
  padding: 84px 24px 0; text-align: center; pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.bldg-hd h2 { color: #fff; font-size: clamp(30px, 5vw, 52px); font-weight: 700; letter-spacing: -0.02em; }
.bldg-hd p { color: var(--dark-sub); font-size: 15px; margin-top: 8px; }

/* Scene + world */
.bldg-scene {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  perspective: 1700px; perspective-origin: 62% 42%;
}
.bldg-world { position: relative; width: 360px; height: 420px; transform-style: preserve-3d; will-change: transform; }

/* Floors — each a 3D box built from faces */
.floor { position: absolute; left: 0; bottom: 0; width: 360px; height: 84px; transform-style: preserve-3d; will-change: transform, filter; }
.face { position: absolute; inset: 0; backface-visibility: hidden; }
.f-front  { transform: translateZ(120px); }
.f-back   { transform: rotateY(180deg) translateZ(120px); }
.f-left   { width: 240px; left: 60px;  transform: rotateY(-90deg) translateZ(180px); }
.f-right  { width: 240px; left: 60px;  transform: rotateY(90deg) translateZ(180px); }
.f-top {
  height: 240px; top: -78px; transform: rotateX(90deg) translateZ(120px);
  box-shadow: inset 0 0 30px rgba(127,208,240,0.10);
  background: linear-gradient(135deg, #2f5b76 0%, #1c425c 100%);
  border: 1px solid rgba(127,208,240,0.32);
}
.f-front, .f-back {
  background: linear-gradient(180deg, #1e4c6c 0%, #123852 100%);
  border: 1px solid rgba(127,208,240,0.30);
  box-shadow: inset 0 1px 0 rgba(127,208,240,0.18);
}
.f-left, .f-right { background: linear-gradient(180deg, #16405c 0%, #0d2c44 100%); border: 1px solid rgba(127,208,240,0.20); }

/* Windows — lit strips on front + right faces */
.f-front::after, .f-right::after {
  content: ""; position: absolute; left: 10%; right: 10%; top: 26%; bottom: 30%;
  background: repeating-linear-gradient(90deg,
    rgba(127,208,240,0.55) 0 26px, rgba(10,26,38,0.25) 26px 40px);
  border-radius: 3px; filter: blur(0.2px);
  transition: opacity 0.4s, filter 0.4s;
}
.floor[data-glow="amber"] .f-front::after,
.floor[data-glow="amber"] .f-right::after {
  background: repeating-linear-gradient(90deg,
    rgba(240,201,135,0.55) 0 34px, rgba(10,26,38,0.25) 34px 48px);
}
/* Ground floor: entrance */
.floor.f-ground .f-front::after { left: 34%; }
.floor.f-ground .f-front::before {
  content: ""; position: absolute; left: 12%; width: 15%; top: 22%; bottom: 0;
  background: linear-gradient(180deg, rgba(127,208,240,0.5), rgba(20,153,211,0.16));
  border-radius: 4px 4px 0 0; box-shadow: 0 0 22px rgba(127,208,240,0.35);
}
/* Roof cap */
.bldg-roof {
  position: absolute; left: -6px; bottom: 0; width: 372px; height: 10px; transform-style: preserve-3d;
}
.bldg-roof .f-top { top: -110px; height: 252px; width: 372px; transform: rotateX(90deg) translateZ(5px);
  background: linear-gradient(135deg, #2c586f, #1a3d54); border-radius: 4px; }

/* Active / dim states */
.floor { transition: filter 0.45s var(--ease), opacity 0.45s var(--ease); }
.floor.dim { filter: brightness(0.62) saturate(0.6); }
.floor.lit { filter: brightness(1.35) saturate(1.2); }
.floor.lit .f-front::after, .floor.lit .f-right::after { filter: drop-shadow(0 0 14px rgba(127,208,240,0.6)); }

/* Detail card (2D overlay, left) */
.bldg-card {
  position: absolute; z-index: 6; left: max(24px, 6vw); top: 50%;
  width: min(360px, 84vw); transform: translateY(-50%) translateX(-16px);
  background: rgba(16,38,54,0.88); border: 1px solid rgba(127,208,240,0.3);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  border-radius: 20px; padding: 26px 26px 22px;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.bldg-card.show { opacity: 1; pointer-events: auto; transform: translateY(-50%) translateX(0); }
.bldg-card .bc-floor { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--aura-sky); }
.bldg-card h3 { color: #fff; font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin: 6px 0 8px; }
.bldg-card p { color: #b9cbd6; font-size: 14.5px; line-height: 1.6; }
.bldg-card .bc-rate { margin: 14px 0 16px; color: var(--aura-sky); font-size: 14px; font-weight: 600; }
.bldg-card .btn { font-size: 14px; padding: 10px 20px; }

/* Floor pins (right rail) */
.bldg-pins {
  position: absolute; z-index: 6; right: max(20px, 4vw); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px;
}
.bldg-pin {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(127,208,240,0.3);
  background: rgba(13,30,43,0.6); color: #9fc5d8; font: 600 13px/1 var(--font);
  cursor: pointer; transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.bldg-pin.on { background: var(--aura-blue); color: #fff; border-color: transparent; transform: scale(1.12); }

/* Scroll hint */
.bldg-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 5;
  color: #86a8ba; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  animation: bldg-bob 2.4s ease-in-out infinite; transition: opacity 0.4s;
}
@keyframes bldg-bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,7px); } }

/* ---------- Interiors (step inside) ---------- */
.interior {
  position: fixed; inset: 0; z-index: 300; display: none;
  background: var(--dark);
}
.interior.open { display: block; }
.interior .in-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  animation: in-zoom 18s ease-out forwards; filter: brightness(0.65);
}
@keyframes in-zoom { from { transform: scale(1.04); } to { transform: scale(1.16); } }
.interior .in-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,14,20,0.88) 0%, rgba(5,14,20,0.55) 45%, rgba(5,14,20,0.15) 100%); }
.interior .in-panel {
  position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center;
  max-width: 560px; padding: 40px clamp(24px, 6vw, 72px);
}
.interior .bc-floor { font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--aura-sky); }
.interior h2 { color: #fff; font-size: clamp(34px, 5vw, 54px); font-weight: 700; letter-spacing: -0.02em; margin: 10px 0 14px; }
.interior p { color: #c4d4dd; font-size: 16.5px; line-height: 1.65; margin-bottom: 18px; }
.interior .in-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.interior .in-chip {
  font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: 980px;
  background: rgba(127,208,240,0.14); color: var(--aura-sky); border: 1px solid rgba(127,208,240,0.3);
}
.interior .in-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.interior .in-close {
  position: absolute; top: 22px; right: 26px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3);
  background: rgba(10,20,28,0.5); color: #fff; font-size: 20px; cursor: pointer;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.interior .in-close:hover { background: rgba(20,153,211,0.5); }

/* ---------- Mobile / reduced motion: flat fallback ---------- */
.bldg-fallback { display: none; }
@media (max-width: 820px), (prefers-reduced-motion: reduce) {
  .bldg-track { height: auto; background: var(--dark); }
  .bldg-stage, .bldg-hint { display: none; }
  .bldg-fallback { display: block; padding: 80px 0; }
  .bldg-fallback .bf-card {
    background: rgba(13,30,43,0.85); border: 1px solid rgba(127,208,240,0.2);
    border-radius: 20px; padding: 26px; margin-bottom: 16px;
  }
  .bldg-fallback .bc-floor { font-size: 12px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--aura-sky); }
  .bldg-fallback h3 { color: #fff; font-size: 22px; margin: 6px 0 8px; }
  .bldg-fallback p { color: #b9cbd6; font-size: 14.5px; line-height: 1.6; margin-bottom: 12px; }
}

/* ---------- Site-wide juice: tilt cards + floating orbs ---------- */
.tilt { transform-style: preserve-3d; transition: transform 0.25s ease-out, box-shadow 0.3s; will-change: transform; }
.orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5;
  animation: orb-float var(--od, 16s) ease-in-out var(--ol, 0s) infinite alternate;
}
@keyframes orb-float { from { transform: translate(0,0) scale(1); } to { transform: translate(var(--ox, 40px), var(--oy, -50px)) scale(1.15); } }
@media (prefers-reduced-motion: reduce) { .orb { animation: none; } .tilt { transition: none; } }

/* ============================================================
   HOLO STRIP — film credits as a drifting holographic filmstrip
   ============================================================ */
.holo-wrap {
  position: relative; overflow: hidden; padding: 30px 0 34px;
  perspective: 1200px;
}
.holo-tiltframe { transform: rotateX(7deg) rotateY(-3deg); transform-style: preserve-3d; }
.holo-strip {
  position: relative;
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(9,26,38,0.9), rgba(6,18,28,0.9));
  border-top: 1px solid rgba(127,208,240,0.25);
  border-bottom: 1px solid rgba(127,208,240,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 0 40px rgba(20,153,211,0.08);
}
/* sprocket holes */
.holo-strip::before, .holo-strip::after {
  content: ""; position: absolute; left: 0; right: 0; height: 12px; z-index: 3;
  background: repeating-linear-gradient(90deg,
    transparent 0 14px, rgba(127,208,240,0.4) 14px 24px, transparent 24px 38px);
  opacity: 0.5;
}
.holo-strip::before { top: 3px; }
.holo-strip::after { bottom: 3px; }
.holo-track {
  display: flex; gap: 14px; width: max-content;
  animation: holo-scroll var(--hs, 55s) linear infinite;
  will-change: transform;
}
.holo-wrap:hover .holo-track { animation-play-state: paused; }
@keyframes holo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.holo-frame {
  position: relative; flex: 0 0 auto; width: 150px; height: 216px; border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(127,208,240,0.28);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.holo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* holographic sheen */
.holo-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg,
    rgba(127,208,240,0)   30%,
    rgba(127,208,240,0.28) 42%,
    rgba(180,140,255,0.22) 50%,
    rgba(120,255,214,0.20) 58%,
    rgba(127,208,240,0)   70%);
  background-size: 300% 100%;
  mix-blend-mode: screen;
  animation: holo-sheen 6.5s ease-in-out infinite;
}
/* scanlines */
.holo-frame::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: repeating-linear-gradient(180deg,
    rgba(127,208,240,0.05) 0 1px, transparent 1px 3px);
  opacity: 0.7;
}
@keyframes holo-sheen {
  0%, 100% { background-position: 120% 0; }
  50%      { background-position: -20% 0; }
}
.holo-frame:hover {
  transform: translateY(-8px) scale(1.06) rotateY(-4deg);
  border-color: rgba(127,208,240,0.7);
  box-shadow: 0 14px 40px rgba(20,153,211,0.35), 0 0 24px rgba(127,208,240,0.25);
  z-index: 4;
}
/* glow floor reflection */
.holo-reflect {
  height: 60px; margin-top: 6px;
  background: radial-gradient(50% 100% at 50% 0%, rgba(20,153,211,0.18), transparent 75%);
  filter: blur(6px);
}
@media (prefers-reduced-motion: reduce) {
  .holo-track { animation: none; }
  .holo-wrap { overflow-x: auto; }
  .holo-frame::after { animation: none; }
  .holo-tiltframe { transform: none; }
}

/* ---------- Gallery + map ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.gal-grid a { display: block; border-radius: 16px; overflow: hidden; border: 1px solid var(--hairline); position: relative; }
.gal-grid img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.gal-grid a:hover img { transform: scale(1.06); }
.map-embed { border: 0; border-radius: 22px; width: 100%; height: 380px; display: block; }

/* ---------- Hero v2: aurora title, floating posters, pulsing CTA ---------- */
.hero-title {
  background: linear-gradient(120deg, #ffffff 20%, #9adcf6 40%, #ffffff 60%, #7fd0f0 80%, #ffffff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: aurora-sweep 9s ease-in-out infinite;
}
@keyframes aurora-sweep { 0%,100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }
.hero-float {
  position: absolute; z-index: 1; width: 150px; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(127,208,240,0.25); opacity: 0.5;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  animation: hero-bob var(--hb, 9s) ease-in-out var(--hd, 0s) infinite alternate;
  pointer-events: none;
}
.hero-float img { width: 100%; display: block; }
@keyframes hero-bob {
  from { transform: translateY(0) rotate3d(0.6, 1, 0, 14deg); }
  to   { transform: translateY(-24px) rotate3d(0.6, 1, 0, -6deg); }
}
.btn-pulse { animation: cta-pulse 3s ease-in-out infinite; }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 1px 2px rgba(0,96,144,0.25), 0 8px 24px rgba(20,153,211,0.28); }
  50%      { box-shadow: 0 1px 2px rgba(0,96,144,0.3), 0 8px 38px rgba(20,153,211,0.55), 0 0 0 6px rgba(20,153,211,0.08); }
}
@media (max-width: 900px) { .hero-float { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-title { animation: none; }
  .hero-float { animation: none; }
  .btn-pulse { animation: none; }
}

/* ---------- Events ---------- */
.ev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.ev-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--dark-2); border: 1px solid var(--hairline-d);
  transition: transform 0.45s var(--ease), border-color 0.35s;
}
.ev-card:hover { transform: translateY(-6px); border-color: rgba(127,208,240,0.4); }
.ev-art { height: 130px; position: relative; }
.ev-date {
  position: absolute; top: 14px; left: 14px;
  background: rgba(5,14,20,0.72); border: 1px solid rgba(127,208,240,0.35);
  border-radius: 10px; padding: 6px 12px; text-align: center;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.ev-date strong { display: block; color: #fff; font-size: 17px; line-height: 1.1; }
.ev-date span { color: var(--aura-sky); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; }
.ev-tag {
  position: absolute; top: 14px; right: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--aura-sky); background: rgba(20,153,211,0.16);
  border: 1px solid rgba(127,208,240,0.3); border-radius: 980px; padding: 5px 11px;
}
.ev-body { padding: 18px 20px 20px; }
.ev-body h3 { color: #fff; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.ev-body p { color: var(--dark-sub); font-size: 13.5px; margin-top: 5px; }

/* ---------- Services tracklist (index) — console channel list ---------- */
.svc-list { border-top: 1px solid var(--hairline); }
.svc-track {
  display: grid; grid-template-columns: 60px 1fr auto; grid-template-areas: "num name arrow" "num desc arrow";
  align-items: center; column-gap: 20px; padding: 26px 10px;
  border-bottom: 1px solid var(--hairline); position: relative; overflow: hidden;
  transition: padding 0.35s var(--ease);
}
.svc-track::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,153,211,0.07), rgba(127,208,240,0.03));
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.svc-track:hover::before { transform: scaleX(1); }
.svc-track:hover { padding-left: 22px; }
.st-num {
  grid-area: num; font-size: 13px; font-weight: 600; color: var(--ink-3);
  font-variant-numeric: tabular-nums; letter-spacing: 0.08em;
}
.st-name {
  grid-area: name; font-size: clamp(22px, 3.4vw, 34px); font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink); line-height: 1.15;
  transition: color 0.3s;
}
.svc-track:hover .st-name { color: var(--aura-sky); }
.st-desc { grid-area: desc; font-size: 14px; color: var(--ink-3); margin-top: 4px; }
.st-arrow {
  grid-area: arrow; font-size: 22px; color: var(--aura-blue);
  opacity: 0; transform: translateX(-8px); transition: all 0.35s var(--ease);
}
.svc-track:hover .st-arrow { opacity: 1; transform: translateX(0); }
/* little EQ bars that dance on hover */
.st-eq { position: absolute; right: 64px; top: 50%; transform: translateY(-50%); display: flex; gap: 3px; align-items: flex-end; height: 20px; opacity: 0; transition: opacity 0.3s; }
.svc-track:hover .st-eq { opacity: 1; }
.st-eq i {
  width: 4px; background: var(--aura-blue); border-radius: 2px; height: 8px;
  animation: st-eq 0.7s ease-in-out infinite alternate;
}
.st-eq i:nth-child(2) { animation-delay: 0.18s; height: 15px; }
.st-eq i:nth-child(3) { animation-delay: 0.36s; height: 11px; }
@keyframes st-eq { from { transform: scaleY(0.4); } to { transform: scaleY(1.4); } }
@media (max-width: 640px) { .st-eq { display: none; } .st-arrow { display: none; } }
@media (prefers-reduced-motion: reduce) { .st-eq i { animation: none; } }

/* ---------- Mascot placements ---------- */
.mascot-spot { display: flex; align-items: center; gap: 16px; }
.mascot-spot img { width: 84px; height: 84px; flex: 0 0 auto; animation: hero-bob 7s ease-in-out infinite alternate; }
@media (prefers-reduced-motion: reduce) { .mascot-spot img { animation: none; } }

/* ============================================================
   GRAPHIC KIT — marquee band, ghost words, rings, dots, footer
   ============================================================ */

/* Scrolling type band between sections */
.type-marquee {
  overflow: hidden; padding: 26px 0; position: relative;
  background: transparent;
  border-top: 1px solid rgba(127,208,240,0.12);
  border-bottom: 1px solid rgba(127,208,240,0.12);
}
.type-marquee .tm-track {
  display: flex; gap: 56px; width: max-content;
  animation: holo-scroll 36s linear infinite;
}
.type-marquee span {
  font-size: clamp(22px, 3.4vw, 36px); font-weight: 800; letter-spacing: 0.06em;
  white-space: nowrap; color: transparent;
  -webkit-text-stroke: 1px rgba(127,208,240,0.45);
}
.type-marquee span.tm-solid { color: var(--aura-sky); -webkit-text-stroke: 0; }
@media (prefers-reduced-motion: reduce) { .type-marquee .tm-track { animation: none; } }

/* Ghost outline word behind section titles */
.ghost-wrap { position: relative; }
.ghost-word {
  position: absolute; top: -0.28em; left: -0.04em; z-index: 0; pointer-events: none;
  font-size: clamp(90px, 16vw, 210px); font-weight: 800; letter-spacing: -0.02em;
  line-height: 1; color: transparent; user-select: none; white-space: nowrap;
  -webkit-text-stroke: 1.5px rgba(20,153,211,0.10);
}
.section-dark .ghost-word { -webkit-text-stroke: 1.5px rgba(127,208,240,0.10); }
.ghost-wrap > *:not(.ghost-word) { position: relative; z-index: 1; }

/* Sound rings — concentric dashed circles, slowly rotating */
.deco-rings {
  position: absolute; width: 130px; height: 130px; pointer-events: none; z-index: 0;
  border-radius: 50%;
  border: 1px dashed rgba(20,153,211,0.16);
  animation: rings-spin 44s linear infinite;
}
.deco-rings::before, .deco-rings::after {
  content: ""; position: absolute; border-radius: 50%;
  border: 1px dashed rgba(20,153,211,0.12);
}
.deco-rings::before { inset: 22px; }
.deco-rings::after { inset: 46px; border-style: solid; border-color: rgba(20,153,211,0.10); }
@keyframes rings-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .deco-rings { animation: none; } }

/* Dot grid corner texture */
.deco-dots {
  position: absolute; width: 220px; height: 160px; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(20,153,211,0.22) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent);
  mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent);
}

/* Page heroes: waveform + dots texture (applies to every subpage) */
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    radial-gradient(circle, rgba(127,208,240,0.18) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(115deg, transparent 45%, #000 75%);
  mask-image: linear-gradient(115deg, transparent 45%, #000 75%);
}
.page-hero .ph-wave {
  position: absolute; left: 0; right: 0; bottom: -2px; height: 60px; z-index: 0;
  pointer-events: none; opacity: 0.9;
}

/* Footer: ghost brand + peeking mascot */
.footer { position: relative; overflow: hidden; }
.footer::before {
  content: "aura studios"; position: absolute; left: 50%; bottom: -0.32em; transform: translateX(-50%);
  font-size: clamp(70px, 13vw, 180px); font-weight: 800; letter-spacing: 0.02em; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(127,208,240,0.09);
  pointer-events: none; white-space: nowrap;
}
.footer-peek {
  position: absolute; right: 7%; top: -46px; width: 76px; pointer-events: none;
  animation: peek-bob 5s ease-in-out infinite alternate;
}
@keyframes peek-bob { from { transform: translateY(8px) rotate(-4deg); } to { transform: translateY(0) rotate(3deg); } }
@media (prefers-reduced-motion: reduce) { .footer-peek { animation: none; } }

/* ---------- Studios cinematic band (full-bleed) ---------- */
.studios-band {
  position: relative; overflow: hidden; background: var(--dark);
  min-height: 92vh; display: flex; align-items: center;
  padding: 120px 0;
}
.sb-media {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.44) saturate(0.95);
}
.sb-fade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(75% 60% at 50% 50%, rgba(4,10,16,0.62), rgba(4,10,16,0.25) 62%, transparent 88%),
    linear-gradient(180deg, var(--dark) 0%, transparent 30%, transparent 64%, var(--dark) 100%);
}
.sb-content { position: relative; z-index: 2; text-align: center; }
.sb-content .section-title { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.sb-content .section-lede {
  margin-left: auto; margin-right: auto;
  color: rgba(255,255,255,0.86); text-shadow: 0 1px 14px rgba(0,0,0,0.4);
}
@media (prefers-reduced-motion: reduce) { .sb-media img { animation: none; transform: scale(1.04); } }

/* ---------- WebGL building canvas ---------- */
.bldg-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block; z-index: 0; cursor: grab;
}
.bldg-canvas:active { cursor: grabbing; }
.bldg-canvas.floor-hover { cursor: pointer; }


/* ---------- Starfield — space dust behind every page ---------- */
.stars-c {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: -1; pointer-events: none;
}

/* soft aura glows breathing behind the page (painted on the same canvas) */

/* ---------- Our clients / partners ---------- */
.logo-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.logo-slot {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 86px; padding: 14px;
  border: 1px dashed rgba(127,208,240,0.26); border-radius: 16px;
  color: var(--ink-3); font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  background: rgba(11,25,38,0.45);
  transition: border-color 0.3s, color 0.3s, box-shadow 0.4s;
}
.logo-slot:hover { border-color: rgba(127,208,240,0.55); color: var(--aura-sky); box-shadow: 0 0 26px rgba(20,153,211,0.14); }
.logo-slot img { max-height: 46px; max-width: 80%; object-fit: contain; }
.logo-note { font-size: 12.5px; color: var(--ink-3); margin-top: 18px; }

/* ---------- Building sound toggle ---------- */
.bldg-sound {
  position: absolute; z-index: 6; right: max(20px, 4vw); bottom: 26px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(127,208,240,0.3);
  background: rgba(13,30,43,0.6); color: #9fc5d8;
  cursor: pointer; font-size: 16px; line-height: 1;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
}
.bldg-sound:hover { border-color: rgba(127,208,240,0.6); color: #fff; }
.bldg-sound.on { background: var(--aura-blue); color: #fff; border-color: transparent; }

/* ============================================================
   GLASS KIT — frosted glassmorphism over the starfield.
   Loaded last so it overrides the flat card surfaces above.
   ============================================================ */

/* the recipe: translucent blue-tinted pane, frosted backdrop,
   specular top edge, soft depth */
.service-card, .contact-card, .svc-row, .team-card, .cat-item, .ev-card,
.logo-slot, .bf-card, .work-card,
.slot,
.bk-field input[type="text"], .bk-field input[type="date"],
.bk-field select, .bk-field textarea {
  background:
    linear-gradient(155deg, rgba(127,208,240,0.16) 0%, rgba(31,61,86,0.38) 34%, rgba(10,22,34,0.46) 100%);
  border: 1px solid rgba(127,208,240,0.30);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.22),
    0 14px 44px rgba(0,0,0,0.35);
}

/* diagonal light streak across the pane — the "glass" read */
.service-card, .contact-card, .team-card, .svc-row, .ev-card, .cat-item, .bf-card { position: relative; }
.service-card::before, .contact-card::before, .team-card::before,
.svc-row::before, .ev-card::before, .cat-item::before, .bf-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  border-radius: inherit;
  background: linear-gradient(115deg,
    rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 20%, transparent 45%);
}
.service-card > *, .contact-card > *, .team-card > *, .svc-row > *, .ev-card > *, .cat-item > * { position: relative; z-index: 1; }

/* unified glass hover — pane brightens, lifts, glows */
.service-card:hover, .contact-card:hover, .team-card:hover,
.cat-item:hover, .ev-card:hover, .logo-slot:hover, .work-card:hover {
  border-color: rgba(127,208,240,0.44);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 20px 56px rgba(0,0,0,0.45),
    0 0 38px rgba(20,153,211,0.20);
}

/* hero + about stat chips become little glass pills */
.trust-strip div, .about-strip > div {
  padding: 14px 20px; border-radius: 18px;
  background: linear-gradient(150deg, rgba(127,208,240,0.15), rgba(24,50,72,0.35) 60%);
  border: 1px solid rgba(127,208,240,0.26);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ghost buttons + inputs: glassier */
.btn-ghost {
  background: linear-gradient(150deg, rgba(127,208,240,0.10), rgba(11,25,38,0.4));
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}
.bk-field input:focus, .bk-field select:focus, .bk-field textarea:focus {
  border-color: rgba(127,208,240,0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 0 0 3px rgba(20,153,211,0.16), 0 0 24px rgba(20,153,211,0.12);
}
.slot.on {
  background: linear-gradient(160deg, rgba(20,153,211,0.9), rgba(16,144,192,0.8));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 0 22px rgba(20,153,211,0.35);
}

/* marquee band: frosted strip */
.type-marquee {
  background: rgba(11,25,38,0.30);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

/* photo + map frames: glass edges instead of hairlines */
.room-photo, .founder-photo, .gal-grid a, .map-embed {
  border: 1px solid rgba(127,208,240,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 16px 44px rgba(0,0,0,0.4);
}

/* interior overlay: copy sits on a frosted sheet over the room photo */
.interior .in-panel {
  background: linear-gradient(105deg, rgba(6,14,22,0.66) 0%, rgba(6,14,22,0.34) 78%, transparent 100%);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-right: 1px solid rgba(127,208,240,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  max-width: 600px;
}

/* building card + pins: match the kit */
.bldg-card {
  background: linear-gradient(155deg, rgba(127,208,240,0.12), rgba(11,30,45,0.66) 40%, rgba(7,18,28,0.74));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 18px 50px rgba(0,0,0,0.45);
}
.bldg-pin, .bldg-sound {
  background: linear-gradient(155deg, rgba(127,208,240,0.12), rgba(11,25,38,0.55));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}

/* svc-track rows: hover tint stays BEHIND the text (no blur —
   a backdrop-filter here frosts the row's own title) */
.svc-track::before {
  background: linear-gradient(90deg, rgba(127,208,240,0.08), transparent 70%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: -1;
}

@supports not (backdrop-filter: blur(1px)) {
  /* older browsers: solid fallback so text stays readable */
  .service-card, .contact-card, .svc-row, .team-card, .cat-item, .ev-card,
  .logo-slot, .bf-card, .work-card, .interior .in-panel { background: rgba(9,20,31,0.92); }
}


/* ---------- Aurora glows behind the glass (script.js injects .glass-glow) ---------- */
.section, .section-sub, .page-hero, .footer { position: relative; }
.section, .section-sub { overflow: hidden; }   /* keep glows from spilling into a horizontal scrollbar */
.glass-glow {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  animation: glow-drift var(--gd, 18s) ease-in-out var(--gl, 0s) infinite alternate;
}
@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(var(--gx, 50px), var(--gy, -40px)) scale(1.18); }
}
/* content always rides above the glows */
.section > .container, .section-sub > .container, .page-hero > .container, .footer > .container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .glass-glow { animation: none; } }

/* ============================================================
   EDITORIAL PASS — no more boxes.
   Cards become hairline-ruled entries; media goes sharp-cornered;
   forms go underline-style. Loaded last, overrides everything.
   ============================================================ */
:root { --radius: 3px; }

/* 1 — kill every pane: background, border, radius, blur, sheen */
.service-card, .contact-card, .svc-row, .team-card, .cat-item, .ev-card,
.logo-slot, .bf-card, .work-card, .trust-strip div, .about-strip > div {
  background: none; border: 0; border-radius: 0;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: none;
}
.service-card::before, .contact-card::before, .team-card::before,
.svc-row::before, .ev-card::before, .cat-item::before, .bf-card::before { content: none; }
.service-card:hover, .contact-card:hover, .team-card:hover,
.cat-item:hover, .ev-card:hover, .logo-slot:hover, .work-card:hover {
  transform: none; box-shadow: none; border-color: transparent;
}

/* 2 — hairline-ruled entries (the human, editorial read) */
.service-card, .contact-card, .team-card, .cat-item, .ev-card {
  border-top: 1px solid var(--hairline);
  padding: 26px 4px 10px 0;
  transition: border-color 0.35s var(--ease);
}
.service-card:hover, .contact-card:hover, .team-card:hover,
.cat-item:hover, .ev-card:hover { border-top-color: rgba(127,208,240,0.55); }

.svc-row {
  border-top: 1px solid var(--hairline); border-radius: 0;
  padding: 34px 0;
}
.svc-rows { gap: 0; }
.svc-rows .svc-row:last-child { border-bottom: 1px solid var(--hairline); }

/* icon chips → bare glyphs */
.service-icon, .cat-ico {
  width: auto; height: auto; border-radius: 0;
  background: none; color: var(--aura-sky);
  margin-bottom: 14px; display: block;
}

/* work / event media: sharp, no chrome */
.work-card { border: 0; background: none; }
.work-meta { padding: 16px 2px 0 0; }
.ev-card { padding-top: 0; border-top: 0; }
.ev-art { border-radius: 0; }
.ev-body { padding: 14px 2px 0 0; }
.ev-date, .ev-tag { border-radius: 2px; }

/* clients / partners: quiet wordmark row, ruled top and bottom */
.logo-row { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); gap: 0; }
.logo-slot {
  min-height: 84px; justify-content: center;
  border-right: 1px solid var(--hairline);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(141,166,181,0.66);
}
.logo-slot:last-child { border-right: 0; }
.logo-slot:hover { color: var(--aura-sky); border-color: var(--hairline); }

/* stat strips: bare columns with one accent rule */
.trust-strip div, .about-strip > div {
  padding: 2px 0 2px 16px;
  border-left: 1px solid rgba(127,208,240,0.4);
  border-radius: 0;
}

/* forms: underline fields, not boxes */
.bk-field input[type="text"], .bk-field input[type="date"],
.bk-field select, .bk-field textarea {
  background: transparent; border: 0; border-radius: 0;
  border-bottom: 1px solid rgba(127,208,240,0.3);
  padding: 10px 2px; box-shadow: none;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.bk-field input:focus, .bk-field select:focus, .bk-field textarea:focus {
  border-bottom-color: var(--aura-sky); box-shadow: none;
}
.slot {
  border-radius: 2px; background: transparent;
  border: 1px solid rgba(127,208,240,0.28);
  backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none;
}
.slot.on { background: var(--aura-blue); border-color: var(--aura-blue); border-radius: 2px; box-shadow: none; }
.bk-status { border-radius: 4px; }

/* media: sharp corners, plain hairline edges */
.room-photo, .founder-photo, .gal-grid a, .map-embed {
  border-radius: 3px; border: 1px solid rgba(127,208,240,0.16);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.poster-grid img, .holo-frame { border-radius: 2px; }
.interior .in-chip { border-radius: 2px; }
.room-badge { border-radius: 2px; }

/* marquee: back to a pure ruled strip */
.type-marquee { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }

/* 3D building card: sharp panel with an accent rule, not a rounded bubble */
.bldg-card {
  border-radius: 4px;
  background: rgba(5,14,22,0.82);
  border: 1px solid rgba(127,208,240,0.18);
  border-left: 2px solid var(--aura-blue);
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.bldg-fallback .bf-card { border-top: 1px solid var(--hairline); border-radius: 0; padding: 24px 0; }

/* ---------- Animated wave ribbons ---------- */
canvas.ph-wave { display: block; }
.wave-divider {
  position: relative; height: 74px; overflow: hidden;
  margin-top: 20px; pointer-events: none;
}
.wave-divider canvas { width: 100%; height: 100%; display: block; }
