/* ===== HC Decals — Shared Service Page Stylesheet ===== */

:root {
  --red: #c8102e;
  --red-bright: #e21d3c;
  --white: #ffffff;
  --gray: #a6a6a6;
  --gray-soft: #d0d0d0;
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --border: #2a2a2a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--gray-soft);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  position: relative;
  color: var(--gray-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--red-bright); transform: translateY(-1px); }
.nav-cta::after { display: none; }

.nav-socials {
  display: flex;
  gap: 10px;
}
.nav-social {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gray-soft);
  transition: all 0.2s ease;
}
.nav-social:hover { color: #fff; border-color: var(--red); background: var(--red); }
.nav-social svg { width: 16px; height: 16px; }
.nav-social::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
}

/* ===== SERVICE HERO ===== */
.service-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1.1px, transparent 1.4px);
  background-size: 18px 18px;
  opacity: 0.7;
  pointer-events: none;
}
.service-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.breadcrumbs {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.breadcrumbs a { color: var(--gray); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--red-bright); }
.breadcrumbs span.sep { color: #555; }
.breadcrumbs span.current { color: var(--white); }

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,0.15);
  color: var(--red-bright);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.service-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
}

.service-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.service-hero h1 .accent { color: var(--red-bright); }
.service-hero .lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--gray-soft);
  max-width: 680px;
  margin-bottom: 32px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: #fff !important;
  border: 1px solid var(--red);
}
.btn-primary:hover { background: var(--red-bright); border-color: var(--red-bright); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--red); color: var(--red-bright); }

.btn-primary svg, .btn-secondary svg { width: 16px; height: 16px; }

/* ===== SECTION HEADS ===== */
.sp-section { padding: 80px 0; }
.sp-section.alt { background: var(--black-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ===== SHOWCASE (hero photo under service-hero) ===== */
.service-showcase {
  padding: 0 0 24px;
  background: var(--black);
}
.showcase-frame {
  position: relative;
  aspect-ratio: 21 / 9;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black-card) 0%, var(--black-soft) 100%);
}
.showcase-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.showcase-frame:hover img { transform: scale(1.02); }
.showcase-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 16px;
}
.showcase-placeholder svg {
  width: 56px;
  height: 56px;
  color: var(--red);
  opacity: 0.55;
}

/* ===== PHOTO STRIP (3-tile gallery) ===== */
.photo-strip-section {
  padding: 48px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.photo-strip-head {
  text-align: center;
  margin-bottom: 28px;
}
.photo-strip-head .ps-tag {
  display: inline-block;
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.photo-strip-head h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photo-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--black-card) 0%, var(--black-soft) 100%);
  display: block;
}
.photo-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-tile:hover img { transform: scale(1.05); }
.photo-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.photo-tile:hover::after { opacity: 1; }
.photo-caption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2;
  pointer-events: none;
}
.photo-tile:hover .photo-caption {
  opacity: 1;
  transform: translateY(0);
}
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 12px;
}
.photo-placeholder svg {
  width: 36px;
  height: 36px;
  color: var(--red);
  opacity: 0.5;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,0.1);
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.section-head .section-tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red-bright);
}
.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.section-head h2 .accent { color: var(--red-bright); }
.section-head .section-sub {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
}

/* ===== HIGHLIGHT GRID ===== */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.highlight-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.highlight-card:hover { border-color: var(--red); transform: translateY(-3px); }
.highlight-card .hc-icon {
  width: 42px; height: 42px;
  color: var(--red-bright);
  margin-bottom: 16px;
}
.highlight-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
}
.highlight-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.55;
}

/* ===== PROSE / CONTENT BLOCK ===== */
.content-block {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.prose h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 24px 0 12px;
  text-transform: uppercase;
}
.prose h3:first-child { margin-top: 0; }
.prose p {
  color: var(--gray-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.prose ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.prose ul li {
  position: relative;
  padding-left: 28px;
  color: var(--gray-soft);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 10px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.info-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 28px 26px;
  position: sticky;
  top: 100px;
}
.info-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.info-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  margin-bottom: 22px;
}
.info-card dt {
  color: var(--gray);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.info-card dd {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}
.info-card .cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-card .cta-stack a { justify-content: center; width: 100%; }

/* ===== USE CASES ===== */
.uses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.use-pill {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-soft);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s ease;
}
.use-pill:hover { border-color: var(--red); }
.use-pill svg {
  width: 20px; height: 20px;
  color: var(--red-bright);
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--red); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  color: var(--white);
  font-size: 15px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--red-bright);
  transition: transform 0.2s ease;
}
.faq-icon::before {
  top: 9px; left: 2px;
  width: 16px; height: 2px;
}
.faq-icon::after {
  top: 2px; left: 9px;
  width: 2px; height: 16px;
}
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-answer {
  padding: 0 24px 22px;
  color: var(--gray-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== RELATED SERVICES ===== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  color: var(--gray-soft) !important;
}
.related-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  color: var(--white) !important;
}
.related-card svg {
  width: 34px; height: 34px;
  color: var(--red-bright);
  margin-bottom: 10px;
}
.related-card span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== CTA BAND ===== */
.cta-band {
  background:
    linear-gradient(135deg, rgba(200,16,46,0.15) 0%, rgba(10,10,10,0.9) 60%),
    var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1.3px);
  background-size: 16px 16px;
  opacity: 0.6;
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cta-band h2 .accent { color: var(--red-bright); }
.cta-band p {
  color: var(--gray-soft);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.footer-col h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-col p, .footer-col li {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
  list-style: none;
}
.footer-col a { color: var(--gray); transition: color 0.2s; }
.footer-col a:hover { color: var(--red-bright); }
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gray);
  transition: all 0.2s ease;
}
.social-link:hover { color: #fff; border-color: var(--red); background: var(--red); }
.social-link svg { width: 16px; height: 16px; }

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  color: #555;
  font-size: 13px;
}

/* ===== STICKY MOBILE BAR ===== */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: none;
  z-index: 95;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 10px 12px;
  gap: 10px;
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--black-card);
  color: var(--gray-soft);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.mobile-bar a:hover, .mobile-bar a:active { background: var(--red); border-color: var(--red); color: #fff; }
.mobile-bar a svg { width: 18px; height: 18px; }
.mobile-bar a.mb-quote { background: var(--red); border-color: var(--red); color: #fff; }
.mobile-bar a.mb-quote:hover { background: var(--red-bright); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .uses-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .content-block { grid-template-columns: 1fr; gap: 32px; }
  .info-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .showcase-frame { aspect-ratio: 16 / 9; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-strip .photo-tile:nth-child(3) {
    grid-column: span 2;
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,10,10,0.98);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .service-hero { padding: 130px 0 60px; }
  .sp-section { padding: 60px 0; }
  .highlight-grid { grid-template-columns: 1fr; }
  .uses-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .showcase-frame { aspect-ratio: 4 / 3; }
  .photo-strip { grid-template-columns: 1fr; gap: 12px; }
  .photo-strip .photo-tile:nth-child(3) {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
  .photo-strip-section { padding: 36px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
