/* ─────────────────────────────────────────────────────────
   PROACTIVE Co · proactiveco.au
   ───────────────────────────────────────────────────────── */

/* ── RESET & TOKENS ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Sequel Sans — activates if installed locally,
   falls back to Outfit (loaded via Google Fonts) */
@font-face {
  font-family: 'Sequel Sans Disp';
  src: local('Sequel Sans Disp SemiBold'),
       local('SequelSansDisp-SemiBold'),
       local('Sequel Sans Display SemiBold');
  font-weight: 600;
  font-style: normal;
}

:root {
  --red:        #F50000;
  --red-dark:   #C80000;
  --black:      #0A0A0A;
  --white:      #FFFFFF;
  --off-white:  #F7F6F4;
  --grey-100:   #F0EFED;
  --grey-200:   #E4E2DE;
  --grey-300:   #D1CFCB;
  --grey-500:   #8A8784;
  --grey-700:   #4A4846;
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-pill: 100px;
  --display:    'Sequel Sans Disp', 'Outfit', sans-serif;
  --body:       'Instrument Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.red { color: var(--red); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-red  { background: var(--red); color: var(--white); }
.btn-red:hover  { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,0,0,0.28); }
.btn-ghost { background: rgba(255,255,255,0.12); color: var(--white); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-white { background: var(--white); color: var(--red); font-size: 17px; padding: 18px 48px; font-weight: 700; }
.btn-white:hover { background: var(--black); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
  transition: box-shadow 0.2s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }
.nav-logo-text {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
}
.nav-logo-text span { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--grey-700); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--red); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--black); transition: all 0.2s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  padding: 20px 24px 28px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu ul a { font-size: 17px; font-weight: 500; color: var(--black); text-decoration: none; }
.mobile-menu ul .btn { display: inline-block; margin-top: 8px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,0,0,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,0,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,0,0,0.15);
  border: 1px solid rgba(245,0,0,0.3);
  color: #FF6B6B;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(60px, 7vw, 108px);
  font-weight: 600;
  line-height: 0.96;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.58);
  margin-bottom: 44px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero-event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.hero-card-banner { background: var(--red); padding: 24px 28px; display: flex; align-items: center; gap: 16px; }
.hero-card-banner img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; }
.hero-card-label { font-size: 11px; font-weight: 500; letter-spacing: 0.07em; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
.hero-card-title { font-family: var(--display); font-size: 24px; font-weight: 600; color: var(--white); line-height: 1.15; letter-spacing: -0.01em; }
.hero-card-body { padding: 28px; }

.event-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 24px; }
.event-detail-item { background: var(--off-white); border-radius: var(--radius-sm); padding: 14px 16px; }
.event-detail-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 4px; }
.event-detail-value { font-size: 14px; font-weight: 600; color: var(--black); line-height: 1.3; }
.event-detail-value.red { color: var(--red); }

.hero-card-body p { font-size: 14px; color: var(--grey-700); line-height: 1.6; margin-bottom: 20px; }
.seats-warning {
  display: flex; align-items: center; gap: 10px;
  background: #FFF3F3; border-radius: var(--radius-sm);
  padding: 12px 16px; margin-bottom: 20px;
  font-size: 13px; font-weight: 600; color: var(--red);
}
.seats-warning::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero-card-body .btn { width: 100%; text-align: center; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section    { padding: 120px 0; }
.section-sm { padding: 80px 0; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--red); margin-bottom: 20px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--red); border-radius: 2px; }

h2.display {
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* ── PURPOSE ─────────────────────────────────────────────── */
.purpose { background: var(--white); }
.purpose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.purpose-left { position: sticky; top: 120px; }
.purpose-statement {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 32px;
}
.purpose-right p { font-size: 18px; line-height: 1.75; color: var(--grey-700); margin-bottom: 24px; }

.pull-quote {
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 28px 32px; margin: 36px 0; position: relative;
}
.pull-quote::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 4px; background: var(--red); border-radius: 0 4px 4px 0;
}
.pull-quote p {
  font-family: var(--display);
  font-size: 22px; font-style: italic; font-weight: 600;
  line-height: 1.45; color: var(--black); letter-spacing: -0.01em; margin-bottom: 12px;
}
.pull-quote cite { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; color: var(--grey-500); font-style: normal; }

