/* ===== Ground Game — styles ===== */
:root {
  --ink: #0d1f3c;          /* deep navy */
  --ink-soft: #1c3a64;
  --accent: #e8472b;       /* energetic red-orange */
  --accent-dark: #c5341c;
  --paper: #ffffff;
  --paper-alt: #f4f6fa;
  --line: #e2e8f0;
  --text: #1a2433;
  --muted: #5b6678;
  --radius: 12px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== Header / nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.brand-name { font-size: 18px; letter-spacing: -0.2px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--ink); font-weight: 500; }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 8px;
}
.nav-cta:hover { background: var(--accent-dark); text-decoration: none; }

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(232, 71, 43, 0.12), transparent 60%),
    linear-gradient(180deg, #0d1f3c 0%, #14294b 100%);
  color: #fff;
  padding: 96px 0 104px;
}
.hero-inner { max-width: 760px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 14px;
}
.eyebrow.center { text-align: center; }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
  font-weight: 800;
}
.lede {
  font-size: 1.2rem;
  color: #cdd7e8;
  max-width: 620px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.05s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--paper-alt); }
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.7px;
  color: var(--ink);
  margin: 0 0 12px;
  font-weight: 800;
}
.section-title.center { text-align: center; margin-bottom: 48px; }

/* ===== Service cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  box-shadow: 0 12px 30px rgba(13, 31, 60, 0.10);
  transform: translateY(-3px);
  border-color: #cdd7e8;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  color: var(--ink);
  font-weight: 700;
}
.card h3::before {
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--accent);
  margin-bottom: 14px;
}
.card p { margin: 0; color: var(--muted); }

/* ===== About ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.about-body p { margin: 0 0 18px; font-size: 1.08rem; color: #34404f; }
.about-body p:last-child { margin-bottom: 0; }

/* ===== Contact ===== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-copy p { color: var(--muted); font-size: 1.08rem; }
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(13, 31, 60, 0.06);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.optional { font-weight: 400; color: var(--muted); }
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 71, 43, 0.15);
}
.field textarea { resize: vertical; }
.contact-form .btn { width: 100%; }
.contact-form .btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* Honeypot — visually hidden, off-screen */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 14px 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 1.2em;
}
.form-status.success { color: #1a7d3c; }
.form-status.error { color: var(--accent-dark); }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: #c7d2e3;
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
}
.site-footer .brand-name { color: #fff; }
.site-footer a { color: #fff; }
.footer-copy { color: #8ea0bd; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 72px 0 80px; }
  .section { padding: 60px 0; }
}
