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

:root {
  --obsidian: #0a0a0a;
  --obsidian-2: #111111;
  --amber: #c9952a;
  --amber-dim: rgba(201, 149, 42, 0.15);
  --parchment: #f2ede3;
  --parchment-dim: rgba(242, 237, 227, 0.5);
  --stone: #2a2a2a;
  --stone-2: #3a3a3a;
}

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

body {
  background: var(--obsidian);
  color: var(--parchment);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--parchment);
  margin-bottom: 2rem;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, transparent 100%);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--parchment);
  letter-spacing: -0.02em;
}

.logo-mark {
  color: var(--amber);
  font-size: 1.2rem;
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--parchment-dim);
  letter-spacing: 0.08em;
  font-weight: 400;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,149,42,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-right: 2rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}

.hero-headline {
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--parchment);
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.95;
}

.headline-top {
  color: var(--parchment-dim);
  font-weight: 400;
  font-size: 0.6em;
}

.headline-mid {
  color: var(--parchment);
}

.headline-bot {
  color: var(--amber);
  font-size: 0.85em;
}

.hero-body {
  font-size: 1.1rem;
  color: var(--parchment-dim);
  max-width: 420px;
  line-height: 1.7;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.service-tag {
  padding: 0.4rem 1rem;
  border: 1px solid var(--stone-2);
  border-radius: 2rem;
  font-size: 0.8rem;
  color: var(--parchment-dim);
  letter-spacing: 0.05em;
}

/* Hero Right - Blade Illustration */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 2rem;
}

.blade-illustration {
  position: relative;
  width: 280px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.blade-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--amber), transparent);
  opacity: 0;
  animation: bladeReveal 1s ease forwards;
}

.blade-1 { animation-delay: 0.1s; width: 30%; opacity: 0.15; }
.blade-2 { animation-delay: 0.3s; width: 50%; opacity: 0.25; }
.blade-3 { animation-delay: 0.5s; width: 80%; opacity: 0.5; }
.blade-4 { animation-delay: 0.7s; width: 95%; opacity: 0.75; }
.blade-5 { animation-delay: 0.9s; width: 100%; opacity: 1; }

@keyframes bladeReveal {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: var(--target-opacity, 1); transform: scaleX(1); }
}

.blade-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.blade-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--amber);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.studio-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--parchment-dim);
  letter-spacing: 0.1em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s infinite;
}

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

/* === MANIFESTO === */
.manifesto {
  padding: 6rem 3rem;
  background: var(--obsidian-2);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2rem;
  font-weight: 500;
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--parchment);
  line-height: 1.3;
  margin-bottom: 2rem;
  font-style: normal;
}

.manifesto-body {
  color: var(--parchment-dim);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 3rem;
}

.manifesto-divider {
  width: 60px;
  height: 1px;
  background: var(--amber);
  margin-bottom: 3rem;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--parchment-dim);
  letter-spacing: 0.05em;
}

/* === CRAFT === */
.craft {
  padding: 6rem 3rem;
}

.craft-header {
  margin-bottom: 4rem;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
}

.craft-card {
  background: var(--obsidian);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.craft-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-dim);
  border-radius: 4px;
}

.craft-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--parchment);
}

.craft-desc {
  font-size: 0.9rem;
  color: var(--parchment-dim);
  line-height: 1.7;
}

/* === OUTCOMES === */
.outcomes {
  padding: 6rem 3rem;
  background: var(--obsidian-2);
}

.outcomes-inner {
  max-width: 900px;
  margin: 0 auto;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 1rem;
}

.outcome {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  align-items: start;
}

.outcome-marker {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
  padding-top: 0.3rem;
  letter-spacing: 0.05em;
}

.outcome-content h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}

.outcome-content p {
  font-size: 0.9rem;
  color: var(--parchment-dim);
  line-height: 1.7;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}

.philosophy-pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0 3rem;
  pointer-events: none;
}

.pattern-line {
  height: 1px;
  background: linear-gradient(to right, rgba(201,149,42,0.1), rgba(201,149,42,0.05), transparent);
}

.philosophy-content {
  position: relative;
  max-width: 700px;
  margin-left: auto;
}

.philosophy-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--parchment);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.philosophy-body {
  font-size: 1rem;
  color: var(--parchment-dim);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.philosophy-cities {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--parchment-dim);
  letter-spacing: 0.08em;
}

.city-dot {
  color: var(--amber);
}

/* === CLOSING === */
.closing {
  padding: 8rem 3rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--obsidian), #080808);
  border-top: 1px solid var(--stone);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--parchment);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--parchment-dim);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.closing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cta-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}

.cta-phone {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--parchment);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.cta-phone:hover {
  color: var(--amber);
}

/* === FOOTER === */
.footer {
  padding: 3rem;
  border-top: 1px solid var(--stone);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #080808;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--parchment);
  margin-bottom: 1rem;
}

.footer-address {
  font-size: 0.85rem;
  color: var(--parchment-dim);
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--parchment-dim);
  font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 4rem;
    text-align: left;
  }

  .hero-right {
    order: -1;
    padding-bottom: 2rem;
  }

  .blade-illustration {
    width: 200px;
    height: 200px;
  }

  .blade-text {
    font-size: 1rem;
    letter-spacing: 0.15em;
  }

  .manifesto-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

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

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

  .philosophy-pattern {
    display: none;
  }

  .philosophy-content {
    margin-left: 0;
  }

  .footer {
    flex-direction: column;
    gap: 2rem;
  }

  .cta-phone {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 3rem;
  }

  .closing-headline {
    font-size: 1.8rem;
  }
}