/* ============================================
   INTRISIO STUDIOS — royal blue brand theme
   Royal blue #1E3A8A + dark base, white text
   ============================================ */

:root {
  --charcoal: #161616;
  --black: #0a0a0a;
  --royal: #1E3A8A;
  --royal-deep: #14265c;
  --royal-bright: #2b4eb5;
  --ice: #b8c9f5;
  --cream: #e3e3e3;
  --white: #ffffff;
  --max: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  font-size: 17px;
}

img { max-width: 100%; display: block; }
a { color: var(--ice); text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
.display {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--white);
}
h1.display { font-size: clamp(3rem, 9vw, 7.5rem); }
h2.display { font-size: clamp(2.2rem, 5.5vw, 4.2rem); }
h3.display { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }

.condensed-italic {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.tagline {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  color: var(--ice);
  margin-bottom: 14px;
}

/* ---------- Header / Nav ---------- */
header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 26px;
}
nav a {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
nav a:hover, nav a.active { color: var(--white); }
nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--royal-bright);
}
.nav-cta {
  background: var(--royal);
  color: var(--white) !important;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 22px !important;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--royal-bright); }
.nav-cta::after { display: none !important; }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--cream);
  color: var(--cream);
  font-size: 1.4rem;
  padding: 4px 12px;
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 16px 38px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}
.btn-royal {
  background: var(--royal);
  color: var(--white);
}
.btn-royal:hover { background: var(--royal-bright); }
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  outline: 1px solid rgba(255,255,255,0.25);
}
.btn-dark:hover { background: var(--royal); outline-color: transparent; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--cream);
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 100px 0; }
.sec-royal { background: var(--royal); }
.sec-royal p, .sec-royal .tagline { color: var(--white); }
.sec-black { background: var(--black); }
.sec-charcoal { background: var(--charcoal); }
.center { text-align: center; }

/* ---------- Hero ---------- */
.hero {
  background: var(--royal);
  text-align: center;
  padding: 110px 0 70px;
}
.hero h1 { margin-bottom: 10px; color: var(--white); }
.hero .tagline { margin-bottom: 34px; }
.hero p.lead {
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.hero p.sub { color: var(--ice); margin-bottom: 40px; }
.hero-img { margin-top: 70px; }
.hero-img img { width: 100%; }

.page-hero {
  background: var(--royal);
  text-align: center;
  padding: 90px 0 70px;
}
.page-hero p {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1.1rem;
  color: var(--white);
}

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }

/* ---------- Process list ---------- */
.process-item { margin-bottom: 34px; }
.process-item .key {
  color: var(--ice);
  font-size: 1.35rem;
}
.process-item .desc {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--cream);
}

/* ---------- Cards ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: rgba(0,0,0,0.32);
  padding: 38px 32px;
  border-top: 3px solid var(--royal-bright);
}
.sec-black .card, .sec-charcoal .card { background: #141414; border-top-color: var(--royal); }
.card h3 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.card p { font-size: 0.98rem; }

/* Pricing */
.price-card {
  background: var(--charcoal);
  padding: 44px 34px;
  text-align: center;
  border-top: 4px solid var(--royal);
  display: flex;
  flex-direction: column;
}
.price-card.featured { background: var(--royal); }
.price-card.featured li { border-bottom-color: rgba(255,255,255,0.2); }
.price-card .tier {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 6px;
}
.price-card .price {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: var(--white);
}
.price-card .price small { font-size: 1.1rem; color: var(--ice); }
.price-card .per { font-size: 0.85rem; color: var(--cream); margin-bottom: 22px; }
.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
  flex: 1;
}
.price-card li {
  padding: 9px 0 9px 26px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.price-card li::before {
  content: '—';
  color: var(--ice);
  position: absolute;
  left: 0;
}
.price-card .fit { font-size: 0.85rem; font-style: italic; color: var(--ice); margin-bottom: 20px; }
.offer-banner {
  background: var(--royal);
  color: var(--white);
  text-align: center;
  padding: 22px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 1.15rem;
}
.offer-banner a { color: var(--white); text-decoration: underline; }

/* ---------- Artist spotlight ---------- */
.spotlight {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: center;
}
.spotlight.reverse { grid-template-columns: 1fr 380px; }
.spotlight.reverse > :first-child { order: 2; }
.spotlight img { width: 100%; }
.role {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  text-transform: uppercase;
  color: var(--ice);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

/* ---------- Music platform buttons ---------- */
.platforms { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.platforms a {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 22px;
  background: var(--royal);
  color: var(--white);
  transition: background 0.2s;
}
.platforms a:hover { background: var(--royal-bright); }
.platforms a.alt { background: transparent; outline: 1px solid rgba(255,255,255,0.35); }
.platforms a.alt:hover { background: var(--royal); outline-color: transparent; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 50px auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 26px 0; }
.faq-item h3 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.faq-item p { font-size: 0.98rem; }

/* ---------- Embeds ---------- */
.embed-frame { position: relative; padding-bottom: 56.25%; height: 0; }
.embed-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Forms ---------- */
form { max-width: 640px; margin: 0 auto; }
.field { margin-bottom: 22px; }
label {
  display: block;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--ice);
  margin-bottom: 8px;
}
input, textarea, select {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--royal-bright);
  border-color: transparent;
}

/* ---------- Booking embed ---------- */
.booking-shell {
  background: var(--charcoal);
  padding: 30px;
  min-height: 480px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--black);
  padding: 60px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.socials a {
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}
.socials a:hover { color: var(--ice); }
.foot-logo {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
footer .motto { font-size: 0.9rem; color: var(--cream); }
footer .foot-mail { display:inline-block; margin-top: 10px; font-size: 0.95rem; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split, .spotlight, .spotlight.reverse, .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .split.reverse > :first-child, .spotlight.reverse > :first-child { order: 0; }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 20px 24px 26px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  nav ul.open { display: flex; }
  .menu-btn { display: block; }
  section { padding: 64px 0; }
}

/* ---------- Logo ---------- */
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 42px; width: 42px; border-radius: 50%; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; transition: transform .25s ease, opacity .25s ease; }
.gallery img:hover { transform: scale(1.03); opacity: .92; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Orange accent layer (manifesto: dark blue, orange, yellow, white) ---------- */
:root { --orange: #f7941d; --orange-deep: #c77417; }
.eyebrow { color: var(--orange); }
.role { color: var(--orange); }
.price-card .price { color: var(--orange); }
.price-card { border-top-color: var(--orange); }
.card { border-top-color: var(--orange); }
.sec-black .card, .sec-charcoal .card { border-top-color: var(--orange); }
nav a.active::after { background: var(--orange); }
.nav-cta { background: var(--orange); color: var(--black) !important; }
.nav-cta:hover { background: var(--white); }
.offer-banner { background: var(--orange); color: var(--black); }
.offer-banner a { color: var(--black); }
.btn-royal:hover { background: var(--orange); color: var(--black); }
.btn-amber, .btn-dark:hover { background: var(--orange); color: var(--black); outline-color: transparent; }
.platforms a:hover { background: var(--orange); color: var(--black); }
.socials a:hover { color: var(--orange); }
.process-item .key { color: var(--orange); }
a { color: var(--orange); }
nav a { color: var(--cream); }
.faq-item h3 { color: var(--white); }
label { color: var(--orange); }
input:focus, textarea:focus, select:focus { outline-color: var(--orange); }
