/* Forrest Studios — marketing site
   Minimal, high-contrast. Black / white / red-orange. Archivo.
   Visually aligned with the investor deck. */

:root {
  --bg:        #0a0a0a;
  --bg-2:      #000000;
  --text:      #ffffff;
  --dim:       #b4b4b4;
  --mute:      #6e6e6e;
  --accent:    #ff4937;
  --line:      rgba(255, 255, 255, 0.12);
  --line-2:    rgba(255, 255, 255, 0.22);
  --font: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
a { color: inherit; text-decoration: none; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 22px 40px;
}
.brand {
  font-weight: 900; font-size: 17px; letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--text);
}
.brand span { color: var(--accent); }
.nav-cta {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--dim); text-transform: uppercase; transition: color 0.2s ease;
}
.nav-cta:hover { color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-size: 15px; font-weight: 700;
  letter-spacing: 0.02em; color: #0a0a0a; background: var(--text);
  padding: 16px 38px; border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn:hover { background: var(--accent); color: var(--text); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  padding: 120px 0 90px; position: relative;
  background:
    radial-gradient(60% 80% at 80% 10%, rgba(255, 73, 55, 0.10), transparent 60%),
    var(--bg);
}
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 34px;
}
.hero h1 {
  font-weight: 900;
  font-size: clamp(3.4rem, 11vw, 9rem);
  line-height: 0.92; letter-spacing: -0.03em;
  text-transform: none; margin-bottom: 36px;
}
.hero h1 .accent { color: var(--accent); }
.hero .lead {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem); font-weight: 500;
  color: var(--dim); margin-bottom: 44px; letter-spacing: -0.01em;
}

/* ---------- Statement band ---------- */
.statement {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 110px 0; background: var(--bg-2);
}
.statement p {
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.08;
  font-size: clamp(1.9rem, 5vw, 3.6rem); max-width: 18ch; color: var(--text);
}

/* ---------- Contact ---------- */
.contact { padding: 110px 0 120px; }
.contact h2 {
  font-weight: 900; font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: -0.03em; line-height: 0.95; margin-bottom: 64px;
}
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 34px; }
.detail .k {
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mute); margin-bottom: 10px;
}
.detail .v { font-size: 1.15rem; font-weight: 500; line-height: 1.5; color: var(--text); }
.detail a:hover { color: var(--accent); }

/* Form */
form .row { margin-bottom: 22px; }
label.fld {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 10px;
}
input[type=text], input[type=email], input[type=tel], textarea {
  width: 100%; background: #121212; border: 1px solid var(--line-2);
  border-radius: 2px; padding: 15px 16px; color: var(--text);
  font-family: var(--font); font-size: 16px; transition: border-color 0.2s ease;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); }
textarea { resize: vertical; min-height: 130px; }
.consent {
  display: flex; gap: 13px; align-items: flex-start;
  background: #121212; border: 1px solid var(--line);
  border-radius: 2px; padding: 18px; margin: 6px 0 26px;
}
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; }
.consent label { font-size: 13px; color: var(--dim); line-height: 1.55; }
.consent label a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
button.submit {
  background: var(--text); color: #0a0a0a; border: none; border-radius: 2px;
  padding: 16px 42px; font-family: var(--font); font-weight: 700; font-size: 15px;
  letter-spacing: 0.02em; cursor: pointer; transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
button.submit:hover { background: var(--accent); color: var(--text); transform: translateY(-2px); }

/* ---------- Legal pages ---------- */
.legal { padding: 90px 0 40px; }
.legal h1 { font-weight: 900; font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.03em; margin-bottom: 12px; }
.legal .updated { color: var(--mute); font-size: 14px; margin-bottom: 48px; }
.legal h2 { font-weight: 800; font-size: 1.5rem; letter-spacing: -0.01em; margin: 44px 0 14px; }
.legal h3 { font-weight: 700; font-size: 1.15rem; margin: 28px 0 10px; color: var(--text); }
.legal p, .legal li { color: var(--dim); margin-bottom: 14px; max-width: 72ch; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--text); font-weight: 700; }
.legal a { color: var(--accent); text-underline-offset: 2px; text-decoration: underline; }
.callout {
  background: var(--bg-2); border: 1px solid var(--line-2);
  border-left: 3px solid var(--accent); border-radius: 2px;
  padding: 22px 24px; margin: 24px 0;
}
.callout p { margin-bottom: 0; color: var(--text); }
.back { display: inline-block; font-size: 14px; font-weight: 600; color: var(--dim); margin-bottom: 8px; }
.back:hover { color: var(--accent); }

/* ---------- Footer ---------- */
footer.site { border-top: 1px solid var(--line); padding: 44px 0 56px; }
.foot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.foot .legal-name { color: var(--mute); font-size: 13.5px; }
.foot .legal-name strong { color: var(--dim); font-weight: 700; }
.foot-links { display: flex; gap: 28px; }
.foot-links a { color: var(--dim); font-size: 13.5px; transition: color 0.2s ease; }
.foot-links a:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .wrap { padding: 0 24px; }
  .nav { padding: 18px 24px; }
  .hero { min-height: 80vh; padding: 90px 0 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .statement { padding: 80px 0; }
}
@media (max-width: 480px) {
  .nav-cta { display: none; }
}
