/* ─────────────────────────────────────────────
   ShoredWeb | styles.css
   Sections:
     1. Reset & Base
     2. Nav
     3. Hero
     4. Trust Strip
     5. Sections / Layout
     6. Steps
     7. Pricing
     8. Trades
     9. CTA
    10. Footer
    11. Responsive (1024px)
    12. Responsive (768px)
    13. Responsive (480px)
    14. Responsive (360px)
───────────────────────────────────────────── */

/* ══ 1. Reset & Base ══════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pitch:        #0e0f0d;
  --surface:      #111310;
  --border:       #1c1e1a;
  --border2:      #2a2e25;
  --white:        #eceef2;
  --mist:         #b0b8c4;
  --flame:        #f27235;
  --flame-dim:    rgba(242,114,53,.1);
  --flame-border: rgba(242,114,53,.3);
  --nav-h:        57px;
}

html, body {
  background: var(--pitch);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ══ 2. Nav ═══════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  background: rgba(14,15,13,.96);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .8s ease;
}
nav.show { opacity: 1; }

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em;
  color: var(--white); text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--flame); font-weight: 300; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: .1em;
  color: var(--mist); text-decoration: none;
  text-transform: uppercase; transition: color .15s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  background: var(--flame); color: var(--pitch);
  padding: 9px 22px; border-radius: 2px;
  text-decoration: none; transition: background .2s, color .2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--white); color: var(--pitch); }

/* Hamburger button (hidden on desktop) */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; margin: -6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer (hidden on desktop) */
.nav-drawer {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: rgba(14,15,13,.98);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px 28px;
  flex-direction: column;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.nav-drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-drawer ul { list-style: none; }
.nav-drawer ul li a {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; letter-spacing: .12em;
  color: var(--mist); text-decoration: none;
  text-transform: uppercase;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.nav-drawer ul li a:hover { color: var(--white); }
.nav-drawer .nav-cta {
  display: block; text-align: center;
  margin-top: 20px; padding: 14px;
  font-size: 15px;
}

/* ══ 3. Hero ══════════════════════════════════ */
#hero {
  position: relative;
  width: 100%; height: 680px;
  margin-top: var(--nav-h);
  background: var(--pitch);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

#hero-video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(3px);
  transform: scale(1.04); /* prevents blur edge bleed */
}

#hero-dim {
  position: absolute; inset: 0;
  background: rgba(14,15,13,.55);
  z-index: 1;
}

#brand-overlay {
  position: relative; z-index: 10;
  padding: 0 48px;
  max-width: 960px;
  width: 100%;
  text-align: center;
}

.hero-logo {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}
.hero-logo span { color: var(--flame); font-weight: 300; }

.hero-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(11px, 1.4vw, 15px);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mist);
  line-height: 1.9;
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  background: var(--flame); color: var(--pitch);
  padding: 12px 28px; border-radius: 2px;
  text-decoration: none; transition: background .2s, color .2s;
}
.hero-cta:hover { background: var(--white); color: var(--pitch); }

#hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; transition: opacity .8s ease; z-index: 10;
}
#hero-scroll.show { opacity: 1; }

.scroll-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: .2em;
  color: var(--mist); text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--flame), transparent);
  animation: spulse 1.8s ease-in-out infinite;
}
@keyframes spulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ══ 4. Trust Strip ═══════════════════════════ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 48px;
}
.trust-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: center; gap: 36px; flex-wrap: wrap;
}
.trust-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: .12em;
  color: var(--mist); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.trust-item::before {
  content: ''; width: 4px; height: 4px;
  background: var(--flame); border-radius: 50%; opacity: .7;
  flex-shrink: 0;
}

/* ══ 5. Value Band ════════════════════════════ */
.value-band {
  padding: 72px 48px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.value-line {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--flame);
  line-height: 1.2;
  margin-bottom: 16px;
}

.value-line--muted {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 18px);
  text-transform: none;
  letter-spacing: 0;
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ══ 6. Sections / Layout ═════════════════════ */
.section { padding: 96px 48px; border-bottom: 1px solid var(--border); }
.site { max-width: 960px; margin: 0 auto; }

.sec-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: .18em;
  color: var(--flame); text-transform: uppercase;
  font-weight: 300; margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.sec-eyebrow::before {
  content: ''; width: 20px; height: 2px;
  background: var(--flame); flex-shrink: 0;
}
.sec-title {
  font-family: 'Oswald', sans-serif;
  font-size: 42px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .02em;
  color: var(--white); line-height: 1; margin-bottom: 48px;
}

