:root {
  --bg: #FDFAF5;
  --fg: #111827;
  --accent: #E8500A;
  --accent-light: #FEF3E2;
  --muted: #6B7280;
  --border: #E5D9CC;
  --surface: #FFFFFF;
  --surface-2: #F5EDE0;
  --nav-h: 72px;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { display: flex; }
.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  padding: 80px 80px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 32px;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-rule {
  width: 64px;
  height: 3px;
  background: var(--accent);
}
.hero-visual {
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  gap: 32px;
}
.video-mockup-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.mockup-phone { text-align: center; }
.mockup-phone-2 { margin-left: 48px; transform: translateY(24px); }
.phone-bezel {
  width: 160px;
  background: #1a1a1a;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.phone-screen {
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  height: 24px;
  background: #1a1a1a;
}
.video-thumb {
  flex: 1;
  background: linear-gradient(135deg, #2d1b4e 0%, #1a1040 50%, #0d1530 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.03) 8px,
    rgba(255,255,255,0.03) 9px
  );
}
.vt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6) 100%);
}
.vt-play {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  z-index: 1;
}
.vt-caption {
  position: absolute;
  bottom: 16px;
  left: 12px;
  right: 12px;
  z-index: 1;
}
.vt-line {
  height: 5px;
  background: rgba(255,255,255,0.8);
  border-radius: 3px;
  margin-bottom: 4px;
}
.vt-line.short { width: 60%; }
.phone-ui {
  padding: 10px 12px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pui-avatar { display: flex; align-items: center; gap: 6px; }
.avatar-ring {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: linear-gradient(135deg, #C4622D, #E8500A);
}
.avatar-ring-2 { background: linear-gradient(135deg, #4a7c59, #2d5a3d); }
.pui-name { font-size: 9px; color: rgba(255,255,255,0.7); font-weight: 600; }
.pui-check {
  width: 10px;
  height: 10px;
  background: #4CC9F0;
  border-radius: 50%;
}
.pui-actions { display: flex; gap: 10px; }
.pui-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: 0.5;
}
.pui-icon.heart { background: #ff4d6a; }
.pui-icon.comment { background: #8b5cf6; }
.pui-icon.share { background: #10b981; }
.phone-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 500;
}
.hero-social-proof {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 20px 28px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.sp-stat { text-align: center; }
.sp-num {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.sp-label { font-size: 11px; color: var(--muted); margin-top: 4px; max-width: 100px; line-height: 1.4; }
.sp-divider { width: 1px; height: 40px; background: var(--border); }

/* ─── STATS ─── */
.stats-section {
  background: var(--fg);
  color: var(--bg);
  padding: 0;
}
.stats-inner {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.stat-block {
  flex: 1;
  padding: 48px 40px;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  line-height: 1;
  color: var(--bg);
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

/* ─── HOW ─── */
.how-section {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}
.section-header { margin-bottom: 64px; }
.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 700px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  align-items: start;
  gap: 0;
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.3;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
}
.step-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.step-connector {
  width: 1px;
  height: 120px;
  background: var(--border);
  margin: 80px auto 0;
}

/* ─── THE WORK ─── */
.work-section {
  padding: 100px 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.work-inner { max-width: 1200px; }
.work-header { margin-bottom: 64px; }
.work-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.3;
  max-width: 700px;
  color: var(--fg);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.work-card {
  background: var(--surface);
  padding: 40px;
}
.wc-icon { margin-bottom: 20px; }
.wc-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.wc-desc { font-size: 15px; color: var(--muted); line-height: 1.7; }
.work-quote {
  border-left: 3px solid var(--accent);
  padding-left: 32px;
}
.work-quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--fg);
  line-height: 1.5;
  max-width: 700px;
}

/* ─── PROCESS ─── */
.process-section {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}
.process-inner { max-width: 1200px; }
.process-header { margin-bottom: 64px; }
.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
}
.pt-week {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
}
.pt-week-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pt-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.pt-body { font-size: 14px; color: var(--muted); line-height: 1.7; }
.pt-arrow {
  width: 40px;
  height: 1px;
  background: var(--border);
  align-self: center;
  flex-shrink: 0;
  position: relative;
}
.pt-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  border: 4px solid transparent;
  border-left: 6px solid var(--border);
}
.process-note {
  background: var(--accent-light);
  border-radius: 8px;
  padding: 24px 32px;
}
.process-note p {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.6;
}

/* ─── PRICING ─── */
.pricing-section {
  padding: 100px 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.pricing-inner { max-width: 1200px; }
.pricing-header { margin-bottom: 64px; }
.pricing-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin-top: 16px;
  line-height: 1.6;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}
.pricing-tier {
  background: var(--surface);
  padding: 40px;
  position: relative;
}
.tier-popular {
  background: var(--fg);
  color: var(--bg);
}
.tier-popular .pt-name, .tier-popular .pt-price { color: var(--bg); }
.tier-popular .pt-desc { color: rgba(255,255,255,0.6); }
.tier-popular .pt-features li { color: rgba(255,255,255,0.8); }
.tier-badge {
  position: absolute;
  top: -1px;
  right: 32px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 0 8px 8px;
}
.pt-name {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 16px;
}
.pt-price {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 8px;
}
.pt-period {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.6;
}
.pt-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pt-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pt-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pt-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.tier-popular .pt-features li::before { background: var(--accent); }
.pricing-math {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 32px;
  text-align: center;
}
.pricing-math p {
  font-size: 16px;
  color: var(--fg);
}
.pricing-math strong {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}
.pt-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 28px;
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.pt-cta:hover { background: #c44008; }
.tier-popular .pt-cta {
  background: var(--accent);
  color: white;
}
.pricing-footnote {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

/* ─── MANIFESTO ─── */
.manifesto-section {
  padding: 100px 80px;
  background: var(--fg);
  color: var(--bg);
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-text .section-tag { color: var(--accent); }
.manifesto-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--bg);
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-bold {
  font-weight: 600;
  color: var(--bg) !important;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 24px;
}
.manifesto-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ms-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ms-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.ms-num {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.ms-label { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 320px; }

/* ─── CLOSING ─── */
.closing-section {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.7;
}
.closing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.cta-name {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.cta-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── FOOTER ─── */
.footer {
  padding: 40px 80px;
  background: var(--surface-2);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* ─── PORTFOLIO ─── */
.portfolio-section {
  padding: 100px 80px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.portfolio-inner { max-width: 1200px; }
.portfolio-header { margin-bottom: 64px; }
.portfolio-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin-top: 16px;
  line-height: 1.6;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.pc-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-2);
}
.pc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}
.pc-body { padding: 28px 32px 32px; }
.pc-client {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--fg);
}
.pc-location {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.pc-results {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.result-item {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.result-item:last-child { border-right: none; }
.result-val {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.result-lbl {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}
.pc-quote {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}
.portfolio-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--fg);
  border-radius: 12px;
  padding: 32px 48px;
}
.portfolio-cta-row p {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--bg);
}
.portfolio-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.portfolio-cta-btn:hover { background: #c44008; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .hero-inner { padding: 60px 32px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .work-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-timeline { flex-direction: column; }
  .pt-arrow { display: none; }
  .stats-inner { flex-direction: column; }
  .stat-block { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-divider { display: none; }
  .how-section, .work-section, .process-section, .pricing-section, .manifesto-section, .closing-section {
    padding: 60px 32px;
  }
  .nav { padding: 0 32px; }
  .footer { padding: 32px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}