/* ============================================
   LUKE MAVEN - Premium Creator Growth Website
   Dark / Gold / Cream visual system
   ============================================ */

:root {
  --bg-deep: #050505;
  --bg-charcoal: #0c0c0c;
  --bg-elevated: #121212;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --gold: #c9a227;
  --gold-light: #e0bc4a;
  --gold-dim: #8a7020;
  --gold-glow: rgba(201, 162, 39, 0.35);
  --gold-soft: rgba(201, 162, 39, 0.12);
  --cream: #f5f0e6;
  --cream-muted: #c8c0b0;
  --text-primary: #f5f0e6;
  --text-secondary: #a8a090;
  --text-dim: #6b6558;
  --border: rgba(201, 162, 39, 0.18);
  --border-strong: rgba(201, 162, 39, 0.35);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 0 40px rgba(201, 162, 39, 0.15);
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
  --nav-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
.serif {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--cream-muted);
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.body-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-tight {
  padding: 4rem 0;
}

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-brand .logo img {
  height: 56px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--gold);
  border-radius: 999px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 0 24px var(--gold-glow);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--bg-charcoal);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.5rem 0;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.25);
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(201, 162, 39, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px var(--gold-soft);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

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

/* ---------- Platform pills ---------- */
.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.platform-pill {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--gold-soft);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 70% 40%, rgba(201, 162, 39, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(201, 162, 39, 0.04) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.hero .body-text {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, 38vw);
  height: min(420px, 38vw);
  pointer-events: none;
  opacity: 0.9;
}

/* Animated hero visual */
.hero-orbit {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  animation: orbit-spin 40s linear infinite;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--gold-glow);
}

.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: 55%;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.hero-center-inner {
  width: 70%;
  height: 55%;
  background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a1a 100%);
  border-radius: 8px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-center-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  animation: stream-pulse 2.5s ease-in-out infinite;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes stream-pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ---------- Problem cards ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: all var(--transition);
}

.problem-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 0 30px var(--gold-soft);
}

.problem-card .num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.problem-card h3 {
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

/* ---------- Journey / Funnel visual ---------- */
.journey {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.6rem;
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.journey-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.journey-step .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.journey-step .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  white-space: nowrap;
}

.journey-arrow {
  color: var(--gold-dim);
  font-size: 1.1rem;
  opacity: 0.6;
}

/* ---------- Six / Four card grids ---------- */
.grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.icon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: all var(--transition);
}

.icon-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.icon-card .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.icon-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.icon-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ---------- Platform ecosystem ---------- */
.platform-system {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
}

.platform-node {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  transition: all var(--transition);
  position: relative;
}

.platform-node:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px var(--gold-soft);
  color: var(--gold);
}

.platform-node.twitch {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-soft);
}

/* ---------- Trust points ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.trust-item .marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.45rem;
  box-shadow: 0 0 8px var(--gold-glow);
}

.trust-item h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ---------- CTA blocks ---------- */
.cta-block {
  text-align: center;
  padding: 4.5rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-charcoal) 0%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-block h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}

.cta-block .body-text {
  margin: 0 auto 1.75rem;
  max-width: 520px;
}

.cta-email {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.cta-email:hover {
  color: var(--gold-light);
}

/* ---------- Campaign page specific ---------- */
.campaign-hero {
  padding-top: calc(var(--nav-height) + 3.5rem);
  padding-bottom: 3.5rem;
  text-align: center;
}

.campaign-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 800px;
  margin: 0 auto 1.25rem;
}

.campaign-hero .body-text {
  margin: 0 auto;
  max-width: 560px;
}

.funnel-overview {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 2.5rem auto 0;
  max-width: 900px;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.funnel-step {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  padding: 0.4rem 0.7rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.funnel-step.visible {
  opacity: 1;
  transform: scale(1);
}

.funnel-arrow {
  color: var(--gold-dim);
  font-size: 0.9rem;
}

.campaign-plan-title {
  text-align: center;
  margin: 3.5rem 0 1rem;
}

.campaign-plan-title h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--gold);
  letter-spacing: 0.04em;
}

.campaign-plan-title p {
  max-width: 620px;
  margin: 0.75rem auto 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Campaign stage rows */
.stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.stage:last-of-type {
  border-bottom: none;
}

.stage-visual {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stage-content .stage-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stage-content h3 {
  font-size: 1.45rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.stage-content .stage-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.stage-points {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.stage-points li {
  font-size: 0.92rem;
  color: var(--cream-muted);
  padding-left: 1.1rem;
  position: relative;
}

.stage-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* Stage visual animations (shared styles) */
.viz {
  width: 100%;
  height: 100%;
  min-height: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.viz-label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s ease 0.8s;
}

.stage.in-view .viz-label {
  opacity: 1;
}

/* Complete funnel */
.complete-funnel {
  text-align: center;
  padding: 4rem 0;
}

.complete-funnel-path {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 2.5rem auto;
  max-width: 320px;
}

.cf-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0.7rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cf-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.cf-step .num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  width: 28px;
}

.cf-step .name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}

.cf-arrow {
  color: var(--gold-dim);
  font-size: 0.9rem;
}

/* Three pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pillar {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.pillar:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px var(--gold-soft);
}

.pillar h3 {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ---------- About page ---------- */
.about-hero {
  padding-top: calc(var(--nav-height) + 3.5rem);
  padding-bottom: 3rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-portrait {
  position: relative;
}

.portrait-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-gold);
}

.portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #161616 0%, #0e0e0e 100%);
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 1.5rem;
}

.portrait-placeholder svg {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  opacity: 0.4;
  color: var(--gold);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.about-intro h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.about-intro .section-sub {
  margin-bottom: 1.5rem;
}

.about-intro .body-text {
  margin-bottom: 1.5rem;
}

.approach-list {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.approach-list li {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.approach-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: all var(--transition);
}

.about-card:hover {
  border-color: var(--gold-dim);
}

.about-card h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

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

.who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.who-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--bg-card);
  transition: all var(--transition);
}

.who-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Philosophy visual */
.philosophy-visual {
  margin-top: 2rem;
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.branch-center {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px var(--gold-glow);
  z-index: 2;
}

.branch-path {
  position: absolute;
  width: 80px;
  height: 1px;
  background: var(--gold-dim);
  transform-origin: left center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-charcoal);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 260px;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-nav a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--cream);
}

.footer-contact a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .hero-visual {
    display: none;
  }

  .stage {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .stage-visual {
    min-height: 240px;
    order: -1;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-portrait {
    max-width: 280px;
    margin: 0 auto;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .logo img {
    height: 40px;
  }

  .logo-text {
    display: none;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 2.5rem);
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .btn {
    padding: 0.85rem 1.4rem;
    font-size: 0.8rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    width: 100%;
  }

  .journey {
    gap: 0.3rem;
  }

  .journey-step .label {
    font-size: 0.6rem;
  }

  .funnel-overview {
    gap: 0.3rem;
  }

  .funnel-step {
    font-size: 0.65rem;
    padding: 0.3rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.15rem;
  }

  .section-heading {
    font-size: 1.65rem;
  }

  .problem-grid,
  .grid-6,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ---------- Utility ---------- */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.gold {
  color: var(--gold);
}
