/* ============================================================
   REACH — Digital Marketing Agency
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --bg: #0E0E0E;
  --surface: #161616;
  --surface-2: #1F1F1F;
  --cream: #F5F0E8;
  --orange: #FF4500;
  --orange-dim: rgba(255, 69, 0, 0.15);
  --text-primary: #F5F0E8;
  --text-secondary: #9A9590;
  --text-muted: #5A5550;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1280px;
  --gutter: clamp(24px, 5vw, 80px);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--orange); color: #fff; }

/* --- Typography --- */
.font-display { font-family: var(--font-display); }

/* --- Section Label --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 56px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--gutter);
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 32px;
}

.hero-headline em {
  font-style: italic;
  color: var(--orange);
}

.hero-lede {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-secondary);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--surface-2);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
}

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

/* --- Brand Canvas (Hero Right) --- */
.brand-canvas {
  position: relative;
  height: 560px;
  background: var(--surface);
  border-radius: 4px;
  overflow: hidden;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.canvas-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}

/* Billboard mock */
.canvas-billboard {
  background: var(--cream);
  padding: 20px 24px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.billboard-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #999;
  text-transform: uppercase;
}

.billboard-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  line-height: 0.95;
  color: #111;
  letter-spacing: -0.02em;
}

.billboard-sub {
  position: absolute;
  right: 20px;
  bottom: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
}

/* Card grid */
.canvas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
}

.canvas-card {
  background: var(--surface-2);
  border-radius: 3px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-social, .card-ads { }

.card-report {
  grid-column: 1 / -1;
}

.card-icon {
  color: var(--orange);
}

.card-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-line {
  height: 6px;
  background: var(--surface);
  border-radius: 2px;
}

.w30 { width: 30%; }
.w40 { width: 40%; }
.w50 { width: 50%; }
.w60 { width: 60%; }
.w70 { width: 70%; }
.w75 { width: 75%; }
.w80 { width: 80%; }
.w90 { width: 90%; }

.card-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: auto;
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  background: var(--orange);
  padding: clamp(48px, 8vw, 100px) var(--gutter);
}

.manifesto-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.35;
  color: #fff;
}

.manifesto-text strong {
  font-weight: 900;
}

.manifesto-rule {
  margin-top: 40px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  max-width: 160px;
}

/* ============================================================
   OUTPUT
   ============================================================ */
.output {
  padding: clamp(64px, 10vw, 120px) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.output-header {
  margin-bottom: 64px;
}

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

.output-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  margin-top: 24px;
}

.output-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Output thumbnails */
.output-thumb {
  height: 200px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.thumb-billboard { background: var(--surface); }
.thumb-social { background: var(--surface); }
.thumb-ads { background: var(--surface); }

.thumb-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  background: var(--surface-2);
  padding: 4px 8px;
  border-radius: 2px;
}

/* Billboard mock in output */
.billboard-mock {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 20px;
}

.bm-frame {
  width: 80%;
  height: 60%;
  border: 2px solid var(--cream);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bm-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  color: var(--cream);
  text-align: center;
  line-height: 1;
  letter-spacing: -0.01em;
}

/* Social mock */
.social-mock {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sm-post {
  border-radius: 50%;
  background: var(--surface-2);
}

.post-1 { width: 48px; height: 48px; }
.post-2 { width: 64px; height: 64px; border: 2px solid var(--orange); }
.post-3 { width: 48px; height: 48px; }

/* Ads mock */
.ads-mock {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-card {
  background: var(--surface-2);
  border: 1px solid var(--surface-2);
  border-radius: 4px;
  padding: 20px;
  width: 100%;
  max-width: 200px;
}

.ad-headline {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.ad-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.ad-cta {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 5px 12px;
  border-radius: 2px;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: clamp(64px, 10vw, 120px) var(--gutter);
  background: var(--surface);
  max-width: 100%;
}

.features-header {
  max-width: var(--max-w);
  margin: 0 auto 64px;
}

.features-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 64px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   CLOSING
   ============================================================ */
.closing {
  padding: clamp(64px, 10vw, 120px) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.closing-inner {
  max-width: 800px;
}

.closing-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 56px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 110px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.6;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.closing-sub {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 56px;
}

.closing-divider {
  height: 1px;
  background: var(--surface-2);
  margin-bottom: 56px;
  max-width: 200px;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 640px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--surface-2);
  padding: 48px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
}

.footer-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
  }

  .brand-canvas {
    height: 320px;
  }

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

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

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 72px;
  }

  .hero-headline {
    font-size: 56px;
  }

  .manifesto-text {
    font-size: 20px;
  }
}
