/* ============================================================
   CATALYST GROWTH COACHING — DESIGN SYSTEM
   Aesthetic: Refined dark luxury · Private members' club
   ICP: Burnt-out C-suite, VPs, Founders
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg-primary: #0C0C0E;
  --bg-secondary: #141418;
  --bg-tertiary: #1A1A20;
  --bg-card: #1E1E26;
  --text-primary: #F2F0EC;
  --text-secondary: #A8A5A0;
  --text-muted: #6B6862;
  --accent: #C8956C;
  --accent-light: #D4A97D;
  --accent-dark: #A8774E;
  --accent-glow: rgba(200, 149, 108, 0.12);
  --accent-glow-strong: rgba(200, 149, 108, 0.2);
  --border: rgba(200, 149, 108, 0.1);
  --border-strong: rgba(200, 149, 108, 0.25);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--bg-primary); }
img { max-width: 100%; display: block; }

/* ===================== NAVIGATION ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s var(--ease);
  background: transparent;
}

.nav.scrolled {
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 0.76rem !important;
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--accent) !important;
  color: var(--accent) !important;
  border-radius: 2px;
  transition: all 0.4s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--bg-primary) !important;
}

.nav-cta::after { display: none !important; }

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  padding: 0.8rem 0;
  background: rgba(20, 20, 24, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 4px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
  list-style: none;
  margin-top: 0.6rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1.2rem;
  font-size: 0.78rem !important;
  letter-spacing: 0.06em !important;
  white-space: nowrap;
}

.nav-dropdown-menu a::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 12, 14, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.active { display: flex; opacity: 1; pointer-events: all; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-menu .mobile-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s var(--ease);
}

.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn-primary:hover::before { left: 100%; }

.btn-secondary {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.btn-secondary:hover { border-color: var(--accent); background: var(--accent-glow); }

.btn-large { padding: 1.2rem 3rem; font-size: 0.88rem; }

/* ===================== LAYOUT ===================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 2rem; max-width: var(--max-width); margin: 0 auto; }

.section-full {
  padding: 7rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-full .container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 640px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===================== HERO — PAGE HERO ===================== */
.page-hero {
  padding: 10rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: heroPulse 8s ease-in-out infinite;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero .hero-overline {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}

.page-hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s var(--ease) forwards;
}

.page-hero .hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.page-hero .hero-body {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s var(--ease) forwards;
}

.page-hero .hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s var(--ease) forwards;
}

/* HOME HERO — FULL HEIGHT */
.home-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 6rem;
}

.hero-proof {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s var(--ease) forwards;
}

.proof-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== CARDS ===================== */
.card {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.5s var(--ease);
}

.card:hover { border-color: var(--border-strong); }

.card-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Signal cards */
.signal {
  padding: 1.5rem;
  background: var(--bg-card);
  border-left: 2px solid var(--accent-dark);
  border-radius: 0 4px 4px 0;
  transition: all 0.4s var(--ease);
}

.signal:hover {
  border-left-color: var(--accent);
  background: rgba(200, 149, 108, 0.04);
  transform: translateX(4px);
}