/* ══ 6. Steps ═════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.step { background: var(--pitch); padding: 32px 28px; }
.step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: .12em;
  color: var(--flame); margin-bottom: 14px;
}
.step-bar {
  width: 28px; height: 3px;
  background: var(--flame); border-radius: 1px;
  margin-bottom: 14px; opacity: .5;
}
.step-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--white); margin-bottom: 10px;
}
.step-body {
  font-size: 14px; font-weight: 300;
  color: var(--mist); line-height: 1.7;
}

/* ══ 7. Past Work ═════════════════════════════ */
.work-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.work-card {
  border: 1px solid var(--border2);
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
}

.work-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--border);
  text-decoration: none;
}

.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(100%) blur(1px) brightness(0.7);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.work-img-wrap:hover .work-img {
  filter: grayscale(100%) brightness(0.5);
  transform: scale(1.03);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(242,114,53,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
}

.work-img-wrap:hover .work-overlay {
  opacity: 1;
  background: rgba(242,114,53,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.work-meta {
  padding: 20px 24px 24px;
}

.work-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.work-desc {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 14px;
}

.work-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--flame);
  text-decoration: none;
  letter-spacing: 0.06em;
}

.work-link:hover { text-decoration: underline; }

.work-card--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: dashed;
  border-color: var(--border2);
  min-height: 200px;
}

.work-soon-inner { text-align: center; }

.work-soon-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 6px;
}


/* ══ 8. Pricing ═══════════════════════════════ */

/* Rate header */
.p-rate-row {
  display: flex; align-items: center; gap: 32px;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 24px 32px;
  margin-bottom: 16px;
  background: var(--surface);
}
.p-rate {
  display: flex; align-items: baseline; gap: 6px;
  flex-shrink: 0;
}
.p-rate-num {
  font-family: 'Oswald', sans-serif;
  font-size: 56px; font-weight: 700;
  color: var(--flame); line-height: 1;
}
.p-rate-num sup {
  font-size: 24px; vertical-align: top;
  margin-top: 10px; display: inline-block;
}
.p-rate-slash {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px; color: var(--mist);
  letter-spacing: .06em;
}
.p-rate-sub {
  font-size: 14px; font-weight: 300;
  color: var(--mist); line-height: 1.6;
  border-left: 1px solid var(--border2);
  padding-left: 32px;
}

/* Phase cards */
.pricing-phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.phase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 32px 28px;
}
.phase-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: .14em;
  color: var(--flame); text-transform: uppercase;
  margin-bottom: 14px;
}
.phase-bar {
  width: 28px; height: 3px;
  background: var(--flame); border-radius: 1px;
  margin-bottom: 14px; opacity: .5;
}
.phase-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--white); margin-bottom: 6px;
}
.phase-est {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; color: var(--mist);
  letter-spacing: .06em; margin-bottom: 24px;
}

/* Feature list, shared */
.p-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 12px;
}
.p-features li {
  font-size: 14px; font-weight: 300;
  color: var(--mist); display: flex;
  align-items: baseline; gap: 12px;
}
.p-features li::before {
  content: '•'; color: var(--flame);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; flex-shrink: 0;
}

/* Client provides row */
.p-client-row {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 18px 32px;
  margin-bottom: 16px;
  background: var(--surface);
}
.p-client-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: .16em;
  color: var(--flame); text-transform: uppercase;
  flex-shrink: 0;
}
.p-client-items {
  display: flex; gap: 20px; flex-wrap: wrap; flex: 1;
}
.p-client-items span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: .06em;
  color: var(--mist);
  display: flex; align-items: center; gap: 8px;
}
.p-client-items span::before {
  content: ''; width: 4px; height: 4px;
  background: var(--border2); border-radius: 50%;
  flex-shrink: 0;
}
.p-client-upsell {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: var(--mist);
  letter-spacing: .04em; white-space: nowrap;
}
.p-client-upsell a {
  color: var(--flame); text-decoration: none;
}
.p-client-upsell a:hover { text-decoration: underline; }

/* Footer row: total estimate + CTA */
.p-footer-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 20px 32px;
  background: var(--surface);
}
.p-timeline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: .08em;
  color: var(--mist); text-transform: uppercase;
}
.p-btn {
  display: inline-block; text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 12px 28px; border-radius: 2px;
  text-decoration: none; transition: background .2s, color .2s;
  white-space: nowrap; flex-shrink: 0;
}
.p-btn.pri { background: var(--flame); color: var(--pitch); }
.p-btn.pri:hover { background: var(--white); color: var(--pitch); }

