/* ===== BASE ===== */
:root {
  --bg: #161412;
  --bg-alt: #1e1a16;
  --fg: #f0ebe3;
  --fg-muted: #9e9185;
  --accent: #c8854a;
  --accent-dim: #8a5a30;
  --accent-glow: rgba(200, 133, 74, 0.12);
  --border: rgba(200, 133, 74, 0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }

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

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

/* ===== MANIFESTO / HERO ===== */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(200, 133, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-inner {
  padding: 6rem 4rem 6rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.manifesto-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--accent);
}
.manifesto-headline {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.manifesto-headline em {
  font-style: italic;
  color: var(--accent);
}
.manifesto-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.5rem;
}
.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  line-height: 1.35;
  display: block;
  max-width: 110px;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

/* Epoxy Visual (right panel) */
.manifesto-visual {
  position: relative;
  overflow: hidden;
}
.epoxy-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  background: #0e0c0a;
  overflow: hidden;
}
.epoxy-layer {
  position: absolute;
  inset: 0;
}
.epoxy-base {
  background: radial-gradient(ellipse at 50% 50%, #2a1f12 0%, #0e0c0a 60%);
}
.epoxy-swirl-1 {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(200, 133, 74, 0.5) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 60%, rgba(180, 100, 50, 0.4) 0%, transparent 35%),
    radial-gradient(ellipse at 50% 50%, rgba(150, 80, 30, 0.3) 0%, transparent 50%);
  animation: swirl1 12s ease-in-out infinite alternate;
}
.epoxy-swirl-2 {
  background:
    radial-gradient(ellipse at 65% 35%, rgba(220, 160, 80, 0.4) 0%, transparent 30%),
    radial-gradient(ellipse at 35% 70%, rgba(160, 90, 40, 0.35) 0%, transparent 40%);
  animation: swirl2 15s ease-in-out infinite alternate;
}
.epoxy-gloss {
  background:
    linear-gradient(135deg, rgba(255, 200, 120, 0.06) 0%, transparent 50%),
    linear-gradient(225deg, rgba(200, 133, 74, 0.04) 0%, transparent 60%);
  animation: gloss 8s ease-in-out infinite alternate;
}
@keyframes swirl1 {
  0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  100% { transform: scale(1.15) rotate(15deg); opacity: 1; }
}
@keyframes swirl2 {
  0% { transform: scale(1.1) rotate(0deg); }
  100% { transform: scale(0.95) rotate(-10deg); }
}
@keyframes gloss {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}
.epoxy-tagline {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(200, 133, 74, 0.6);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ===== LEADERSHIP ===== */
.leadership {
  padding: 7rem 0;
  background: var(--bg-alt);
}
.leadership-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.leadership-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.leadership-headline {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 780px;
}
.leadership-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
  margin-bottom: 2.5rem;
}
.leadership-body p {
  color: var(--fg-muted);
  font-size: 0.93rem;
  line-height: 1.8;
}
.leadership-proof {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(200, 133, 74, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.proof-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.3rem;
}
.proof-item p {
  font-size: 0.83rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 7rem 0;
}
.how-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}
.how-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
}
.steps {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
}
.step {
  padding: 2rem 1.75rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.65rem;
}
.step p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 0.25rem;
}

/* ===== SERVICES ===== */
.services {
  padding: 7rem 0;
  background: var(--bg-alt);
}
.services-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}
.services-text h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}
.services-text p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.75;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.service-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(22, 20, 18, 0.4);
  transition: border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover { border-color: rgba(200, 133, 74, 0.4); }
.service-card:hover::before { opacity: 1; }
.service-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 1rem;
  box-shadow: 0 0 8px rgba(200, 133, 74, 0.5);
}
.service-card h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.service-card p {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(200, 133, 74, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.closing-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.closing-headline {
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.12;
}
.closing-body {
  font-size: 0.97rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.closing-vision {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-alt);
}
.vision-item {
  flex: 1;
  padding: 1.75rem 2rem;
  text-align: left;
}
.vision-separator {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}
.vision-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}
.vision-text {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.45;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  padding: 4rem 0 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.83rem;
  color: var(--fg-muted);
}
.footer-links {
  display: flex;
  gap: 4rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.footer-col a {
  font-size: 0.83rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .manifesto { grid-template-columns: 1fr; min-height: auto; }
  .manifesto-visual { height: 50vw; min-height: 280px; }
  .manifesto-inner { padding: 4rem 2rem; }
  .manifesto-stats { flex-wrap: wrap; gap: 1.5rem; }
  .leadership-body { grid-template-columns: 1fr; gap: 1rem; }
  .steps { grid-template-columns: 1fr; gap: 0.25rem; }
  .step-connector { transform: rotate(90deg); padding: 0.4rem 0; }
  .services-inner { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .closing-vision { flex-direction: column; }
  .vision-separator { width: 100%; height: 1px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { gap: 2rem; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
  .manifesto-headline { font-size: 2.4rem; }
  .vision-item { padding: 1.25rem 1.5rem; }
}