/* ==========================================================================
   BLOOM IRIS AGENCY — PUBLIC THEME
   Editorial · Bold · Aspirational
   Brand: #631A6C (Deep Plum)  ·  #B45F9A (Iris Pink)
   Type:  Fraunces (display)  ·  Manrope (body)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --plum:        #631A6C;
  --plum-deep:   #4a1251;
  --iris:        #B45F9A;
  --iris-soft:   #d49ec4;
  --ink:         #1A1320;
  --ink-soft:    #4a3f52;
  --cream:       #FBF7FA;
  --cream-deep:  #f1e7ee;
  --white:       #ffffff;
  --line:        #e7d9e4;
  --gold:        #d8b26a;

  --grad-brand:  linear-gradient(135deg, #631A6C 0%, #B45F9A 100%);
  --grad-deep:   linear-gradient(160deg, #2a0e2e 0%, #631A6C 100%);

  --shadow-sm:   0 2px 10px rgba(74,18,81,.08);
  --shadow-md:   0 14px 40px rgba(74,18,81,.14);
  --shadow-lg:   0 30px 80px rgba(26,19,32,.28);

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

  --ease:        cubic-bezier(.22,.61,.36,1);
  --container:   1280px;

  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body:    'Manrope', 'Segoe UI', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.9rem); }
.serif-italic { font-style: italic; }
.text-iris { color: var(--iris); }
.text-plum { color: var(--plum); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(64px, 9vw, 132px) 0; }
.section--tight { padding: clamp(48px, 6vw, 88px) 0; }
.section--plum { background: var(--grad-deep); color: var(--white); }
.section--plum h1, .section--plum h2, .section--plum h3 { color: var(--white); }
.section--cream { background: var(--cream-deep); }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .76rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--iris);
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--iris); display: inline-block; }
.section--plum .eyebrow { color: var(--iris-soft); }
.section--plum .eyebrow::before { background: var(--iris-soft); }

/* ---------- Section heading block ---------- */
.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 1.06rem; }
.section--plum .section-head p { color: rgba(255,255,255,.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 100px;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-brand); color: var(--white); box-shadow: 0 10px 28px rgba(99,26,108,.34); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(99,26,108,.44); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.6px solid var(--line); }
.btn-ghost:hover { border-color: var(--plum); color: var(--plum); transform: translateY(-3px); }
.btn-light { background: var(--white); color: var(--plum); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.6px solid rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* ---------- Link arrow ---------- */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--plum); font-size: .95rem;
}
.link-arrow svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }
.section--plum .link-arrow { color: var(--iris-soft); }

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(251,247,250,.94);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(26,19,32,.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand-logo { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--grad-brand); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.5rem;
  box-shadow: 0 6px 18px rgba(99,26,108,.32);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; color: var(--ink); }
