/*
  Designed and developed by Wave Agency - waveagency.com
  Version 1-0-0
*/

/* ============================================================
   FONTS (self-hosted, /fonts)
   ============================================================ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/playfair-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/playfair-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/playfair-700-italic.woff2') format('woff2');
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --midnight: #160E24;
  --midnight-2: #1E1333;
  --plum: #2A1A45;
  --plum-line: #3a2960;
  --orchid: #A442DF;
  --orchid-deep: #7A2BD0;
  --pink: #FF53C8;
  --rose: #E7B7A3;
  --gold: #F4D8C2;
  --champagne: #FAF4EE;
  --cream-2: #F3E9DF;
  --ink: #1C1330;
  --ink-soft: #4A3D5E;
  --mist: #EBE3F5;
  --mist-dim: #B7A9CE;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-card: 0 18px 50px -24px rgba(11, 5, 24, 0.65);
  --shadow-glow: 0 0 60px -10px rgba(164, 66, 223, 0.55);
  --shadow-pink: 0 14px 36px -14px rgba(255, 83, 200, 0.55);

  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 56px);

  --grad-brand: linear-gradient(110deg, var(--orchid-deep) 0%, var(--orchid) 45%, var(--pink) 100%);
  --grad-gold: linear-gradient(100deg, var(--rose) 0%, var(--gold) 100%);
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--mist);
  background: var(--midnight);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -0.01em; }

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--pink); color: #fff; padding: 10px 18px;
  border-radius: 0 0 12px 12px; font-weight: 600; z-index: 200;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.section--cream { background: var(--champagne); color: var(--ink); }
.section--cream h2, .section--cream h3 { color: var(--ink); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-brand); border-radius: 2px; }
.section--cream .eyebrow { color: var(--orchid-deep); }

.section-head { max-width: 720px; }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.section-head p { margin-top: 18px; color: var(--mist-dim); font-size: 1.06rem; }
.section--cream .section-head p { color: var(--ink-soft); }
.center { text-align: center; margin-inline: auto; }

.shine {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.glow-text {
  background: linear-gradient(100deg, var(--orchid) 0%, var(--pink) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em;
  padding: 15px 28px; border-radius: 999px; border: 0;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center; line-height: 1;
}
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-pink); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -12px rgba(255,83,200,.7); }
.btn--gold { background: var(--grad-gold); color: var(--ink); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -16px rgba(231,183,163,.85); }
.btn--ghost { background: transparent; color: var(--mist); border: 1.5px solid var(--plum-line); }
.btn--ghost:hover { border-color: var(--orchid); color: #fff; transform: translateY(-2px); }
.section--cream .btn--ghost { color: var(--ink); border-color: rgba(28,19,48,.18); }
.section--cream .btn--ghost:hover { border-color: var(--orchid-deep); color: var(--orchid-deep); }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(16, 10, 28, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: #fff; letter-spacing: -0.01em; }
.brand__mark { width: 36px; height: 36px; border-radius: 10px; flex: none; box-shadow: var(--shadow-glow); }
.brand small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rose); line-height: 1; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-weight: 500; font-size: 0.95rem; color: var(--mist); position: relative; padding: 4px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--grad-brand); transition: width .22s ease; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: #fff; }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle span::before { transform: translateY(-7px); }
.nav__toggle span::after { transform: translateY(5px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translateY(0); }

@media (max-width: 920px) {
  .nav__toggle { display: inline-flex; }
  .nav__links, .nav__cta--inline { display: none; }
  .mobile-menu { display: block; }
}

.mobile-menu {
  display: none; position: fixed; inset: 74px 0 0 0; z-index: 99;
  background: rgba(13, 8, 23, 0.97); backdrop-filter: blur(10px);
  padding: 28px var(--gutter) 40px; transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #fff; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu .btn { margin-top: 22px; }

/* ============================================================
   HERO  (signature: glowing 16 + spotlight)
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-block: clamp(72px, 11vw, 150px); isolation: isolate; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 78% -10%, rgba(255,83,200,.30), transparent 55%),
    radial-gradient(90% 80% at 12% 8%, rgba(164,66,223,.34), transparent 58%),
    radial-gradient(120% 120% at 50% 120%, rgba(231,183,163,.16), transparent 60%),
    var(--midnight);
}
.hero__sixteen {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(18rem, 42vw, 42rem); line-height: 1; z-index: -1;
  background: linear-gradient(160deg, rgba(255,83,200,.20), rgba(164,66,223,.05));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  pointer-events: none; user-select: none; filter: blur(1px);
}
.hero__inner { max-width: 760px; position: relative; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px;
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px;
  background: rgba(255,255,255,.04); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--mist); margin-bottom: 26px;
}
.hero__tag b { color: var(--gold); font-weight: 700; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 12px var(--pink); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .45; transform: scale(.7);} }

.hero h1 { font-size: clamp(2.7rem, 6.8vw, 5.1rem); color: #fff; }
.hero h1 em { font-style: italic; font-weight: 700; }
.hero__lede { margin-top: 24px; font-size: clamp(1.06rem, 2vw, 1.28rem); color: var(--mist); max-width: 560px; }
.hero__cta { margin-top: 38px; }
.hero__meta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px 34px; }
.hero__meta div { display: flex; align-items: baseline; gap: 10px; }
.hero__meta dt { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist-dim); }
.hero__meta dd { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--gold); }

/* twinkles */
.spark { position: absolute; z-index: -1; color: var(--gold); opacity: .85; animation: twinkle 3.6s ease-in-out infinite; }
.spark svg { display: block; }
@keyframes twinkle { 0%,100% { opacity: .25; transform: scale(.8) rotate(0); } 50% { opacity: .95; transform: scale(1.1) rotate(12deg); } }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.strip {
  background: var(--grad-brand); color: #fff; overflow: hidden; border-block: 1px solid rgba(255,255,255,.12);
}
.strip__track { display: flex; gap: 0; white-space: nowrap; animation: slide 28s linear infinite; }
.strip__track span { font-family: var(--font-display); font-weight: 700; font-style: italic; font-size: 1.4rem; padding: 16px 28px; display: inline-flex; align-items: center; gap: 28px; }
.strip__track span::after { content: "\2726"; font-style: normal; color: var(--gold); font-size: 0.9rem; }
@keyframes slide { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.intro__media { position: relative; }
.intro__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.intro__badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--grad-gold); color: var(--ink);
  padding: 18px 22px; border-radius: var(--radius); box-shadow: var(--shadow-card); max-width: 220px;
}
.intro__badge b { font-family: var(--font-display); font-size: 1.5rem; display: block; line-height: 1; }
.intro__badge span { font-size: 0.8rem; font-weight: 600; }
.intro h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); color: #fff; }
.intro p { margin-top: 18px; color: var(--mist-dim); }
.intro .btn-row { margin-top: 28px; }
@media (max-width: 820px) {
  .intro { grid-template-columns: 1fr; }
  .intro__media { order: -1; max-width: 440px; }
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 940px) { .grid--4 { grid-template-columns: repeat(2, 1fr);} .grid--3 { grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 600px) { .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: linear-gradient(180deg, var(--midnight-2), var(--plum));
  border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); border-color: rgba(164,66,223,.5); box-shadow: var(--shadow-card); }
