/* LongLite Premium Safety Matches — shared stylesheet */

:root {
  --navy: #16294a;
  --navy-light: #1f3a66;
  --maroon: #a32c3a;
  --maroon-dark: #7f202c;
  --green: #1c4a2e;
  --saffron: #f5ab3f;
  --saffron-dark: #ea9420;
  --gold: #f4c430;
  --cream: #fff8ec;
  --paper: #fffdf9;
  --ink: #241c14;
  --ink-soft: #5a5148;
  --line: #ece1cf;
  --shadow: 0 10px 30px rgba(22, 41, 74, 0.10);
  --shadow-lg: 0 20px 50px rgba(22, 41, 74, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { line-height: 1.7; color: var(--ink-soft); margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--maroon);
  display: inline-block;
}

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { font-size: 17px; }

.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy p { color: rgba(255,255,255,0.72); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--maroon); color: #fff; box-shadow: 0 10px 24px rgba(163,44,58,0.32); }
.btn-primary:hover { background: var(--maroon-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(163,44,58,0.4); }
.btn-outline { background: transparent; border-color: rgba(22,41,74,0.25); color: var(--navy); }
.btn-outline:hover { border-color: var(--navy); background: rgba(22,41,74,0.05); transform: translateY(-2px); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 24px rgba(244,196,48,0.3); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(244,196,48,0.4); }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--navy);
  transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a:hover { background: rgba(22,41,74,0.06); }
.main-nav a.active { background: var(--navy); color: #fff; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn { padding: 11px 22px; font-size: 14px; }
.phone-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}
.phone-chip svg { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); display: block; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  background:
    radial-gradient(circle at 85% 0%, rgba(245,171,63,0.16), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(163,44,58,0.08), transparent 45%),
    var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--maroon); }
.hero-lede { font-size: 18px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: 'Poppins', sans-serif; font-size: 26px; color: var(--navy); }
.hero-stats div span { font-size: 13px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 1px; }

.hero-art { position: relative; display: flex; justify-content: center; }
.hero-art img { width: 100%; max-width: 380px; filter: drop-shadow(var(--shadow-lg)); transform: rotate(-3deg); transition: transform 0.4s ease; }
.hero-art:hover img { transform: rotate(0deg) scale(1.02); }
.hero-art::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(245,171,63,0.35), transparent 65%);
  z-index: -1;
  border-radius: 50%;
}
.hero-badge {
  position: absolute;
  bottom: -64px;
  left: 30px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(28,74,46,0.15); }
.hero-badge strong { display: block; font-size: 14px; color: var(--navy); }
.hero-badge span { font-size: 12px; color: var(--ink-soft); }

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--cream);
}
.marquee ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
}
.marquee li {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.marquee li::before { content: "✦"; color: var(--maroon); }

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

.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(163,44,58,0.08);
  color: var(--maroon);
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 19px; }
.feature-card p { font-size: 15px; margin-bottom: 0; }

/* About page */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, var(--saffron), var(--saffron-dark));
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-art img { width: 62%; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2)); }

.value-list { display: grid; gap: 20px; margin-top: 28px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-item .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--maroon);
  background: rgba(163,44,58,0.1);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-item h4 { font-size: 17px; margin-bottom: 4px; }
.value-item p { font-size: 15px; margin-bottom: 0; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 12px; }
.timeline-item { border-left: 3px solid var(--gold); padding: 4px 0 4px 20px; }
.timeline-item h4 { font-size: 16px; color: var(--maroon); font-family: 'Poppins', sans-serif; margin-bottom: 6px; }
.timeline-item p { font-size: 14px; margin-bottom: 0; }

/* Products page */
.product-hero-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  border: 1px solid var(--line);
}
.product-hero-media {
  background: linear-gradient(160deg, var(--saffron), var(--saffron-dark));
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.product-hero-media img { max-width: 280px; }
.product-hero-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 24px; }
.tag-pill {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--line);
}
.spec-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; margin: 24px 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-list div { font-size: 14px; }
.spec-list dt { color: var(--ink-soft); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.spec-list dd { margin: 0; font-weight: 600; color: var(--navy); font-family: 'Poppins', sans-serif; }

.dealer-cta {
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.dealer-cta::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,171,63,0.25), transparent 70%);
}
.dealer-cta h2 { color: #fff; }
.dealer-cta p { color: rgba(255,255,255,0.75); }
.dealer-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process-step { position: relative; padding-top: 8px; }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--saffron-dark);
  display: block;
  margin-bottom: 10px;
}
.process-step h4 { font-size: 16px; }
.process-step p { font-size: 14px; margin-bottom: 0; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(28,74,46,0.08);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 15px; margin-bottom: 4px; }
.contact-card a, .contact-card span.detail { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--navy); font-size: 15px; }
.contact-card a:hover { color: var(--maroon); }

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 4px rgba(163,44,58,0.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(28,74,46,0.1);
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
}
.form-success.show { display: block; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 28px;
  height: 260px;
  background: var(--navy) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><path d='M0 0h100M0 20h100M0 40h100M0 60h100M0 80h100M0 0v100M20 0v100M40 0v100M60 0v100M80 0v100' stroke='%23223a63' stroke-width='1'/></svg>");
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 24px;
}
.map-frame .inner strong { display: block; font-family: 'Poppins', sans-serif; margin-bottom: 6px; }
.map-frame .inner span { font-size: 13px; color: rgba(255,255,255,0.65); }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }
.footer-col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.7); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Page hero (interior pages) */
.page-hero {
  padding: 56px 0 40px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); max-width: 700px; }
.page-hero p { font-size: 17px; max-width: 560px; }
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: var(--ink-soft); margin-bottom: 16px; font-family: 'Poppins', sans-serif; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--maroon); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid, .about-hero, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .grid-3, .grid-2, .footer-grid, .timeline, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .product-hero-card { grid-template-columns: 1fr; }
  .dealer-cta { grid-template-columns: 1fr; padding: 40px; }
  .nav-toggle { display: flex; }
  .phone-chip span.long { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 16px; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .grid-3, .grid-2, .footer-grid, .timeline, .process-steps, .form-row { grid-template-columns: 1fr; }
  .header-actions .btn span.long { display: none; }
  .header-actions .btn { padding: 11px 16px; }
  .hero-stats { gap: 24px; }
  .product-hero-body, .contact-form-wrap { padding: 28px; }
  .dealer-cta { padding: 32px; }
}

@media (max-width: 480px) {
  .header-actions .phone-chip { display: none; }
}