/* ── VALUES ──────────────────────────────────────────────── */
.values-strip { background: var(--black); padding: 64px 0; }
.values-inner { display: flex; }
.value-item { flex: 1; padding: 32px 36px; border-right: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 10px; }
.value-item:last-child { border-right: none; }
.value-num { font-size: 11px; font-weight: 600; color: var(--red); letter-spacing: 0.1em; }
.value-name { font-family: var(--display); font-size: 26px; font-weight: 600; color: var(--white); line-height: 1.1; letter-spacing: -0.01em; }
.value-desc { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.5; }

/* ── WORKSHOP ────────────────────────────────────────────── */
.workshop { background: var(--off-white); }
.workshop-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.workshop-header .btn { margin-top: 32px; }
.workshop-meta { display: flex; flex-direction: column; gap: 10px; }
.workshop-detail-row { display: flex; gap: 10px; }
.workshop-detail-cell { flex: 1; background: var(--white); border-radius: var(--radius-sm); padding: 16px 20px; }
.workshop-detail-cell .label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 5px; }
.workshop-detail-cell .value { font-size: 15px; font-weight: 600; color: var(--black); line-height: 1.35; }
.workshop-detail-cell .value.red { color: var(--red); }

.build-learn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.build-learn-col { background: var(--white); border-radius: var(--radius-md); padding: 44px 40px; }
.build-learn-col h3 {
  font-family: var(--display); font-size: 30px; font-weight: 600;
  letter-spacing: -0.015em; margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 2px solid var(--grey-200); line-height: 1.1;
}
.build-learn-col h3 .accent { color: var(--red); }
.outcome-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.outcome-item { display: flex; gap: 14px; align-items: flex-start; }
.outcome-num { font-size: 11px; font-weight: 600; color: var(--red); min-width: 22px; padding-top: 4px; letter-spacing: 0.06em; }
.outcome-text strong { display: block; font-weight: 600; font-size: 15px; margin-bottom: 3px; }
.outcome-text span { font-size: 14px; color: var(--grey-700); line-height: 1.5; }

.format-timeline { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.format-item { background: var(--black); border-radius: var(--radius-md); padding: 40px; display: flex; gap: 24px; }
.format-time { font-family: var(--display); font-size: 52px; font-weight: 600; color: var(--red); line-height: 1; min-width: 72px; text-align: right; flex-shrink: 0; letter-spacing: -0.02em; }
.format-content h4 { font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--white); letter-spacing: -0.01em; margin-bottom: 10px; line-height: 1.15; }
.format-content p { font-size: 14px; color: rgba(255,255,255,0.48); line-height: 1.6; }