.card__ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(164,66,223,.16); color: var(--gold); margin-bottom: 18px;
}
.card__ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.22rem; color: #fff; font-weight: 700; }
.card p { margin-top: 10px; color: var(--mist-dim); font-size: 0.96rem; }
.section--cream .card { background: #fff; border-color: rgba(28,19,48,.07); box-shadow: 0 14px 40px -28px rgba(28,19,48,.45); }
.section--cream .card p { color: var(--ink-soft); }
.section--cream .card__ico { background: rgba(164,66,223,.12); color: var(--orchid-deep); }

/* ============================================================
   EVENT INFO / TICKET STUB
   ============================================================ */
.info { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 880px) { .info { grid-template-columns: 1fr; } }

.stub {
  background: linear-gradient(165deg, #fff, var(--cream-2));
  color: var(--ink); border-radius: var(--radius-lg); padding: 0; overflow: hidden;
  box-shadow: var(--shadow-card); position: relative;
}
.stub__top { background: var(--grad-brand); color: #fff; padding: 26px 30px; position: relative; }
.stub__top h3 { font-size: 1.4rem; color: #fff; }
.stub__top p { font-weight: 600; opacity: .92; font-size: 0.92rem; margin-top: 4px; }
.stub__perf { position: relative; height: 0; }
.stub__perf::before, .stub__perf::after { content: ""; position: absolute; top: -13px; width: 26px; height: 26px; border-radius: 50%; background: var(--champagne); }
.stub__perf::before { left: -13px; }
.stub__perf::after { right: -13px; }
.stub__body { padding: 30px; }
.stub__row { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px dashed rgba(28,19,48,.16); }
.stub__row:last-of-type { border-bottom: 0; }
.stub__row svg { width: 20px; height: 20px; color: var(--orchid-deep); flex: none; }
.stub__row b { display: block; font-weight: 700; color: var(--ink); }
.stub__row span { font-size: 0.9rem; color: var(--ink-soft); }
.stub__body .btn { margin-top: 22px; }

.info__copy h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); color: #fff; }
.info__copy p { margin-top: 16px; color: var(--mist-dim); }
.info__list { margin-top: 24px; display: grid; gap: 14px; }
.info__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--mist); }
.info__list svg { width: 22px; height: 22px; color: var(--pink); flex: none; margin-top: 2px; }

/* ============================================================
   TICKET TIERS
   ============================================================ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 880px) { .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.tier {
  background: linear-gradient(180deg, var(--midnight-2), var(--plum));
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  padding: 34px 30px; display: flex; flex-direction: column; position: relative;
}
.tier--feature { border-color: transparent; background: var(--grad-brand); box-shadow: var(--shadow-pink); }
.tier--feature .tier__name, .tier--feature .tier__price, .tier--feature li { color: #fff; }
.tier--feature .tier__price small { color: rgba(255,255,255,.8); }
.tier__flag {
  position: absolute; top: 18px; right: 18px; background: var(--gold); color: var(--ink);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.tier__name { font-family: var(--font-body); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.86rem; color: var(--rose); }
.tier--feature .tier__name { color: var(--gold); }
.tier__price { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: #fff; margin-top: 10px; line-height: 1; }
.tier__price small { font-family: var(--font-body); font-size: 0.92rem; font-weight: 500; color: var(--mist-dim); }
.tier__desc { margin-top: 12px; color: var(--mist-dim); font-size: 0.96rem; min-height: 48px; }
.tier--feature .tier__desc { color: rgba(255,255,255,.86); }
.tier ul { margin: 22px 0 26px; display: grid; gap: 11px; }
.tier li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: var(--mist); }
.tier li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--pink); }
.tier--feature li svg { color: var(--gold); }
.tier .btn { margin-top: auto; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery a { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery a:hover img { transform: scale(1.06); }
.gallery a.tall { grid-row: span 2; }
.gallery a.wide { grid-column: span 2; }
@media (max-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } .gallery a.wide { grid-column: span 2; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid rgba(255,255,255,.1); }
.section--cream .faq__item { border-color: rgba(28,19,48,.12); }
.faq__q {
  width: 100%; background: transparent; border: 0; color: inherit; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px; font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: #fff;
}
.section--cream .faq__q { color: var(--ink); }
.faq__q .ico { width: 30px; height: 30px; flex: none; border-radius: 50%; display: grid; place-items: center; background: rgba(164,66,223,.18); color: var(--pink); transition: transform .3s ease; font-size: 1.2rem; }
.section--cream .faq__q .ico { background: rgba(164,66,223,.12); color: var(--orchid-deep); }
.faq__q[aria-expanded="true"] .ico { transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .32s ease; }
.faq__a > div { padding: 0 4px 24px; color: var(--mist-dim); }
.section--cream .faq__a > div { color: var(--ink-soft); }
.faq__a ul { margin-top: 10px; display: grid; gap: 6px; }
.faq__a li { padding-left: 20px; position: relative; }
.faq__a li::before { content: "\2726"; position: absolute; left: 0; color: var(--pink); font-size: 0.7rem; top: 5px; }

/* ============================================================
   VENDOR BAND / CTA
   ============================================================ */
.band {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: radial-gradient(120% 140% at 80% 0%, rgba(255,83,200,.3), transparent 55%), linear-gradient(120deg, var(--orchid-deep), var(--plum));
  padding: clamp(40px, 6vw, 70px); border: 1px solid rgba(255,255,255,.1);
}
.band h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); color: #fff; max-width: 640px; }
.band p { margin-top: 16px; color: var(--mist); max-width: 560px; }
.band .btn-row { margin-top: 30px; }

