/* ─────────────────────────────────────────────
   SEVEN MORRIS — Podcast Audio Engineer
   Retro garage / hot rod aesthetic
───────────────────────────────────────────── */

:root {
  --black:      #0e0e0e;
  --dark:       #1a1816;
  --mid:        #242018;
  --light:      #f2ead8;
  --cream:      #e8dfc8;
  --orange:     #d4520a;
  --orange-lt:  #e8641c;
  --tan:        #9c8a6a;
  --stripe:     #c04a08;

  --font-display:     'Bebas Neue', 'Arial Narrow', sans-serif;
--font-ui:          'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:        'Barlow', Arial, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  line-height: 1.65;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 999;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1;
}
h1 { font-size: clamp(5rem, 14vw, 11rem); color: var(--light); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--light); }
h3 { font-size: 1.8rem; color: var(--orange); margin-bottom: 0.5rem; }

p { font-size: 1.05rem; color: var(--cream); max-width: 62ch; }
p + p { margin-top: 1rem; }

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-lt); }

/* ── Layout ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section labels — stencil style ── */
.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--orange);
  padding: 0.25rem 0.6rem 0.2rem;
  margin-bottom: 1.25rem;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
}

/* ── Pinstripe divider ── */
.pinstripe {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange)    0px,
    var(--orange)    1px,
    transparent      1px,
    transparent      5px,
    var(--orange)    5px,
    var(--orange)    6px,
    transparent      6px,
    transparent      14px
  );
  opacity: 0.55;
}

/* ── Sections ── */
.section-dark  { background: var(--black); padding: 6rem 0; }
.section-mid   { background: var(--mid);   padding: 6rem 0; }
.section-light { background: var(--dark);  padding: 6rem 0; }

/* Halftone dot overlay on dark sections */
.section-dark::before,
.section-mid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 8px 8px;
  pointer-events: none;
}
.section-dark,
.section-mid { position: relative; }

.section-dark  h2 { color: var(--light); }
.section-mid   h2 { color: var(--light); }
.section-light h2 { color: var(--light); }

h2 { margin-bottom: 2.5rem; }

.section-intro {
  margin-bottom: 3rem;
  font-size: 1.1rem;
  max-width: 55ch;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  margin-top: 2rem;
  transition: background 0.15s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.btn-primary:hover { background: var(--orange-lt); color: var(--black); }
.btn-large { font-size: 1.2rem; padding: 1rem 2.8rem; }

/* ── Header ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 2px solid var(--orange);
}
.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.wordmark-name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  color: var(--light);
}
.wordmark-sub {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan);
}
nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
}
nav a:hover { color: var(--orange-lt); }
nav .nav-cta {
  background: var(--orange);
  color: var(--black);
  padding: 0.4rem 1.1rem;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 100%, 7px 100%);
}
nav .nav-cta:hover { background: var(--orange-lt); color: var(--black); }

/* ── Hero ── */
.hero {
  background: var(--dark);
  padding: 7rem 2rem 6rem;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 52ch;
  color: var(--cream);
  line-height: 1.7;
}
.hero-stripe {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: repeating-linear-gradient(
    180deg,
    var(--orange) 0px,
    var(--orange) 24px,
    transparent 24px,
    transparent 36px
  );
  opacity: 0.6;
}

/* ── Services — parts catalog grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--orange);
}
.service-card {
  background: var(--black);
  padding: 2.25rem 2rem;
  position: relative;
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; max-width: none; }

/* ── Clients ── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.client-group-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--orange);
}
.client-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.client-list li {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  padding-left: 1rem;
  border-left: 2px solid var(--mid);
  transition: border-color 0.15s, color 0.15s;
}
.client-list li:hover {
  border-color: var(--orange);
  color: var(--light);
}
.client-list li a {
  color: inherit;
  text-decoration: none;
}
.client-list li a:hover {
  color: var(--light);
}
.client-list--archived li {
  opacity: 0.55;
}
.client-list--archived li:hover {
  opacity: 1;
}
.credit-note {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  opacity: 0.8;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 4rem;
  align-items: start;
}
.about-body p { font-size: 1.05rem; }
.spec-block {
  border-top: 1px solid #3a3530;
  padding: 1rem 0;
}
.spec-block:last-child { border-bottom: 1px solid #3a3530; }
.spec-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.25rem;
}
.spec-value {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 0.05em;
}

/* ── Contact ── */
.contact-inner { text-align: center; }
.contact-inner p { margin: 0 auto; }
.contact-inner .btn-primary { margin-top: 2.5rem; }

.contact-form {
  margin: 2.5rem auto 0;
  max-width: 520px;
  text-align: left;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--mid);
  border: 1px solid #3a3226;
  color: var(--light);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.15s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--tan); opacity: 0.6; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { margin-top: 0.5rem; }
.contact-form .btn-primary:disabled { opacity: 0.6; cursor: default; }

.form-success { margin-top: 2.5rem; }
.form-success-msg {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  max-width: none;
}

/* ── Footer ── */
footer {
  background: var(--black);
  border-top: 1px solid #2a2520;
  padding: 1.5rem 2rem;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--tan);
}

/* ── Responsive ── */
@media (max-width: 720px) {
  nav a:not(.nav-cta) { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .hero-stripe { display: none; }
  h1 { font-size: clamp(4rem, 18vw, 6rem); }
  .footer-inner { flex-direction: column; gap: 0.4rem; text-align: center; }
}
