/* ═══════════════════════════════════════════
   SPE DEVELOPMENT LLC — style.css
   Shared stylesheet for all pages
═══════════════════════════════════════════ */

:root {
  --navy:  #0d1b2a;
  --steel: #1b2e44;
  --rust:  #c0392b;
  --amber: #e67e22;
  --slate: #7f8c8d;
  --light: #f4f1ec;
  --white: #fafaf8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--light);
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── HEADER ─────────────────────────────── */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(8px);
  z-index: 100;
  gap: 1rem;
}

.logo-block .company {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--white);
  white-space: nowrap;
}
.logo-block .tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-transform: uppercase;
}

nav { display: flex; align-items: center; }
nav a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.2s;
  white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--white); }

.nav-cta {
  background: var(--rust);
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  white-space: nowrap;
  transition: background 0.2s;
  margin-left: 2rem;
  flex-shrink: 0;
}
.nav-cta:hover { background: #a93226; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.1rem;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--steel);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── BUTTONS ─────────────────────────────── */
.btn-primary {
  background: var(--rust);
  color: var(--white);
  padding: 0.85rem 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #a93226; transform: translateY(-1px); }

.btn-secondary {
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--amber);
  padding-bottom: 2px;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-secondary:hover { opacity: 0.7; }

/* ── SECTION LABEL ───────────────────────── */
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.67rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--rust);
  flex-shrink: 0;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

/* ── GRID LINE TEXTURE ───────────────────── */
.hero-grid-line {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(192,57,43,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,57,43,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ── HOME HERO ───────────────────────────── */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -10%; top: 50%;
  transform: translateY(-50%);
  width: 55%; height: 120%;
  background: var(--steel);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.5;
}

.hero-content { position: relative; z-index: 2; max-width: 580px; }

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--rust);
  flex-shrink: 0;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 2rem;
}
h1 span { color: var(--amber); display: block; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(244,241,236,0.78);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero-cta-group { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }

.hero-stat-block {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 2.5rem;
  padding-left: 4rem;
}
.stat { text-align: right; border-right: 2px solid var(--rust); padding-right: 1.5rem; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; color: var(--white); line-height: 1;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--slate); margin-top: 0.2rem;
}

/* ── PAGE HERO (inner pages) ─────────────── */
.page-hero {
  padding: 5rem 4rem 4rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--steel);
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }

/* ── SHARED SECTION PADDING ──────────────── */
section { padding: 5rem 4rem; }

/* ── WHAT YOU GET / THREE COL ────────────── */
.what-you-get { background: var(--steel); }

.three-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px; margin-top: 3rem;
  background: rgba(255,255,255,0.05);
}
.col-card {
  background: var(--steel);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.col-card:hover { background: #243a54; }
.col-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; color: var(--rust);
  margin-bottom: 1rem; line-height: 1;
}
.col-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem; letter-spacing: 0.06em;
  color: var(--white); margin-bottom: 0.75rem;
}
.col-card p { font-size: 0.95rem; color: rgba(244,241,236,0.72); line-height: 1.7; }
.cta-strip { margin-top: 3rem; }

/* ── SERVICES GRID ───────────────────────── */
.services-preview { background: var(--navy); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px; margin-top: 3rem;
  background: rgba(255,255,255,0.05);
}
.service-card {
  background: var(--navy);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--rust);
  transition: height 0.3s ease;
}
.service-card:hover { background: var(--steel); }
.service-card:hover::before { height: 100%; }

.service-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: rgba(255,255,255,0.05);
  line-height: 1; margin-bottom: 0.25rem;
}
.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem; letter-spacing: 0.05em;
  color: var(--white); margin-bottom: 0.75rem;
}
.service-desc { font-size: 0.9rem; color: rgba(244,241,236,0.65); line-height: 1.65; }

/* ── PRICING STRIP ───────────────────────── */
.pricing-strip {
  background: var(--steel);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center;
}
.pricing-strip p {
  color: rgba(244,241,236,0.72);
  font-size: 1rem; margin-top: 1rem; max-width: 500px;
}
.pricing-strip-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.pricing-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.08em;
  color: var(--slate); text-align: right; line-height: 1.8;
}

/* ── SERVICES FULL PAGE ──────────────────── */
.services-full { background: var(--navy); }
.services-intro {
  color: rgba(244,241,236,0.75);
  font-size: 1.05rem; max-width: 680px;
  margin-top: 1rem; margin-bottom: 3.5rem;
  font-style: italic;
}

.service-full-list { display: flex; flex-direction: column; gap: 2px; }
.service-full-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  background: var(--steel);
  transition: background 0.2s;
}
.service-full-card:hover { background: #243a54; }

.sfcard-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: rgba(255,255,255,0.08);
  padding: 2rem 1.5rem;
  display: flex; align-items: flex-start;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.sfcard-body { padding: 2rem 2.5rem; }
.sfcard-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 0.05em;
  color: var(--white); margin-bottom: 0.75rem;
}
.sfcard-body p {
  color: rgba(244,241,236,0.72);
  font-size: 0.95rem; line-height: 1.7;
  margin-bottom: 1.25rem;
}
.sfcard-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sfcard-list li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.06em;
  color: var(--amber);
  background: rgba(230,126,34,0.08);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(230,126,34,0.2);
}

/* ── PROCESS PAGE ────────────────────────── */
.process-section { background: var(--navy); }

