/* ============================================================
   AURA — STUDIO PAGE CSS
   Matches: deep purple brand theme
   ============================================================ */

/* ── Page base ──────────────────────────────────────────── */
body {
  background: #080808;
  color: #f5f1ea;
}

/* ── Shared section wrapper ─────────────────────────────── */
.studio-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 900px) { .studio-wrap { padding: 0 28px; } }

/* ──────────────────────────────────────────────────────────
   SECTION 1: HERO — "A new studio with an old soul."
   ──────────────────────────────────────────────────────────*/
.studio-hero {
  padding-top: 120px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .studio-hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    gap: 48px;
  }
}

/* Left text column */
.studio-hero-text {}

.studio-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .6em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}

.studio-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: #f5f1ea;
  margin-bottom: 36px;
  letter-spacing: -.01em;
}

.studio-hero-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,241,234,.72);
  margin-bottom: 20px;
}

/* Right image column */
.studio-hero-img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
}
.studio-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 2.5s ease;
}
.studio-hero-img:hover img { transform: scale(1.04); }

/* ──────────────────────────────────────────────────────────
   SECTION 2: THE METHOD — "Four acts, one atmosphere."
   ──────────────────────────────────────────────────────────*/
.studio-method {
  padding: 100px 0;
  border-top: 1px solid rgba(197,160,89,.15);
}

.studio-method-header {
  margin-bottom: 60px;
}

.studio-method-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: #f5f1ea;
  letter-spacing: -.01em;
}

/* 4-column acts grid */
.studio-acts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 900px) {
  .studio-acts { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
}
@media (max-width: 500px) {
  .studio-acts { grid-template-columns: 1fr; gap: 36px; }
}

.studio-act {
  padding-right: 32px;
  border-top: 1px solid rgba(197,160,89,.25);
  padding-top: 28px;
  position: relative;
}
.studio-act:last-child { padding-right: 0; }

.studio-act-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.studio-act-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: #f5f1ea;
  margin-bottom: 12px;
  letter-spacing: .01em;
}

.studio-act-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,241,234,.6);
}

/* ──────────────────────────────────────────────────────────
   SECTION 3: CTA — "Let's build something beautiful."
   ──────────────────────────────────────────────────────────*/
.studio-cta {
  padding: 120px 0 140px;
  text-align: center;
  border-top: 1px solid rgba(197,160,89,.12);
}

.studio-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: #f5f1ea;
  margin-bottom: 48px;
  letter-spacing: -.02em;
}

.studio-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f0c040;
  color: #160830;
  padding: 18px 44px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .35em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .4s, transform .3s, box-shadow .4s;
  box-shadow: 0 12px 40px rgba(240,192,64,.35);
}
.studio-cta-btn:hover {
  background: #fff;
  color: #160830;
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(240,192,64,.2);
}
.studio-cta-btn svg { width: 16px; height: 16px; transition: transform .4s; }
.studio-cta-btn:hover svg { transform: translateX(6px); }

/* ── Footer overrides for purple bg ─────────────────────── */
.site-footer {
  background: #0d0520;
  border-top: 1px solid rgba(197,160,89,.12);
  padding: 72px 60px;
}
@media (max-width: 768px) { .site-footer { padding: 56px 28px; } }

.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media (min-width: 768px) {
  .site-footer .footer-inner { flex-direction: row; justify-content: space-between; }
}

.site-footer .footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.site-footer .footer-quote {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(245,241,234,.45); max-width: 320px; margin: 12px 0 20px;
}
.site-footer .footer-copy {
  font-size: 10px; text-transform: uppercase; letter-spacing: .4em;
  color: rgba(245,241,234,.2);
}

.site-footer .footer-links {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 48px;
}
.site-footer .footer-col h5 {
  font-size: 9px; text-transform: uppercase; letter-spacing: .5em;
  color: var(--gold); font-weight: 700; margin-bottom: 20px;
}
.site-footer .footer-col-link {
  display: block; font-size: 13px; font-weight: 300;
  color: rgba(245,241,234,.55);
  text-decoration: none; margin-bottom: 10px;
  transition: color .3s;
}
.site-footer .footer-col-link:hover { color: var(--gold); }

.studio-footer-copy {
  max-width: 1200px; margin: 48px auto 0;
  padding: 24px 60px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 11px; color: rgba(245,241,234,.3);
  text-align: center; letter-spacing: .2em;
}
@media (max-width: 768px) { .studio-footer-copy { padding: 24px 28px 0; } }

/* Navbar override for purple pages */
nav { background: transparent; }
/* nav.scrolled .nav-inner {
  background: rgba(22,8,48,.9) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,.4) !important;
} */
.nav-inner {
  border-color: rgba(197,160,89,.1) !important;
}
.nav-link { color: rgba(245,241,234,.55) !important; }
.nav-link:hover { color: #f5f1ea !important; opacity: 1 !important; }
.nav-link.active { color: var(--gold) !important; opacity: 1 !important; }
