/* ============================================
   scrapcarhexham.co.uk — style.css
   Aesthetic: Industrial brutalist. Black/white/acid-yellow.
   ============================================ */

:root {
  --black: #0d0d0d;
  --white: #f5f2ec;
  --yellow: #e8ff00;
  --grey: #1a1a1a;
  --mid: #555;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise overlay */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid #2a2a2a;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--yellow);
}

.logo-sub {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--white);
  opacity: 0.6;
}

.header-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 8px 20px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.header-cta:hover {
  opacity: 0.85;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-bg-text {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(160px, 22vw, 320px);
  color: transparent;
  -webkit-text-stroke: 1px #222;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

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

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--white);
}

.hero-headline em {
  font-style: normal;
  color: var(--yellow);
  display: block;
}

.hero-body {
  font-size: 18px;
  font-weight: 300;
  color: #999;
  margin-bottom: 40px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  transition: all 0.2s;
  position: relative;
}

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

.btn-arrow {
  font-size: 18px;
  transition: transform 0.2s;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-dark {
  background: var(--white);
  color: var(--black);
}

.btn-dark:hover {
  background: var(--yellow);
}

.hero-email-display {
  margin-top: 20px;
  font-size: 13px;
  color: #444;
  letter-spacing: 0.05em;
}

/* Hero graphic */
.hero-graphic {
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.circle-outer {
  width: 220px;
  height: 220px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 20s linear infinite;
}

.circle-inner {
  width: 160px;
  height: 160px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 20s linear infinite reverse;
}

.circle-text {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--black);
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============ STRIP ============ */
.strip {
  background: var(--yellow);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.strip-inner {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--black);
  animation: marquee 18s linear infinite;
  width: max-content;
}

.strip-inner .dot {
  opacity: 0.4;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ HOW IT WORKS ============ */
.how {
  padding: 100px 24px;
  border-bottom: 1px solid #1e1e1e;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.03em;
  margin-bottom: 60px;
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.step {
  background: var(--grey);
  padding: 48px 36px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}

.step:hover {
  border-left-color: var(--yellow);
}

.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: #2a2a2a;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}

.step h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--white);
}

.step p {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
}

/* ============ CONTACT ============ */
.contact {
  padding: 100px 24px;
  background: var(--grey);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.95;
  margin-bottom: 24px;
}

.contact-left p {
  font-size: 16px;
  color: #888;
  line-height: 1.8;
}

.email-card {
  border: 1px solid #333;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.email-card-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #555;
}

.email-card-address {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  color: var(--yellow);
  text-decoration: none;
  letter-spacing: 0.03em;
  word-break: break-all;
}

.email-card-address:hover {
  text-decoration: underline;
}

/* ============ AREAS ============ */
.area {
  padding: 100px 24px;
  border-bottom: 1px solid #1e1e1e;
}

.area-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.area-tag {
  border: 1px solid #2e2e2e;
  padding: 8px 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #aaa;
  transition: all 0.2s;
  cursor: default;
}

.area-tag:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.area-note {
  font-size: 14px;
  color: #555;
}

/* ============ FOOTER ============ */
.footer {
  padding: 60px 24px;
  border-top: 1px solid #1e1e1e;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.1em;
  color: #333;
}

.footer-email a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
}

.footer-email a:hover {
  color: var(--yellow);
}

.footer-legal {
  font-size: 12px;
  color: #333;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-graphic { display: none; }
  .hero-bg-text { display: none; }
  .steps { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .how, .contact, .area { padding: 72px 20px; }
  .step { padding: 36px 24px; }
  .email-card { padding: 36px 24px; }
}

/* ============ QUOTE FORM ============ */
.contact-direct {
  margin-top: 28px;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.contact-direct a {
  color: var(--yellow);
  text-decoration: none;
  font-size: 15px;
}

.contact-direct a:hover {
  text-decoration: underline;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row--half > .field {
  flex: 1;
}

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

.field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 500;
}

.field-hint {
  display: block;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #444;
  text-transform: none;
  font-weight: 400;
  margin-top: 2px;
}

.field input,
.field textarea {
  background: #111;
  border: 1px solid #2a2a2a;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #383838;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--yellow);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.req {
  color: var(--yellow);
}

/* Radio group */
.radio-group {
  display: flex;
  gap: 4px;
  margin-top: 2px;
}

.radio-label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #2a2a2a;
  padding: 11px 8px;
  font-size: 14px;
  color: #aaa;
  cursor: pointer;
  transition: all 0.15s;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  background: #111;
}

.radio-label:hover {
  border-color: #444;
  color: var(--white);
}

.radio-label input[type="radio"] {
  width: auto;
  padding: 0;
  border: none;
  background: transparent;
  accent-color: var(--yellow);
  cursor: pointer;
}

.radio-label:has(input:checked) {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(232,255,0,0.05);
}

/* Submit button */
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow);
  color: var(--black);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  transition: all 0.2s;
  align-self: flex-start;
}

.btn-submit:hover {
  background: var(--white);
}

.btn-submit:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-submit .btn-arrow {
  font-size: 18px;
  transition: transform 0.2s;
}

/* Errors */
.form-errors {
  background: rgba(255,60,60,0.08);
  border: 1px solid rgba(255,60,60,0.3);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-errors p {
  font-size: 13px;
  color: #ff6b6b;
}

/* Success */
.form-success {
  border: 1px solid #2a2a2a;
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  color: var(--black);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.form-success h3 {
  font-size: 22px;
  font-weight: 500;
}

.form-success p {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
}

.form-success a {
  color: var(--yellow);
  text-decoration: none;
}

/* Responsive form */
@media (max-width: 600px) {
  .form-row--half {
    flex-direction: column;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ============ TRUST / PAYMENT STRIP ============ */
.trust {
  background: #111;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  padding: 48px 24px;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 40px;
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-icon {
  font-size: 22px;
  color: var(--yellow);
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: #222;
  flex-shrink: 0;
}

/* ============ HOURS BLOCK ============ */
.hours-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 28px 0 20px;
  padding: 16px 20px;
  border-left: 3px solid var(--yellow);
  background: #111;
}

.hours-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
}

.hours-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

/* ============ FAQ ============ */
.faq {
  padding: 100px 24px;
  border-bottom: 1px solid #1e1e1e;
}

.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.faq-item {
  background: #111;
  padding: 36px 32px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-left-color: var(--yellow);
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 14px;
  color: #777;
  line-height: 1.8;
  margin: 0;
}

/* ============ FOOTER ADDITIONS ============ */
.footer-hours {
  font-size: 13px;
  color: #444;
}

/* ============ RESPONSIVE ADDITIONS ============ */
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .trust-item { padding: 0; min-width: unset; }
  .trust-divider { display: none; }
}