.process-steps {
  display: flex; flex-direction: column;
  gap: 2px; margin-top: 3rem;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  background: var(--steel);
  transition: background 0.2s;
}
.process-step:hover { background: #243a54; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; color: var(--rust);
  padding: 2rem 1.5rem;
  display: flex; align-items: flex-start;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.05);
  line-height: 1;
}
.step-body { padding: 2rem 2.5rem; }
.step-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 0.05em;
  color: var(--white); margin-bottom: 0.75rem;
}
.step-body p { color: rgba(244,241,236,0.75); font-size: 0.97rem; line-height: 1.7; }
.step-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.06em;
  color: var(--amber); margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── FAQ ─────────────────────────────────── */
.faq-section { background: var(--steel); }
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 3rem; }
.faq-item {
  background: var(--navy);
  padding: 2rem 2.5rem;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.faq-item:hover { border-left-color: var(--rust); background: #0f2035; }
.faq-q {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem; letter-spacing: 0.05em;
  color: var(--white); margin-bottom: 0.75rem;
}
.faq-a { font-size: 0.95rem; color: rgba(244,241,236,0.72); line-height: 1.7; }

/* ── ABOUT FULL PAGE ─────────────────────── */
.about-full { background: var(--navy); }
.about-full-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem; align-items: start;
}

.photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--steel);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
}
.photo-placeholder-inner { text-align: center; }
.ph-top {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--slate);
  margin-bottom: 0.5rem;
}
.ph-name {
  display: block;
  font-family: 'Source Serif 4', serif;
  font-size: 1rem; color: rgba(255,255,255,0.35);
  font-style: italic;
}
.about-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; margin-bottom: 2rem; }

.about-credentials { margin-top: 0.5rem; }
.cred-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rust);
  margin-bottom: 1rem;
}
.credential-list { list-style: none; }
.credential-list li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem; letter-spacing: 0.04em;
  color: rgba(244,241,236,0.7);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 0.75rem;
}
.credential-list li::before { content: '▸'; color: var(--rust); font-size: 0.55rem; flex-shrink: 0; }

.about-text-col h2 { margin-bottom: 2rem; }

.about-body p {
  color: rgba(244,241,236,0.82);
  font-size: 1.05rem; line-height: 1.8;
  margin-bottom: 1.5rem;
}

blockquote {
  border-left: 3px solid var(--rust);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  background: rgba(192,57,43,0.06);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(244,241,236,0.85);
  line-height: 1.7;
}

.about-cta-group { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; margin-top: 2.5rem; }

/* ── WHY WORKS ───────────────────────────── */
.why-works { background: var(--steel); }

/* ── CONTACT FULL PAGE ───────────────────── */
.contact-full { background: var(--navy); }
.contact-full-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}

.contact-desc {
  color: rgba(244,241,236,0.75);
  font-size: 1.05rem; line-height: 1.75;
  margin-top: 1.5rem; font-style: italic;
}

.contact-methods { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.contact-method {}
.cm-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rust);
  margin-bottom: 0.3rem;
}
.cm-value {
  font-size: 1.1rem; color: var(--white);
  text-decoration: none; display: block;
  transition: color 0.2s;
}
a.cm-value:hover { color: var(--amber); }
.cm-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.06em;
  color: var(--slate); margin-top: 0.3rem;
}

.what-to-include {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: var(--steel);
}
.wit-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 1rem;
}
.what-to-include ul { list-style: none; }
.what-to-include li {
  font-size: 0.92rem;
  color: rgba(244,241,236,0.7);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 0.75rem;
}
.what-to-include li::before { content: '–'; color: var(--rust); }

.contact-form-col {}
.form-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rust);
  margin-bottom: 1.5rem; display: block;
}

form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--slate);
}
form input, form textarea, form select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Source Serif 4', serif;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  width: 100%; outline: none;
  transition: border-color 0.2s;
}
form input::placeholder, form textarea::placeholder { color: var(--slate); font-style: italic; }
form input:focus, form textarea:focus { border-color: var(--amber); }
form textarea { min-height: 140px; resize: vertical; }
form button { align-self: flex-start; }
.form-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.64rem; letter-spacing: 0.06em;
  color: var(--slate); line-height: 1.7; margin-top: 0.5rem;
}

/* ── FOOTER ──────────────────────────────── */
footer {
  background: #080f17;
  padding: 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-company {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}
.footer-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.2);
  margin-top: 0.2rem;
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }
.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; align-items: flex-end; }
.footer-contact a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3); text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--amber); }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 960px) {
  header { padding: 1.2rem 2rem; }
  nav, .nav-cta { display: none; }
  .mobile-menu-btn { display: block; }

  .hero { grid-template-columns: 1fr; padding: 4rem 2rem; min-height: auto; }
  .hero::before { display: none; }
  .hero-stat-block { flex-direction: row; flex-wrap: wrap; padding-left: 0; align-items: flex-start; gap: 1.5rem; }
  .stat { text-align: left; border-right: none; border-left: 2px solid var(--rust); padding-right: 0; padding-left: 1rem; }

  .page-hero { padding: 3.5rem 2rem 2.5rem; }
  section { padding: 3.5rem 2rem; }

  .about-full-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .photo-placeholder { max-width: 280px; }

  .contact-full-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .pricing-strip-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-strip-cta { align-items: flex-start; }
  .pricing-note { text-align: left; }

  .service-full-card { grid-template-columns: 60px 1fr; }
  .process-step { grid-template-columns: 60px 1fr; }

  footer { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; }
  .footer-contact { align-items: flex-start; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  .three-col { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-full-card, .process-step { grid-template-columns: 1fr; }
  .sfcard-num, .step-num { display: none; }
}
