/* ============================================
   GRIPPED MEDIA Core Stylesheet
   Palette: charcoal / off-white / logo red
   ============================================ */

:root {
  --ink: #15171b;        /* near-black charcoal */
  --ink-soft: #21242a;   /* panel charcoal */
  --steel: #565c66;      /* muted gray for secondary text */
  --paper: #f5f3f0;      /* warm off-white */
  --white: #ffffff;
  --orange: #ed1c24;     /* logo red, accent */
  --orange-dark: #c2161d;
  --line: rgba(255,255,255,0.08);

  --font-head: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (min-width: 1600px) {
  .wrap { max-width: 1440px; padding: 0 40px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--ink); }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--orange);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-block;
}
.logo span { color: var(--orange); }
.logo img {
  display: block;
  height: 54px;
  width: auto;
  border-radius: 6px;
}
.site-footer .logo img { height: 50px; }
.hero-logo {
  max-width: 420px;
  width: 55%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 28px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
@media (max-width: 600px) {
  .hero-logo { width: 82%; max-width: 320px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--orange); }
.nav-links .btn { padding: 10px 22px; font-size: 13px; }
.nav-links a.btn.active,
.nav-links a.btn:hover { color: var(--white); } /* prevent orange-on-orange when a CTA button is also the active page */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-bottom: 3px solid var(--orange);
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    width: 100%;
    border-top: 1px solid var(--line);
  }
  .nav-links .btn { margin: 16px 24px; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,94,20,0.06) 0px, rgba(255,94,20,0.06) 2px, transparent 2px, transparent 26px);
}
.hero .eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid var(--orange);
  padding: 6px 14px;
  border-radius: 3px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.04;
  margin: 0 0 22px;
  max-width: 820px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero p.lead {
  font-size: 19px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 0 36px;
}
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Section basics ---------- */
section { padding: 84px 0; }
.section-label {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
h2.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 16px;
  line-height: 1.1;
}
p.section-sub {
  color: var(--steel);
  font-size: 17px;
  max-width: 640px;
  margin: 0 0 48px;
}

/* ---------- Who We Serve strip ---------- */
.serve-strip {
  background: var(--ink);
  color: var(--white);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.serve-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.serve-strip strong { color: var(--orange); font-weight: 700; }

/* ---------- Cards / Pillars ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid #e6e2db;
  border-top: 4px solid var(--orange);
  border-radius: 4px;
  padding: 32px 26px;
}
.pillar-card .num {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.08em;
}
.pillar-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  margin: 10px 0 12px;
  line-height: 1.2;
}
.pillar-card p {
  color: var(--steel);
  font-size: 15px;
  margin: 0 0 14px;
}
.pillar-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  background: rgba(255,94,20,0.1);
  padding: 4px 10px;
  border-radius: 3px;
}

/* ---------- Dark alt section ---------- */
.section-dark {
  background: var(--ink);
  color: var(--white);
}
.section-dark p.section-sub { color: rgba(255,255,255,0.7); }
.section-dark .section-label { color: var(--orange); }

/* ---------- Bottom CTA banner ---------- */
.cta-banner {
  background: var(--orange);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  margin: 0 0 18px;
}
.cta-banner p { font-size: 17px; margin: 0 0 30px; opacity: 0.95; }
.cta-banner .btn-outline { border-color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--orange-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 28px;
  border-top: 3px solid var(--orange);
  font-size: 14px;
}
.site-footer .foot-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.site-footer .logo { display: block; margin-bottom: 8px; }
.foot-links { display: flex; gap: 22px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.foot-links a { text-decoration: none; color: rgba(255,255,255,0.6); }
.foot-links a:hover { color: var(--orange); }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

/* ---------- Misc page hero (interior pages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-hero .section-label { color: var(--orange); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 50px);
  margin: 8px 0 0;
  line-height: 1.1;
}

/* ---------- Two column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ---------- Placeholder image block ---------- */
.img-block {
  background: repeating-linear-gradient(45deg, #e9e5dd, #e9e5dd 12px, #ded9cf 12px, #ded9cf 24px);
  border: 1px solid #d8d3c8;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}

/* ---------- Stat row ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.stat {
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}
.stat .val {
  font-family: var(--font-head);
  font-size: 32px;
  display: block;
  margin-bottom: 6px;
}
.stat .label { display: block; color: var(--steel); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.section-dark .stat .label { color: rgba(255,255,255,0.6); }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid #e2ded5;
  padding: 22px 0;
}
.faq-item h3 {
  font-family: var(--font-head);
  font-size: 16px;
  margin: 0 0 8px;
}
.faq-item p { color: var(--steel); margin: 0; font-size: 15px; }

/* ---------- Form ---------- */
.contact-form {
  display: grid;
  gap: 18px;
}
.contact-form label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--ink);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d8d3c8;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
}
.contact-form textarea { resize: vertical; min-height: 120px; }

.form-alert {
  background: rgba(237,28,36,0.08);
  border: 1px solid var(--orange);
  color: var(--orange-dark);
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-info-card {
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
  padding: 32px;
}
.contact-info-card .section-label { color: var(--orange); }
.contact-info-card h3 { font-family: var(--font-head); font-size: 20px; margin: 6px 0 20px; }
.contact-info-row { margin-bottom: 16px; }
.contact-info-row .k { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.55); }
.contact-info-row .v { font-size: 16px; font-weight: 600; }