/* ── AUDIENCE ────────────────────────────────────────────── */
.audience { background: var(--white); }
.audience-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 52px; }
.audience-item {
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 28px; display: flex; gap: 18px; align-items: flex-start;
  transition: background 0.15s, transform 0.15s;
}
.audience-item:hover { background: var(--grey-100); transform: translateY(-2px); }
.audience-tick { width: 26px; height: 26px; background: var(--red); border-radius: 50%; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; }
.audience-tick svg { width: 12px; height: 12px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.audience-item p { font-size: 16px; line-height: 1.55; color: var(--black); }
.audience-note { margin-top: 16px; padding: 32px 36px; background: var(--black); border-radius: var(--radius-md); }
.audience-note p { font-family: var(--display); font-size: 28px; font-weight: 600; color: var(--white); letter-spacing: -0.01em; }

/* ── FACILITATORS ────────────────────────────────────────── */
.facilitators-section { background: var(--off-white); }
.facilitators-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 52px; }
.facilitator-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.facilitator-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.facilitator-photo-wrap { position: relative; overflow: hidden; height: 400px; background: var(--grey-100); }
.facilitator-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; display: block; transition: transform 0.4s ease; }
.facilitator-card:hover .facilitator-photo-wrap img { transform: scale(1.04); }
.facilitator-tag { position: absolute; bottom: 16px; left: 16px; background: var(--red); padding: 8px 16px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--white); }
.facilitator-info { padding: 32px; }
.facilitator-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.facilitator-brand-logo { height: 28px; width: auto; object-fit: contain; display: block; }
.facilitator-brand-logo.proactive { height: 32px; border-radius: 6px; }
.facilitator-info h3 { font-family: var(--display); font-size: 36px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; line-height: 1.05; }
.facilitator-info .role { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; color: var(--grey-500); margin-bottom: 20px; }
.facilitator-info p { font-size: 15px; color: var(--grey-700); line-height: 1.65; }

/* ── BRING ───────────────────────────────────────────────── */
.bring-section { background: var(--black); padding: 100px 0; }
.bring-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 52px; }
.bring-item { background: rgba(255,255,255,0.05); border-radius: var(--radius-md); padding: 36px 32px; display: flex; flex-direction: column; gap: 14px; transition: background 0.15s; }
.bring-item:hover { background: rgba(255,255,255,0.08); }
.bring-icon { font-size: 28px; line-height: 1; }
.bring-item strong { font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--white); line-height: 1.1; letter-spacing: -0.01em; }
.bring-item p { font-size: 15px; color: rgba(255,255,255,0.42); line-height: 1.6; }

/* ── CTA ─────────────────────────────────────────────────── */
.cta-section { background: var(--red); padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: 'PROACTIVE';
  position: absolute; font-family: var(--display); font-size: 280px; font-weight: 600;
  color: rgba(0,0,0,0.07); left: 50%; top: 50%; transform: translate(-50%,-50%);
  white-space: nowrap; pointer-events: none; letter-spacing: -0.02em;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; padding: 0 48px; }
.cta-section h2.display { color: var(--white); font-size: clamp(48px,6vw,80px); margin-bottom: 20px; }
.cta-section .sub { font-size: 20px; color: rgba(255,255,255,0.75); margin-bottom: 48px; line-height: 1.6; }
.cta-price { display: inline-flex; flex-direction: column; align-items: center; margin-bottom: 40px; }
.cta-price-amount { font-family: var(--display); font-size: 96px; font-weight: 600; color: var(--white); line-height: 1; letter-spacing: -0.03em; }
.cta-price-note { font-size: 14px; color: rgba(255,255,255,0.55); letter-spacing: 0.02em; margin-top: 6px; }
.cta-location { margin-top: 24px; font-size: 14px; color: rgba(255,255,255,0.4); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--black); padding: 60px 0 40px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; flex-wrap: wrap; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }
.footer-brand-name { font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--white); }
.footer-brand-tagline { font-size: 13px; color: rgba(255,255,255,0.28); margin-top: 4px; }
.footer-links { display: flex; gap: 60px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 15px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.2); }
.footer-values { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-values span { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: rgba(255,255,255,0.16); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px; }
  .hero h1 { font-size: 68px; }
  .purpose-grid { grid-template-columns: 1fr; gap: 48px; }
  .purpose-left { position: static; }
  .build-learn-grid { grid-template-columns: 1fr; }
  .format-timeline { grid-template-columns: 1fr; }
  .workshop-header { grid-template-columns: 1fr; gap: 40px; }
  .facilitators-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .bring-list { grid-template-columns: 1fr; }
  .values-inner { flex-direction: column; }
  .value-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .cta-section::before { font-size: 80px; }
  .cta-price-amount { font-size: 72px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 52px; }
  .event-detail-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 32px; }
  .workshop-detail-row { flex-direction: column; }
}
