/* ============================================================
   THE ALCHEMIST'S LAB — style.css
   Shared across all pages. Edit colors here, they update everywhere.
   ============================================================ */

:root {
  --black:        #080808;
  --ink:          #111014;
  --purple-deep:  #1e0a4a;
  --purple:       #4a1fa8;
  --purple-mid:   #6b35d4;
  --purple-light: #c4a8ff;
  --teal:         #00c2d4;
  --teal-dark:    #008fa0;
  --orange:       #e84a1a;
  --orange-light: #ff7a50;
  --gold:         #c8881a;
  --gold-light:   #f0c060;
  --white:        #ffffff;
  --muted:        #7a7080;
  --muted-light:  #b0a8c0;
  --border:       rgba(255,255,255,0.08);
  --border-purple:rgba(107,53,212,0.4);
  --border-teal:  rgba(0,194,212,0.3);
  --border-orange:rgba(232,74,26,0.4);
  --border-gold:  rgba(200,136,26,0.35);
}

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

body {
  background: var(--ink);
  font-family: 'Nunito', sans-serif;
  color: #e8e0f0;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Grain texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.35;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; font-weight: 900; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 800; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 800; color: var(--white); }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,8,8,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 46px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--muted-light); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.02em; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

/* Dropdown */
.nav-links > li { height: 72px; display: flex; align-items: center; }
.has-drop { position: relative; }
.has-drop > a::after { content: ' ↓'; font-size: 0.65em; opacity: 0.55; }
.drop-menu {
  display: block;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  background: rgba(8,8,8,0.98); backdrop-filter: blur(20px);
  border: 1px solid var(--border-purple); border-radius: 14px;
  padding: 8px; min-width: 210px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}
.drop-menu::before {
  content: '';
  position: absolute; left: 0; right: 0; top: -14px; height: 14px;
}
.has-drop:hover .drop-menu,
.has-drop:focus-within .drop-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.drop-menu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 0.8rem; font-weight: 700; color: var(--muted-light);
  transition: all 0.15s; white-space: nowrap;
}
.drop-menu a:hover { background: rgba(107,53,212,0.2); color: var(--white); }

.nav-cta {
  background: var(--orange) !important; color: var(--white) !important;
  padding: 9px 22px; border-radius: 40px;
  font-size: 0.8rem !important; font-weight: 800 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px) !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(8,8,8,0.98); backdrop-filter: blur(16px);
  z-index: 999; padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 18px; }
.mobile-menu-inner a { color: #e8e0f0; font-weight: 700; font-size: 1rem; }
.mobile-group-label {
  font-size: 0.58rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: -6px;
}
.mobile-sub { padding-left: 14px; color: var(--muted-light) !important; font-size: 0.9rem !important; }
.mobile-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 12px 24px; border-radius: 40px; text-align: center; margin-top: 4px;
}

/* ── LAYOUT ── */
.section    { padding: 100px 40px; position: relative; }
.section-sm { padding: 64px 40px; position: relative; }
.container  { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 780px; margin: 0 auto; }