/* ══ 8. Trades ════════════════════════════════ */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.trade {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px; padding: 14px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--mist); transition: all .15s;
  display: flex; align-items: center; gap: 10px;
  cursor: default;
}
.trade::before {
  content: ''; width: 3px; height: 14px;
  background: var(--flame); border-radius: 1px;
  flex-shrink: 0; opacity: .4; transition: opacity .15s;
}
.trade:hover {
  background: var(--flame-dim);
  border-color: var(--flame-border);
  color: var(--white);
}
.trade:hover::before { opacity: 1; }

/* ══ 9. CTA ═══════════════════════════════════ */
.cta-section { padding: 112px 48px; text-align: center; }
.cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: 56px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .02em;
  color: var(--white); line-height: .95; margin-bottom: 20px;
}
.cta-title span { color: var(--flame); font-weight: 300; }
.cta-sub {
  font-size: 15px; font-weight: 300;
  color: var(--mist); max-width: 420px;
  margin: 0 auto 36px; line-height: 1.75;
}
.cta-email-btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  border-radius: 2px;
  text-decoration: none;
  background: var(--flame); color: var(--pitch);
  transition: background .2s, color .2s;
}
.cta-email-btn:hover { background: var(--white); color: var(--pitch); }

/* ══ 10. Footer ════════════════════════════════ */
footer {
  padding: 28px 48px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.foot-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 17px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em;
  color: var(--white); text-decoration: none;
}
.foot-logo span { color: var(--flame); font-weight: 300; }
.foot-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; color: var(--mist);
  letter-spacing: .06em; opacity: .5;
}

/* ══ 11. Contact Page ═════════════════════════ */
.contact-page-wrap {
  padding: 80px 48px 112px;
  min-height: calc(100vh - var(--nav-h) - 70px);
}

.contact-header {
  margin-bottom: 48px;
}

.contact-title {
  font-family: 'Oswald', sans-serif;
  font-size: 52px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .02em;
  color: var(--white); line-height: 1;
  margin-bottom: 16px;
}

.contact-intro {
  font-size: 15px; font-weight: 300;
  color: var(--mist); max-width: 480px;
  line-height: 1.75;
}

/* Success banner */
.contact-success {
  display: none;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--flame-border);
  background: var(--flame-dim);
  border-radius: 3px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.contact-success.show { display: flex; }

.contact-success-icon {
  font-size: 20px;
  color: var(--flame);
  font-family: 'IBM Plex Mono', monospace;
  flex-shrink: 0;
}

.contact-success-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--white); margin-bottom: 4px;
}

.contact-success-body {
  font-size: 13px; color: var(--mist);
  font-weight: 300;
}