.brand-tag { font-size: .62rem; letter-spacing: .19em; text-transform: uppercase; color: var(--iris); font-weight: 700; }
.site-header:not(.scrolled) .home-hero-active .brand-name { color: #fff; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  padding: 10px 16px; border-radius: 100px; font-weight: 600; font-size: .93rem;
  color: var(--ink-soft); transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-menu a:hover, .nav-menu a.is-active { color: var(--plum); background: rgba(180,95,154,.12); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(180,95,154,.12); color: var(--plum); place-items: center; }
.nav-toggle svg { width: 24px; height: 24px; }

/* mobile drawer */
.nav-drawer {
  position: fixed; inset: 0; z-index: 300;
  background: var(--grad-deep); color: #fff;
  display: flex; flex-direction: column; padding: 32px 28px;
  transform: translateX(100%); transition: transform .45s var(--ease);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.nav-drawer-close { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; }
.nav-drawer-close svg { width: 24px; height: 24px; }
.nav-drawer-menu { display: flex; flex-direction: column; gap: 4px; }
.nav-drawer-menu a {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 500;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav-drawer-menu a:hover { color: var(--iris-soft); }
.nav-drawer-foot { margin-top: auto; padding-top: 28px; }

/* ==========================================================================
   HERO CAROUSEL  (image + uploaded video + youtube)
   ========================================================================== */
.hero {
  position: relative; height: 100svh; min-height: 620px;
  background: var(--ink);
}
/* All slides are stacked in the same spot; only the active one is visible.
   The custom slider in bloom.js toggles the .is-active class. */
.hero-slide {
  position: absolute; inset: 0; height: 100%; overflow: hidden;
  opacity: 0; visibility: hidden;
  transition: opacity .9s var(--ease);
  z-index: 1;
}
.hero-slide.is-active {
  opacity: 1; visibility: visible;
  z-index: 2;
}

.hero-media { position: absolute; inset: 0; z-index: 1; }
.hero-media img,
.hero-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;            /* 16:9 */
  min-height: 100vh; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none; border: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(26,19,32,.34) 0%, rgba(26,19,32,.2) 42%, rgba(26,19,32,.82) 100%);
}
.hero-overlay.with-side {
  background: linear-gradient(105deg, rgba(42,14,46,.86) 0%, rgba(42,14,46,.45) 48%, rgba(26,19,32,.32) 100%);
}

.hero-content {
  position: relative; z-index: 3; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: clamp(80px, 12vh, 150px);
}
.hero-inner { max-width: 760px; }

/* When a slide becomes active, gently bring its text in. */
.hero-slide .hero-eyebrow,
.hero-slide h1,
.hero-slide .hero-sub,
.hero-slide .hero-ctas {
  opacity: 0; transform: translateY(24px);
}
.hero-slide.is-active .hero-eyebrow,
.hero-slide.is-active h1,
.hero-slide.is-active .hero-sub,
.hero-slide.is-active .hero-ctas {
  opacity: 1; transform: translateY(0);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.hero-slide.is-active h1        { transition-delay: .15s; }
.hero-slide.is-active .hero-sub { transition-delay: .25s; }
.hero-slide.is-active .hero-ctas{ transition-delay: .35s; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--iris-soft); font-weight: 700; font-size: .8rem;
  letter-spacing: .24em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 2px; background: var(--iris-soft); }
.hero h1 { color: #fff; margin-bottom: 22px; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero-sub { color: rgba(255,255,255,.86); font-size: 1.15rem; max-width: 560px; margin-bottom: 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* hero controls */
.hero-progress {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
  height: 4px; background: rgba(255,255,255,.16);
}
.hero-progress span { display: block; height: 100%; background: var(--grad-brand); width: 0; }
.hero-nav {
  position: absolute; right: 28px; bottom: clamp(80px,12vh,150px); z-index: 6;
  display: flex; gap: 10px;
}
.hero-nav button {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.24); color: #fff;
  display: grid; place-items: center; transition: background .3s var(--ease);
}
.hero-nav button:hover { background: rgba(255,255,255,.28); }
.hero-nav svg { width: 22px; height: 22px; }
.hero-pagination {
  position: absolute; left: 28px; bottom: clamp(36px,5vh,56px); z-index: 6;
  display: flex; gap: 8px;
}
.hero-pagination .dot {
  width: 32px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,.28); cursor: pointer; transition: background .3s var(--ease);
}
.hero-pagination .dot.active { background: var(--iris-soft); }
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; z-index: 6; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; display: flex; flex-direction: column;
  align-items: center; gap: 8px; animation: bob 2.4s var(--ease) infinite;
}
.hero-scroll::after { content: ''; width: 1px; height: 30px; background: rgba(255,255,255,.5); }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,7px); } }

/* ==========================================================================
   CLIENT / PARTNER MOVING SLIDER
   ========================================================================== */
