/* ===== Audley UV Flatbeds — shared styles ===== */
:root {
  --black: #0a0a0a;
  --near-black: #141414;
  --panel: #1b1b1b;
  --red: #e31e24;
  --red-dark: #b3181d;
  --white: #f5f5f5;
  --gray: #a3a3a3;
  --border: #2a2a2a;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header / Nav ---- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 34px; width: auto; }

nav.main-nav { display: flex; align-items: center; gap: 28px; }

nav.main-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--white);
  border-color: var(--red);
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn:hover { background: var(--red-dark); }
.btn:active { transform: translateY(1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--red);
  padding: 10px 24px;
}
.btn-outline:hover { background: var(--red); }

nav.main-nav .btn { padding: 10px 20px; font-size: 13px; }

/* ---- Hero ---- */
.hero {
  padding: 90px 24px 70px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(227, 30, 36, 0.18), transparent 60%),
    var(--black);
  border-bottom: 1px solid var(--border);
}

.hero img.hero-logo {
  height: 90px;
  width: auto;
  margin: 0 auto 28px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

.hero h1 span { color: var(--red); }

.hero p.lead {
  color: var(--gray);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Sections ---- */
section { padding: 64px 24px; }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 44px; }
.section-head h2 { font-size: 30px; margin: 0 0 12px; }
.section-head h2 span { color: var(--red); }
.section-head p { color: var(--gray); font-size: 16px; margin: 0; }

/* ---- Video grid ---- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.video-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-card .embed-wrap {
  background: #000;
  display: flex;
  justify-content: center;
  min-height: 300px;
}

.video-card .embed-wrap iframe,
.video-card .embed-wrap blockquote { width: 100% !important; }

.video-card .caption { padding: 18px 20px; }
.video-card .caption h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--white);
}
.video-card .caption p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* ---- Feature strip ---- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-strip .feature {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 22px;
  background: var(--near-black);
}

.feature-strip .feature .tag {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.feature-strip .feature h3 { margin: 0 0 8px; font-size: 18px; }
.feature-strip .feature p { margin: 0; color: var(--gray); font-size: 14px; }

/* ---- Printer / spec page ---- */
.printer-block {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
  border-bottom: 1px solid var(--border);
}

.printer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}

@media (max-width: 860px) {
  .printer-top { grid-template-columns: 1fr; }
}

.model-tag {
  display: inline-block;
  background: rgba(227, 30, 36, 0.15);
  color: var(--red);
  border: 1px solid var(--red-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.printer-top h2 { font-size: 32px; margin: 0 0 16px; }
.printer-top p.desc { color: var(--gray); font-size: 16px; margin-bottom: 26px; }

.printer-media {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speed-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.speed-pill {
  background: var(--near-black);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--gray);
}
.speed-pill strong { color: var(--white); }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table tr:nth-child(even) { background: var(--near-black); }

.spec-table td {
  padding: 14px 20px;
  font-size: 14px;
  vertical-align: top;
}

.spec-table td:first-child {
  color: var(--gray);
  font-weight: 600;
  width: 38%;
}

.spec-note {
  text-align: center;
  color: var(--gray);
  font-size: 13px;
  margin-top: 18px;
}

/* ---- Brochure card ---- */
.brochure-card {
  background: var(--near-black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.brochure-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  color: var(--white);
}

.brochure-card .info h3 { margin: 0 0 4px; font-size: 16px; }
.brochure-card .info p { margin: 0; color: var(--gray); font-size: 13px; }

.brochure-card .info-main { display: flex; align-items: center; gap: 16px; }

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  text-align: center;
  padding: 56px 24px;
}
.cta-band h2 { font-size: 28px; margin: 0 0 12px; color: var(--white); }
.cta-band p { margin: 0 0 26px; color: rgba(255,255,255,0.85); }
.cta-band .btn { background: var(--black); }
.cta-band .btn:hover { background: #000; opacity: 0.85; }

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info h2 { font-size: 26px; margin-top: 0; }
.contact-info p { color: var(--gray); }

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 22px;
}
.contact-detail .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); margin-top: 8px; flex-shrink: 0;
}
.contact-detail h4 { margin: 0 0 4px; font-size: 15px; }
.contact-detail p, .contact-detail a { margin: 0; color: var(--gray); font-size: 14px; }
.contact-detail a:hover { color: var(--red); }

form.quote-form {
  background: var(--near-black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 6px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
}

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

form.quote-form button { width: 100%; margin-top: 4px; }

.form-note { font-size: 12px; color: var(--gray); margin-top: 12px; text-align: center; }

/* ---- Footer ---- */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  color: var(--gray);
  font-size: 13px;
}
footer.site-footer a { color: var(--red); }
footer.site-footer .foot-logo { height: 24px; margin: 0 auto 14px; }