/* CTA full */
.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); color: #fff; max-width: 14ch; margin-inline: auto; }
.cta-final p { margin-top: 18px; color: var(--mist-dim); max-width: 540px; margin-inline: auto; }
.cta-final .btn-row { margin-top: 34px; justify-content: center; }

/* ============================================================
   FORM (contact)
   ============================================================ */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
@media (max-width: 880px) { .contact { grid-template-columns: 1fr; } }
.contact__info h2 { font-size: clamp(2rem, 4.4vw, 3rem); color: #fff; }
.contact__info p { margin-top: 16px; color: var(--mist-dim); }
.contact__lines { margin-top: 28px; display: grid; gap: 18px; }
.contact__lines a, .contact__lines div { display: flex; gap: 14px; align-items: center; color: var(--mist); }
.contact__lines svg { width: 22px; height: 22px; color: var(--pink); flex: none; }
.contact__lines b { color: #fff; }

.form { background: linear-gradient(180deg, var(--midnight-2), var(--plum)); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--mist-dim); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.12); color: #fff; font: inherit; font-size: 0.98rem;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: #8678a0; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orchid); outline: none; box-shadow: 0 0 0 3px rgba(164,66,223,.25); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #100A1C; border-top: 1px solid rgba(255,255,255,.07); padding-block: clamp(48px, 6vw, 72px) 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); margin-bottom: 16px; }
.footer__about p { color: var(--mist-dim); font-size: 0.95rem; margin-top: 14px; max-width: 340px; }
.footer ul { display: grid; gap: 11px; }
.footer ul a { color: var(--mist-dim); font-size: 0.96rem; }
.footer ul a:hover { color: #fff; }
.footer__social { display: flex; gap: 12px; margin-top: 6px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); color: var(--mist); transition: background .2s ease, transform .2s ease, color .2s ease; }
.footer__social a:hover { background: var(--grad-brand); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; color: var(--mist-dim); font-size: 0.86rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(60px, 9vw, 110px) clamp(40px, 6vw, 70px); isolation: isolate; }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(90% 90% at 85% 0%, rgba(255,83,200,.26), transparent 55%), radial-gradient(80% 80% at 10% 10%, rgba(164,66,223,.3), transparent 60%), var(--midnight); }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); color: #fff; max-width: 16ch; }
.page-hero h1 em { font-style: italic; font-weight: 700; }
.page-hero p { margin-top: 20px; color: var(--mist); max-width: 560px; font-size: 1.1rem; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 0.8rem; color: var(--mist-dim); margin-bottom: 22px; letter-spacing: 0.02em; }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--rose); }

/* split content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.panel { background: linear-gradient(180deg, var(--midnight-2), var(--plum)); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 40px); }
.panel h3 { font-size: 1.7rem; color: #fff; }
.panel p { margin-top: 14px; color: var(--mist-dim); }
.section--cream .panel { background: #fff; }
.section--cream .panel p { color: var(--ink-soft); }