.clients-strip { padding: 46px 0; background: var(--white); border-bottom: 1px solid var(--line); overflow: hidden; }
.clients-label {
  text-align: center; font-size: .76rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 30px; opacity: .7;
}
.marquee { position: relative; display: flex; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 70px;
  flex-shrink: 0; padding-right: 70px;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
.client-logo {
  display: flex; align-items: center; justify-content: center;
  height: 56px; min-width: 150px;
  filter: grayscale(1); opacity: .55;
  transition: filter .35s var(--ease), opacity .35s var(--ease);
}
.client-logo:hover { filter: grayscale(0); opacity: 1; }
.client-logo img { max-height: 100%; width: auto; }
.client-logo .logo-fallback {
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
  color: var(--plum); white-space: nowrap;
}

/* ==========================================================================
   TRUST / STATS STRIP
   ========================================================================== */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.stat {
  text-align: center; padding: 36px 20px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
}
.stat-num {
  font-family: var(--font-display); font-size: clamp(2.6rem,4.5vw,3.6rem);
  font-weight: 600; color: #fff; line-height: 1;
}
.stat-num .plus { color: var(--iris-soft); }
.stat-label { margin-top: 12px; font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 600; }

/* ==========================================================================
   CARDS — generic
   ========================================================================== */
.card-grid { display: grid; gap: 28px; }
.cols-2 { grid-template-columns: repeat(2,1fr); }
.cols-3 { grid-template-columns: repeat(3,1fr); }
.cols-4 { grid-template-columns: repeat(4,1fr); }

/* portfolio / project card */
.work-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.work-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.work-media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--cream-deep); }
.work-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.work-card:hover .work-media img { transform: scale(1.07); }
.work-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: 7px 14px; border-radius: 100px; font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(251,247,250,.92); color: var(--plum);
}
.work-play {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 2;
}
.work-play span {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--plum);
  display: grid; place-items: center;
  transition: transform .4s var(--ease);
}
.work-card:hover .work-play span { transform: scale(1.12); }
.work-body { padding: 22px 24px 26px; }
.work-body .meta { font-size: .8rem; color: var(--iris); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.work-body h3 { margin: 8px 0 4px; font-size: 1.3rem; }
.work-body .brand { font-size: .9rem; color: var(--ink-soft); }

/* ==========================================================================
   FEATURE / SERVICE CARDS
   ========================================================================== */
.service-card {
  padding: 36px 30px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-ico {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(180,95,154,.13); color: var(--plum);
  display: grid; place-items: center; margin-bottom: 22px;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.service-card:hover .service-ico { background: var(--grad-brand); color: #fff; }
.service-ico svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.32rem; }
.service-card p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 18px; }

/* ==========================================================================
   TALENT CARD
   ========================================================================== */
.talent-card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink); }
.talent-media { aspect-ratio: 3/4; overflow: hidden; }
.talent-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.talent-card:hover .talent-media img { transform: scale(1.08); }
.talent-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 45%, rgba(26,19,32,.9) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.talent-cat {
  align-self: flex-start; padding: 6px 13px; border-radius: 100px;
  background: rgba(180,95,154,.9); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: auto;
}
.talent-overlay h3 { color: #fff; font-size: 1.4rem; margin-bottom: 3px; }
.talent-overlay p { color: rgba(255,255,255,.78); font-size: .88rem; }

/* ==========================================================================
   EVENT CARD
   ========================================================================== */
.event-card {
  display: flex; gap: 24px; padding: 22px;
  border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.event-date {
  flex-shrink: 0; width: 86px; height: 86px; border-radius: 14px;
  background: var(--grad-brand); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.event-date .d { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; line-height: 1; }
.event-date .m { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
.event-info h3 { font-size: 1.25rem; margin-bottom: 6px; }
.event-info .where { font-size: .88rem; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }
.event-info .where svg { width: 15px; height: 15px; color: var(--iris); }
.event-pill {
  display: inline-block; margin-top: 10px; padding: 5px 12px; border-radius: 100px;
  font-size: .72rem; font-weight: 700; background: rgba(180,95,154,.13); color: var(--plum);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.quote-card {
  padding: 38px 34px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line);
  height: 100%; display: flex; flex-direction: column;
}
.quote-card .q-mark { color: var(--iris); margin-bottom: 16px; }
.quote-card .q-mark svg { width: 38px; height: 38px; }
.quote-card blockquote {
  font-family: var(--font-display); font-size: 1.2rem; line-height: 1.5;
  color: var(--ink); font-style: italic; margin-bottom: 24px; flex-grow: 1;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-author .avatar {
  width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
  background: var(--grad-brand); display: grid; place-items: center;
  color: #fff; font-family: var(--font-display); font-size: 1.2rem;
}
.quote-author .name { font-weight: 700; font-size: .98rem; }
.quote-author .role { font-size: .82rem; color: var(--ink-soft); }

/* ==========================================================================
   INSTAGRAM STRIP
   ========================================================================== */
.ig-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.ig-item {
  position: relative; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--cream-deep);
}
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ig-item:hover img { transform: scale(1.1); }
.ig-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(99,26,108,.0); transition: background .35s var(--ease);
}
.ig-item:hover::after { background: rgba(99,26,108,.32); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--grad-deep); color: #fff;
  padding: clamp(48px,7vw,90px) clamp(32px,6vw,80px);
  text-align: center;
}
.cta-band::before, .cta-band::after {
  content: ''; position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(180,95,154,.5), transparent 70%);
}
.cta-band::before { width: 340px; height: 340px; top: -120px; right: -80px; }
.cta-band::after  { width: 280px; height: 280px; bottom: -130px; left: -70px; }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 540px; margin: 0 auto 30px; }
.cta-band .hero-ctas { justify-content: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding-top: 80px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 56px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin: 18px 0 22px; font-size: .95rem; max-width: 320px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  color: #fff; transition: background .3s var(--ease), transform .3s var(--ease);
}
.footer-socials a:hover { background: var(--grad-brand); transform: translateY(-3px); }
.footer-socials svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: .94rem; transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--iris-soft); }
.footer-news p { font-size: .94rem; margin-bottom: 16px; }
.news-form { display: flex; gap: 8px; }
.news-form input {
  flex: 1; padding: 13px 16px; border-radius: 11px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: #fff; outline: none;
}
.news-form input::placeholder { color: rgba(255,255,255,.45); }
.news-form button {
  width: 48px; border-radius: 11px; background: var(--grad-brand);
  color: #fff; display: grid; place-items: center;
}
.news-form button svg { width: 20px; height: 20px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem;
}
.footer-bottom a:hover { color: var(--iris-soft); }

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .35s var(--ease);
}
.wa-float:hover { transform: scale(1.1) rotate(-6deg); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: waPulse 2.4s var(--ease) infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.page-hero {
  background: var(--grad-deep); color: #fff;
  padding: clamp(130px,16vh,200px) 0 clamp(56px,8vw,96px);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(180,95,154,.4), transparent 70%);
  top: -160px; right: -120px; border-radius: 50%;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero .eyebrow { color: var(--iris-soft); margin-bottom: 16px; }
.page-hero .eyebrow::before { background: var(--iris-soft); }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 22px; }
.breadcrumb a:hover { color: #fff; }

/* ==========================================================================
   FILTER BAR
   ========================================================================== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter-chip {
  padding: 10px 20px; border-radius: 100px; font-weight: 600; font-size: .9rem;
  background: var(--white); border: 1.5px solid var(--line); color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.filter-chip:hover { border-color: var(--iris); color: var(--plum); }
.filter-chip.active { background: var(--grad-brand); color: #fff; border-color: transparent; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-card {
  background: var(--white); border-radius: var(--radius);
  padding: clamp(28px,4vw,48px); box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 8px; color: var(--ink); }
.field label .req { color: var(--iris); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--cream);
  color: var(--ink); outline: none; transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--iris); background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-hint { font-size: .8rem; color: var(--ink-soft); margin-top: 6px; }

/* ==========================================================================
   ALERTS
   ========================================================================== */
.alert { padding: 14px 18px; border-radius: 12px; font-size: .92rem; margin-bottom: 20px; font-weight: 600; }
.alert-success { background: #e7f6ec; color: #1b6b3a; }
.alert-error   { background: #fdeaea; color: #b32626; }
.alert-info    { background: #eaf0fd; color: #2647b3; }
.error-list { padding-left: 18px; }
.error-list li { list-style: disc; }

/* ==========================================================================
   EMPTY STATE
   ========================================================================== */
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.empty-state svg { color: var(--iris-soft); margin-bottom: 14px; }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 400; display: none;
  background: rgba(20,12,24,.94); place-items: center; padding: 40px;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 10px; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center;
}
.lightbox-close svg { width: 26px; height: 26px; }

/* ==========================================================================
   AOS-LITE (scroll reveal)
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.divider { height: 1px; background: var(--line); margin: 0; }
.tag-pill {
  display: inline-block; padding: 6px 14px; border-radius: 100px;
  background: rgba(180,95,154,.13); color: var(--plum);
  font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(3,1fr); }
  .cols-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .nav-menu, .nav-actions .btn { display: none; }
  .nav-toggle { display: grid; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .cols-3, .cols-2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-nav { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .cols-4 { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2,1fr); }
  .event-card { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}