/* ── EYEBROW ── */
.eyebrow {
  display: block; font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.eyebrow.purple { color: var(--purple-light); }
.eyebrow.orange { color: var(--orange-light); }
.eyebrow.gold   { color: var(--gold-light); }

/* ── DIVIDERS ── */
.divider-teal   { width: 56px; height: 3px; background: var(--teal);       border-radius: 2px; margin: 16px 0 32px; }
.divider-purple { width: 56px; height: 3px; background: var(--purple-mid); border-radius: 2px; margin: 16px 0 32px; }
.divider-orange { width: 56px; height: 3px; background: var(--orange);     border-radius: 2px; margin: 16px 0 32px; }
.divider-gold   { width: 56px; height: 3px; background: var(--gold);       border-radius: 2px; margin: 16px 0 32px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 13px 30px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.88rem;
  cursor: pointer; border: none; outline: none;
  transition: all 0.2s ease; text-decoration: none;
}
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,74,26,0.45); }
.btn-teal   { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-teal:hover { background: var(--teal); color: var(--black); transform: translateY(-2px); }
.btn-purple { background: var(--purple); color: var(--white); }
.btn-purple:hover { background: var(--purple-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,31,168,0.5); }
.btn-gold   { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost  { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-black  { background: var(--black); color: var(--white); }
.btn-black:hover { background: #1a1828; transform: translateY(-2px); }

/* ── CARDS ── */
.card {
  border-radius: 16px; padding: 28px 24px;
  border: 1.5px solid var(--border);
  background: rgba(255,255,255,0.025);
  transition: transform 0.22s, border-color 0.22s;
}
.card:hover { transform: translateY(-4px); }
.card-purple { border-color: var(--border-purple); background: rgba(74,31,168,0.09); }
.card-purple:hover { border-color: var(--purple-mid); }
.card-orange { border-color: var(--border-orange); background: rgba(232,74,26,0.07); }
.card-orange:hover { border-color: var(--orange); }
.card-teal   { border-color: var(--border-teal);   background: rgba(0,194,212,0.07); }
.card-teal:hover { border-color: var(--teal); }
.card-gold   { border-color: var(--border-gold);   background: rgba(200,136,26,0.07); }
.card-gold:hover { border-color: var(--gold-light); }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

/* ── TEXT COLORS ── */
.text-teal   { color: var(--teal); }
.text-orange { color: var(--orange-light); }
.text-purple { color: var(--purple-light); }
.text-gold   { color: var(--gold-light); }

/* ── PAGE HEROES (inner pages) ── */
.page-hero {
  padding: 148px 40px 90px;
  position: relative; overflow: hidden;
  min-height: 58vh; display: flex; align-items: center;
}
.page-hero-inner { max-width: 660px; position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero p  { font-family: 'Lora', serif; font-size: 1.05rem; color: var(--muted-light); line-height: 1.75; margin-bottom: 28px; }

.hero-purple { background: linear-gradient(135deg, #160840 0%, var(--ink) 65%); }
.hero-purple::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 55% 65% at 85% 40%, rgba(107,53,212,0.3) 0%, transparent 70%); }

.hero-orange { background: linear-gradient(135deg, #1c0504 0%, var(--ink) 65%); }
.hero-orange::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 55% 65% at 85% 40%, rgba(232,74,26,0.22) 0%, transparent 70%); }

.hero-teal { background: linear-gradient(135deg, #022020 0%, var(--ink) 65%); }
.hero-teal::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 55% 65% at 85% 40%, rgba(0,194,212,0.22) 0%, transparent 70%); }

.hero-dark { background: var(--black); }
.hero-dark::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 50% 60% at 50% 50%, rgba(0,194,212,0.08) 0%, transparent 70%); }

/* ── LEVEL BLOCKS (Complex Clarity) ── */
.level-block { border-radius: 20px; border: 1.5px solid; overflow: hidden; margin-bottom: 20px; }
.level-block.purple-block { border-color: var(--border-purple); }
.level-block.orange-block { border-color: var(--border-orange); }
.level-header {
  padding: 20px 30px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.purple-block .level-header { background: rgba(74,31,168,0.22); }
.orange-block .level-header { background: rgba(232,74,26,0.15); }
.level-label { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.purple-block .level-label { color: var(--purple-light); }
.orange-block .level-label { color: var(--orange-light); }
.level-title { font-weight: 900; font-size: 1.2rem; color: var(--white); }
.level-price { font-weight: 900; font-size: 1.2rem; padding: 7px 18px; border-radius: 30px; }
.purple-block .level-price { color: var(--purple-light); background: rgba(74,31,168,0.28); }
.orange-block .level-price { color: var(--orange-light); background: rgba(232,74,26,0.18); }
.level-steps { padding: 28px 30px; }
.level-step  { display: flex; gap: 18px; align-items: flex-start; }
.step-spine  { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-circle { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 900; border: 1.5px solid; flex-shrink: 0; }
.purple-block .step-circle { background: rgba(74,31,168,0.28); border-color: var(--purple-mid); color: var(--purple-light); }
.orange-block .step-circle { background: rgba(232,74,26,0.18); border-color: var(--orange); color: var(--orange-light); }
.step-connector { width: 1.5px; min-height: 26px; flex: 1; margin: 4px 0; }
.purple-block .step-connector { background: rgba(107,53,212,0.28); }
.orange-block .step-connector { background: rgba(232,74,26,0.22); }
.step-body  { flex: 1; padding-bottom: 22px; }
.level-step:last-child .step-body { padding-bottom: 0; }
.step-title { font-weight: 800; color: var(--white); font-size: 0.9rem; margin-bottom: 5px; margin-top: 4px; }
.step-desc  { font-size: 0.82rem; color: #b0a8c4; line-height: 1.65; margin-bottom: 8px; }
.step-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
.chip { font-size: 0.63rem; padding: 3px 9px; border-radius: 20px; border: 1px solid; font-weight: 700; }
.chip-doc   { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.14); color: var(--muted-light); }
.chip-note  { background: rgba(0,194,212,0.09); border-color: var(--border-teal); color: var(--teal); }
.chip-price { background: rgba(232,74,26,0.09); border-color: var(--border-orange); color: var(--orange-light); }
.escalation-banner {
  background: rgba(200,136,26,0.07); border: 1.5px solid rgba(200,136,26,0.32);
  border-radius: 15px; padding: 24px 28px; margin: 18px 0;
}
.escalation-banner h4 { color: var(--gold-light); margin-bottom: 9px; }
.escalation-banner p  { font-size: 0.86rem; color: #c0b898; line-height: 1.7; margin: 0; }

/* ── BUNDLE CARDS ── */
.bundles-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 44px; }
.bundle-card {
  border-radius: 16px; padding: 26px 20px;
  border: 1.5px solid var(--border-purple); background: rgba(30,10,74,0.5);
  text-align: center; position: relative;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.bundle-card:hover { transform: translateY(-4px); border-color: var(--purple-mid); box-shadow: 0 12px 40px rgba(74,31,168,0.3); }
.bundle-card.featured { border-color: var(--teal); background: rgba(0,143,160,0.1); }
.bundle-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--black);
  font-size: 0.58rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 13px; border-radius: 20px;
}
.bun-type  { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 6px; }
.bun-name  { font-weight: 900; font-size: 0.95rem; color: var(--white); margin-bottom: 12px; }
.bun-price { font-weight: 900; font-size: 1.85rem; color: var(--purple-light); line-height: 1; margin-bottom: 4px; }
.bundle-card.featured .bun-price { color: var(--teal); }
.bun-per   { font-size: 0.68rem; color: var(--muted-light); margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.bun-feats { list-style: none; font-size: 0.76rem; color: #b8b0d0; text-align: left; line-height: 2; }
.bun-feats li::before { content: '→ '; color: var(--teal); font-weight: 800; }

/* ── WORKSHOP CARDS ── */
.workshop-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 44px; }
.workshop-card  { border-radius: 20px; border: 1.5px solid var(--border-teal); background: rgba(0,80,90,0.14); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.workshop-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,194,212,0.2); }
.wk-header { background: rgba(0,194,212,0.1); padding: 22px 26px; border-bottom: 1px solid var(--border-teal); }
.wk-tag    { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.wk-header h3 { font-size: 1.35rem; color: var(--white); }
.wk-body   { padding: 26px; }
.wk-body p { font-family: 'Lora', serif; font-size: 0.87rem; color: #a8c8cc; line-height: 1.75; margin-bottom: 18px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.81rem; }
.price-row:last-child { border-bottom: none; }
.pr-l { color: var(--muted-light); }
.pr-v { font-weight: 800; color: var(--teal); }

/* ── PAIN SECTION ── */
.pain-section { background: #130830; position: relative; overflow: hidden; }
.pain-section::before { content:''; position:absolute; bottom:0; left:0; right:0; height:60%; background:radial-gradient(ellipse 80% 60% at 50% 100%, rgba(107,53,212,0.2) 0%, transparent 70%); }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 40px; }
.pain-item {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 20px; border-radius: 13px;
  background: rgba(255,255,255,0.035); border: 1px solid rgba(196,168,255,0.12);
  transition: border-color 0.2s, background 0.2s;
}
.pain-item:hover { border-color: rgba(196,168,255,0.35); background: rgba(107,53,212,0.11); }
.pain-arrow { color: var(--teal); font-size: 1.1rem; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.pain-item p { font-size: 0.87rem; color: #ccc8e0; line-height: 1.65; margin: 0; }
.pain-closing { text-align: center; margin-top: 44px; font-family: 'Lora', serif; font-style: italic; font-size: 1.4rem; color: var(--teal); }

/* ── FRAMEWORK CARDS ── */
.frameworks-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 44px; }
.framework-card { background: rgba(255,255,255,0.03); border: 1.5px solid rgba(196,168,255,0.17); border-radius: 16px; padding: 26px 22px; transition: border-color 0.2s, background 0.2s; }
.framework-card:hover { border-color: var(--purple-light); background: rgba(107,53,212,0.11); }
.fw-abbr { font-weight: 900; font-size: 2.3rem; color: var(--purple-light); line-height: 1; margin-bottom: 4px; }
.fw-name { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; color: var(--teal); margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.framework-card p { font-size: 0.83rem; color: #b0a8c4; line-height: 1.72; margin: 0; }

/* ── ABOUT PAGE ── */
.about-hero-inner { display: grid; grid-template-columns: 1fr 1.7fr; gap: 72px; align-items: start; position: relative; }
.about-photo { aspect-ratio: 3/4; border-radius: 22px; background: linear-gradient(145deg, rgba(74,31,168,0.45), rgba(0,194,212,0.18)); border: 1.5px solid var(--border-purple); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; }
.about-photo-placeholder { text-align: center; color: var(--purple-light); opacity: 0.7; }
.about-photo-placeholder p { font-size: 0.76rem; margin: 8px 0 0; }
.about-name  { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; color: var(--white); margin-bottom: 5px; }
.about-creds { font-size: 0.86rem; color: var(--teal); font-weight: 700; letter-spacing: 0.06em; margin-bottom: 24px; }

/* ── FORMS ── */
.form-wrap { background: rgba(255,255,255,0.025); border: 1.5px solid var(--border-orange); border-radius: 22px; padding: 44px; }
.form-wrap.teal-form { border-color: var(--border-teal); }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 7px; }
.form-label .req { color: var(--orange); }
.form-input, .form-textarea, .form-select {
  width: 100%; background: rgba(255,255,255,0.055); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 12px 16px; color: var(--white);
  font-family: 'Nunito', sans-serif; font-size: 0.88rem; font-weight: 600;
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--orange); background: rgba(232,74,26,0.05); }
.teal-form .form-input:focus, .teal-form .form-textarea:focus { border-color: var(--teal); background: rgba(0,194,212,0.05); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-select option { background: #1a0e28; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.75rem; color: var(--muted); margin-top: 7px; line-height: 1.55; }
.form-submit { width: 100%; padding: 15px; background: var(--orange); color: var(--white); border: none; border-radius: 50px; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.98rem; cursor: pointer; margin-top: 6px; transition: background 0.2s, transform 0.15s; }
.form-submit:hover { background: var(--orange-light); transform: translateY(-2px); }

/* Form success message */
.form-success {
  display: none; margin-top: 24px;
  background: rgba(0,194,212,0.08); border: 1.5px solid var(--border-teal);
  border-radius: 16px; padding: 32px; text-align: center;
}
.form-success .fs-icon { font-size: 2.5rem; margin-bottom: 12px; }
.form-success h3 { color: var(--white); margin-bottom: 10px; }
.form-success p  { font-family: 'Lora', serif; color: var(--muted-light); line-height: 1.75; margin: 0; }

/* ── FAQ ── */
.faq-list { margin-top: 36px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-weight: 800; color: var(--white); font-size: 0.92rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; user-select: none; }
.faq-q .faq-icon { color: var(--teal); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 0.86rem; color: var(--muted-light); line-height: 1.75; font-family: 'Lora', serif; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 300px; padding-top: 12px; }

/* ── WORKSHOPS TEASER (home) ── */
.workshops-teaser { background: var(--teal); padding: 72px 40px; position: relative; overflow: hidden; }
.workshops-teaser::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,80,100,0.4) 0%, transparent 70%); }
.wt-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: center; position: relative; }
.workshops-teaser h2 { font-size: clamp(1.5rem,3.5vw,2.2rem); color: var(--black); margin-bottom: 14px; }
.workshops-teaser p  { font-family: 'Lora', serif; color: rgba(0,0,0,0.68); margin-bottom: 18px; }
.wt-chips { display: flex; gap: 9px; flex-wrap: wrap; }
.wt-chip  { background: rgba(0,0,0,0.13); border: 1px solid rgba(0,0,0,0.18); border-radius: 30px; padding: 5px 14px; font-size: 0.74rem; font-weight: 800; color: var(--black); }

/* ── FOOTER ── */
.footer { background: #050508; border-top: 1px solid var(--border); padding: 60px 40px 36px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-logo img { height: 40px; width: auto; display: block; margin-bottom: 14px; }
.footer-brand p  { font-family: 'Lora', serif; font-size: 0.82rem; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col h5   { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer-col ul   { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a    { font-size: 0.82rem; color: var(--muted-light); font-weight: 600; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p, .footer-bottom span { font-size: 0.68rem; color: var(--muted); margin: 0; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.on { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .section, .section-sm { padding: 70px 20px; }
  .page-hero { padding: 118px 20px 70px; }
  .workshops-teaser { padding: 68px 20px; }
  .footer { padding: 56px 20px 32px; }

  .about-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { aspect-ratio: 1; max-width: 260px; margin: 0 auto; }
  .pain-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .bundles-grid { grid-template-columns: 1fr 1fr; }
  .workshop-cards { grid-template-columns: 1fr; }
  .frameworks-grid { grid-template-columns: 1fr; }
  .wt-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 26px 18px; }
}

@media (max-width: 520px) {
  .bundles-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}


/* About authority + human layer */
.about-authority-stack {
  margin: 30px 0 28px;
  display: grid;
  gap: 18px;
}

.about-info-box,
.about-philosophy-box {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(196,168,255,.18);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
}

.about-info-box h3 {
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 12px;
  letter-spacing: .01em;
}

.about-info-box ul {
  margin: 0;
  padding-left: 19px;
  color: #c0b8d8;
  font-family: 'Lora', serif;
  line-height: 1.72;
  font-size: .88rem;
}

.about-info-box li {
  margin-bottom: 7px;
}

.about-philosophy-box p,
.about-human-box p {
  color: #c0b8d8;
  font-family: 'Lora', serif;
  line-height: 1.78;
  font-size: .9rem;
  margin: 0 0 12px;
}

.about-philosophy-box p:last-child,
.about-human-box p:last-child {
  margin-bottom: 0;
}

.about-philosophy-box strong {
  color: var(--white);
  font-family: 'Nunito', sans-serif;
}
