/* =============================================================
   Dykros Media LLC — shared styles
   To recolor the accent, change --accent (and --accent-soft).
   ============================================================= */

:root {
  --bg:        #0A0A0C;
  --bg-2:      #0F0F12;
  --surface:   #141419;
  --surface-2: #1A1A20;
  --text:      #F2F1EE;
  --muted:     #9C9CA6;
  --faint:     #6E6E78;
  --border:    rgba(242, 241, 238, 0.09);
  --border-strong: rgba(242, 241, 238, 0.16);
  --accent:      #FF0000;
  --accent-hover:#FF2A2A;
  --accent-soft: rgba(255, 0, 0, 0.15);

  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body:    "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1140px;
  --radius: 14px;
  --radius-lg: 22px;
}

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

html { scroll-behavior: smooth; }

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

/* subtle grain/depth so the black has texture instead of flat fill */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 500px at 78% -8%, rgba(255,0,0,0.10), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(255,255,255,0.025), transparent 55%);
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); opacity: 0.6; }

.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 13px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--text); transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; }

/* ---------- nav ---------- */
.nav-spacer { height: 92px; }
.nav {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 50;
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 11px 14px 11px 22px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(15,15,18,0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 100px;
}
@media (max-width: 1180px) { .nav-inner { margin: 0 18px; } }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.brand .mark { width: 34px; height: 34px; flex: none; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; color: var(--muted); transition: color .15s ease; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; }
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 18px; position: absolute;
    top: 64px; left: 18px; right: 18px; padding: 22px;
    background: rgba(15,15,18,0.96); border: 1px solid var(--border); border-radius: var(--radius);
  }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- hero ---------- */
.hero { padding: 86px 0 96px; }
.hero h1 { font-size: clamp(44px, 7vw, 86px); max-width: 14ch; }
.hero .sub { margin-top: 26px; max-width: 56ch; font-size: clamp(17px, 2vw, 20px); color: var(--muted); }
.hero .actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }

.reveal { opacity: 0; transform: translateY(16px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards; }
.d1 { animation-delay: .05s; } .d2 { animation-delay: .16s; } .d3 { animation-delay: .27s; } .d4 { animation-delay: .38s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; transform: none; } }

/* ---------- sections ---------- */
section { padding: 84px 0; position: relative; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 60ch; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin-top: 18px; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 18px; }

/* about */
.about-grid { margin-top: 52px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 30px; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-lead { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); line-height: 1.3; letter-spacing: -0.01em; }
.about-lead .accent { color: var(--accent); }
.about-body p { margin-top: 18px; color: var(--muted); }
.pillars { display: grid; gap: 16px; }
.pillar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; }
.pillar h3 { font-size: 17px; letter-spacing: 0; font-family: var(--font-body); font-weight: 700; }
.pillar p { margin-top: 7px; font-size: 15px; color: var(--muted); line-height: 1.55; }

/* services */
.cards { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px 28px; transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); background: var(--surface-2); }
.card .num { font-family: var(--font-display); font-size: 13px; color: var(--accent); font-weight: 700; letter-spacing: 0.04em; }
.card h3 { margin-top: 14px; font-size: 20px; }
.card p { margin-top: 10px; font-size: 15px; color: var(--muted); line-height: 1.55; }
.svc-note { margin-top: 34px; color: var(--muted); font-size: 15.5px; }
.svc-note b { color: var(--text); font-weight: 600; }

/* founder bio */
.founder { margin-top: 30px; padding-top: 34px; border-top: 1px solid var(--border); display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; }
@media (max-width: 880px) { .founder { grid-template-columns: 1fr; gap: 26px; } }
.founder-photo img { width: 100%; max-width: 300px; border-radius: var(--radius-lg); display: block; border: 1px solid var(--border); }
@media (max-width: 880px) { .founder-photo img { max-width: 240px; } }
.founder-tag { font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.founder-body { margin-top: 16px; }
.founder-body p { color: var(--muted); }
.founder-body p + p { margin-top: 16px; }
.founder-body p:first-child { color: var(--text); font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 26px); line-height: 1.32; letter-spacing: -0.01em; }

/* contact */
.contact-grid { margin-top: 50px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } }
.contact-detail { margin-top: 26px; }
.contact-detail .label { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.contact-detail .val { margin-top: 5px; font-size: 16.5px; }
.contact-detail a.val { color: var(--text); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }

form .field { margin-bottom: 18px; }
form label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 8px; color: var(--text); }
form input, form textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--border);
  border-radius: 11px; color: var(--text); font-family: var(--font-body); font-size: 15.5px;
  padding: 13px 15px; transition: border-color .15s ease;
}
form input::placeholder, form textarea::placeholder { color: var(--faint); }
form input:focus, form textarea:focus { outline: none; border-color: var(--accent); }
form textarea { resize: vertical; min-height: 130px; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--border); padding: 64px 0 40px; background: var(--bg-2); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 30px; } }
.foot-brand p { margin-top: 16px; color: var(--muted); font-size: 14.5px; max-width: 34ch; }
.foot-addr { margin-top: 16px; color: var(--faint); font-size: 13.5px; line-height: 1.6; }
.foot-col h4 { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); font-family: var(--font-body); font-weight: 700; }
.foot-col ul { list-style: none; margin-top: 16px; display: grid; gap: 11px; }
.foot-col a { color: var(--muted); font-size: 14.5px; transition: color .15s ease; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--faint); font-size: 13.5px; }

/* ---------- legal pages ---------- */
.legal { padding: 56px 0 90px; }
.legal .wrap { max-width: 820px; }
.legal h1 { font-size: clamp(34px, 5vw, 52px); }
.legal .updated { margin-top: 14px; color: var(--faint); font-size: 14px; }
.legal h2 { font-size: 22px; margin-top: 44px; }
.legal p { margin-top: 14px; color: var(--muted); }
.legal ul { margin-top: 14px; padding-left: 20px; color: var(--muted); }
.legal li { margin-top: 8px; }
.legal a { color: var(--text); border-bottom: 1px solid var(--accent); }
.back { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--muted); font-size: 14.5px; }
.back:hover { color: var(--text); }