/* Form layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row { display: flex; flex-direction: column; gap: 0; }

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mist);
}

.form-req { color: var(--flame); }

.form-opt {
  color: var(--border2);
  font-size: 9px;
}

.form-input {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color .15s;
  width: 100%;
}

.form-input::placeholder { color: rgba(176, 184, 196, 0.35); }

.form-input:focus {
  border-color: var(--flame-border);
  background: rgba(17,19,16,.9);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--mist);
  pointer-events: none;
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 36px;
}
.form-select:required:invalid {
  color: rgba(176, 184, 196, 0.35);
}
.form-select option {
  background: var(--surface);
  color: var(--white);
}

.form-footer {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}

.form-submit {
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  background: var(--flame); color: var(--pitch);
  padding: 13px 28px; border-radius: 2px;
  border: none; cursor: pointer;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.form-submit:hover { background: var(--white); color: var(--pitch); }

.form-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: .1em;
  color: var(--mist); opacity: .6;
  text-transform: uppercase;
}

.form-error {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: .08em;
  color: #e05a3a;
  min-height: 14px;
  display: block;
}

.form-input--error {
  border-color: rgba(224, 90, 58, 0.6) !important;
}


/* ══════════════════════════════════════════════
   11. Responsive, Large tablet (1024px)
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav                  { padding: 18px 32px; }
  .section             { padding: 80px 32px; }
  .trust-strip         { padding: 14px 32px; }
  .cta-section         { padding: 96px 32px; }
  footer               { padding: 24px 32px; }
  .trades-grid         { grid-template-columns: repeat(3, 1fr); }
  .contact-page-wrap   { padding: 64px 32px 96px; }
}

/* ══════════════════════════════════════════════
   12. Responsive, Tablet (768px)
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 14px 24px; }

  /* Swap desktop nav for hamburger */
  .nav-links     { display: none; }
  .nav-cta       { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer    { display: flex; }

  #hero { height: 580px; }
  #brand-overlay { padding: 0 32px; }

  .section      { padding: 64px 24px; }
  .trust-strip  { padding: 14px 24px; }
  .trust-inner  { gap: 20px; }
  .cta-section  { padding: 80px 24px; }
  footer        { padding: 20px 24px; }

  .sec-title    { font-size: 34px; margin-bottom: 36px; }

  .steps          { grid-template-columns: 1fr; }
  .pricing-phases { grid-template-columns: 1fr; }
  .p-rate-row     { flex-direction: column; align-items: flex-start; gap: 16px; }
  .p-rate-sub     { border-left: none; padding-left: 0; border-top: 1px solid var(--border2); padding-top: 16px; }
  .p-client-row   { flex-direction: column; align-items: flex-start; gap: 12px; }
  .p-client-upsell { white-space: normal; }
  .p-footer-row   { flex-direction: column; align-items: flex-start; }
  .trades-grid  { grid-template-columns: repeat(2, 1fr); gap: 5px; }

  .cta-title           { font-size: 44px; }

  .contact-page-wrap   { padding: 52px 24px 80px; }
  .contact-title       { font-size: 42px; }
  .form-row--half      { grid-template-columns: 1fr; gap: 20px; }
}

/* ══════════════════════════════════════════════
   13. Responsive, Mobile (480px)
══════════════════════════════════════════════ */
@media (max-width: 480px) {
  nav { padding: 12px 16px; }

  #hero { height: 480px; }
  #brand-overlay { padding: 0 20px; }
  .hero-tagline { letter-spacing: .1em; }

  .section      { padding: 52px 16px; }
  .trust-strip  { padding: 12px 16px; }
  .trust-inner  { gap: 12px; }
  .trust-item   { font-size: 9px; letter-spacing: .08em; }

  .cta-section         { padding: 64px 16px; }
  .contact-page-wrap   { padding: 40px 16px 64px; }
  .contact-title       { font-size: 34px; }
  .form-footer         { flex-direction: column; align-items: flex-start; gap: 14px; }
  .form-submit         { width: 100%; text-align: center; }
  footer {
    padding: 20px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sec-title    { font-size: 28px; margin-bottom: 28px; }

  .step         { padding: 24px 20px; }
  .phase-card   { padding: 24px 20px; }
  .p-rate-num   { font-size: 48px; }
  .p-rate-row   { padding: 20px; }
  .p-footer-row { padding: 16px 20px; }

  .trades-grid  { gap: 4px; }
  .trade        { padding: 12px 12px; font-size: 12px; }

  .cta-title    { font-size: 34px; }
  .cta-sub      { font-size: 14px; }
  .cta-email-btn { padding: 14px 28px; font-size: 14px; }
}

/* ══════════════════════════════════════════════
   14. Responsive, Small phones (360px)
══════════════════════════════════════════════ */
@media (max-width: 360px) {
  #hero        { height: 420px; }
  .sec-title   { font-size: 24px; }
  .cta-title   { font-size: 28px; }
  .p-rate-num  { font-size: 42px; }
  .trades-grid { grid-template-columns: 1fr 1fr; }
  .trade       { font-size: 11px; padding: 10px 10px; }
}

/* ══ 15. 404 Page ═════════════════════════════ */
.not-found-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 48px; text-align: center;
}
.not-found-code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: .2em;
  color: var(--flame); text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.not-found-code::before {
  content: ''; width: 20px; height: 2px;
  background: var(--flame); flex-shrink: 0;
}
.not-found-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(96px, 18vw, 180px);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--white); line-height: 1; margin-bottom: 16px;
}
.not-found-num span { color: var(--flame); font-weight: 300; }
.not-found-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(10px, 1.2vw, 13px);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--mist); margin-bottom: 40px;
}
.back-btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  background: var(--flame); color: var(--pitch);
  padding: 12px 28px; border-radius: 2px;
  text-decoration: none; transition: background .2s, color .2s;
}
.back-btn:hover { background: var(--white); color: var(--pitch); }