.signal-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.signal-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================== GRIDS ===================== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2-asym { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.gap-lg { gap: 2rem; }
.gap-xl { gap: 3rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }

/* ===================== SERVICE CARDS ===================== */
.service-card {
  padding: 2.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover { border-color: var(--accent-dark); }

.service-card.featured {
  border-color: var(--accent-dark);
  background: linear-gradient(135deg, var(--bg-secondary), rgba(200, 149, 108, 0.04));
  position: relative;
}

.service-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  font-weight: 600;
}

.service-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.service-subtitle {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-for {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-for span {
  display: block;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
}

.service-price small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  display: block;
}

.service-link {
  font-size: 0.78rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
}

.service-link::after { content: ' →'; display: inline-block; transition: transform 0.3s; }
.service-link:hover::after { transform: translateX(4px); }

/* ===================== TESTIMONIALS ===================== */
.testimonial {
  padding: 2rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}

.testimonial:hover { border-color: var(--border-strong); }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.testimonial p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonial-author strong {
  color: var(--text-primary);
  font-weight: 500;
  display: block;
}

/* ===================== COST CARDS ===================== */
.cost-card {
  padding: 2rem 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.cost-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }

.cost-icon { font-size: 1.6rem; margin-bottom: 1rem; opacity: 0.7; }

.cost-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.cost-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ===================== PHASE/METHOD CARDS ===================== */
.phase-card {
  padding: 2.5rem 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  transition: all 0.4s var(--ease);
}

.phase-card:hover { border-color: var(--border-strong); }

.phase-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  line-height: 1;
}

.phase-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.phase-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.phase-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===================== PATTERN CARDS ===================== */
.pattern-card {
  padding: 2.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.pattern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.5s var(--ease);
}

.pattern-card:hover::before { height: 100%; }
.pattern-card:hover { border-color: var(--border-strong); }

.pattern-card .card-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.pattern-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.pattern-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

.pattern-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.pattern-card .brain-pattern {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.6rem;
}

.pattern-card .timeline {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}

/* ===================== CHECKLIST ===================== */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 0.6rem 0;
  padding-left: 1.8rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ===================== PRICING CARDS ===================== */
.pricing-card {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }

.pricing-card.featured {
  border-color: var(--accent-dark);
  background: linear-gradient(135deg, var(--bg-card), rgba(200, 149, 108, 0.06));
}

.pricing-card .pricing-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.pricing-card .price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-card .checklist { flex-grow: 1; }

.pricing-card .btn-primary, .pricing-card .btn-secondary {
  margin-top: 1.5rem;
  text-align: center;
  width: 100%;
}

/* ===================== ASSESSMENT TOOLS ===================== */
.tool-card {
  padding: 2rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.tool-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }

.tool-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.1rem;
}

.tool-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.tool-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* ===================== ABOUT IMAGE ===================== */
.about-image {
  aspect-ratio: 3/4;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-glow), transparent 60%);
}

.about-placeholder {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.cred-tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  font-weight: 500;
  display: inline-block;
}

/* ===================== FINAL CTA ===================== */
.final-cta {
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta > * { position: relative; z-index: 1; }

.stuck-questions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 2rem auto;
  max-width: 600px;
}

.stuck-tag {
  font-size: 0.78rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-secondary);
  transition: all 0.3s;
  cursor: default;
}

.stuck-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.final-question {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-secondary);
  margin: 2.5rem auto 2rem;
  max-width: 560px;
}

/* ===================== FOOTER ===================== */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
}

.footer-logo span { color: var(--accent); }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ===================== PROSE ===================== */
.prose p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.prose p strong { color: var(--text-primary); }

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

/* ===================== DIVIDER ===================== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: 0;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.15s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.2s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.25s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.3s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .grid-2, .grid-2-asym { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .about-image { max-height: 350px; }
}

@media (max-width: 768px) {
  .section { padding: 4.5rem 1.2rem; }
  .section-full .container { padding: 0 1.2rem; }
  .section-full { padding: 4.5rem 0; }
  .page-hero { padding: 7rem 1.2rem 3.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: column; gap: 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .service-card.featured::after { position: static; margin-bottom: 1rem; display: inline-block; }
  .final-cta { padding: 5rem 1.2rem; }
}

@media (max-width: 480px) {
  .page-hero .hero-actions { flex-direction: column; }
  .page-hero .hero-actions a { text-align: center; }
}

/* ===================== MEDIA PLACEHOLDERS ===================== */
.media-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
}

.media-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 149, 108, 0.06), transparent 60%);
  pointer-events: none;
}

.media-placeholder .placeholder-label {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  background: var(--bg-card);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  border: 1px solid var(--border-strong);
}

.media-placeholder .placeholder-note {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 280px;
  line-height: 1.5;
}

.media-hero-video {
  aspect-ratio: 16/9;
  max-width: 560px;
  width: 100%;
  margin-top: 2.5rem;
}

.media-atmospheric {
  aspect-ratio: 21/9;
  width: 100%;
}

.media-portrait {
  aspect-ratio: 3/4;
  max-width: 400px;
  width: 100%;
}

.media-landscape {
  aspect-ratio: 16/10;
  width: 100%;
}

.media-square {
  aspect-ratio: 1/1;
  width: 100%;
}

.media-section {
  padding: 3rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.media-section-full {
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.media-section-full .media-placeholder {
  border: none;
  border-radius: 0;
  aspect-ratio: 21/9;
}

