/* ============================
   CLIP CRAFT — THEME
   ============================ */

:root {
  --bg: #FAF8F5;
  --fg: #111111;
  --accent: #E85D26;
  --accent-dark: #c44e1e;
  --muted: #6B6B6B;
  --surface: #F0EDE8;
  --border: #DDD9D3;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── Navigation ── */
.site-nav {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  font-family: var(--font-body);
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 580px;
  border-bottom: 1px solid var(--border);
}

.hero-text {
  padding: 80px 56px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.65;
}

.hero-image-wrap {
  overflow: hidden;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Manifesto ── */
.manifesto {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label,
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 24px;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Proof ── */
.proof {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.proof-header { margin-bottom: 56px; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.proof-card {}

.proof-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  background: var(--border);
}

.proof-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proof-img-placeholder {
  background: linear-gradient(135deg, #E85D26 0%, #F4A46D 100%);
}

.proof-img-placeholder-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-emoji {
  font-size: 3rem;
  color: rgba(255,255,255,0.5);
}

.proof-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.proof-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Services ── */
.services {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

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

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
}

.service-item {
  padding: 36px 40px 36px 0;
  border-bottom: 1px solid var(--border);
}

.service-item:nth-child(odd) { padding-right: 40px; }
.service-item:nth-child(even) { padding-left: 40px; border-left: 1px solid var(--border); }

.service-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Process ── */
.process {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.process .section-label { display: block; margin-bottom: 48px; }

.process-strip {
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: start;
  gap: 0;
}

.process-step { padding: 0 36px 0 0; }
.process-step:first-child { padding-left: 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--border);
  padding-top: 24px;
  padding-right: 36px;
}

/* ── Closing ── */
.closing {
  padding: 120px 48px;
  border-bottom: 1px solid var(--border);
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
}

/* ── Footer ── */
.site-footer {
  padding: 60px 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--border);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 56px 24px 40px; }
  .hero-image-wrap { height: 280px; }
  .manifesto { padding: 72px 24px; }
  .proof { padding: 72px 24px; }
  .proof-grid { grid-template-columns: 1fr; gap: 36px; }
  .services { padding: 72px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item:nth-child(odd) { padding-right: 0; }
  .service-item:nth-child(even) { padding-left: 0; border-left: none; }
  .process { padding: 72px 24px; }
  .process-strip { grid-template-columns: 1fr; gap: 32px; }
  .process-arrow { display: none; }
  .process-step { padding: 0; }
  .closing { padding: 80px 24px; }
  .site-footer { padding: 48px 24px; }
}
