/* Inner-page hero, breadcrumb, and supporting blocks */

.page-hero {
  position: relative;
  padding: 140px 32px 80px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(233,29,143,0.08), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 24px, rgba(255,255,255,0.04) 24px 48px),
    linear-gradient(180deg, #050505 0%, #010101 100%);
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-mute);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--ink-mute); transition: color .15s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--ink-mute); opacity: .5; }
.breadcrumb .current { color: var(--accent); }

.page-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 24px;
  max-width: 900px;
}
.page-h1 .accent { color: var(--accent); }
.page-lead {
  font-size: 17px;
  color: var(--ink-dim);
  max-width: 720px;
  line-height: 1.7;
}

/* nav active state */
.nav-links li.active > a { color: var(--accent); }
.nav-links li.active > a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 6px; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
}
.nav-links > li { position: relative; }

/* Spec table — used on package / film / tint detail pages */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 14px;
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.spec-table thead th {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--line);
}
.spec-table tbody th {
  font-weight: 700;
  color: var(--ink);
  width: 30%;
}
.spec-table td { color: var(--ink-dim); }
.spec-table .check { color: var(--accent); font-weight: 900; }
.spec-table .dash  { color: var(--ink-mute); }
.spec-table tbody tr:hover { background: rgba(255,255,255,0.02); }

/* FAQ accordion */
.faq-list {
  display: grid; gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 32px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  margin-left: 16px;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .body {
  padding: 0 4px 28px;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: 820px;
}

/* Process steps */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-step {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.process-step:last-child { border-right: none; }
.process-step .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  display: block;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}
.process-step p {
  color: var(--ink-dim);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .page-hero { padding: 100px 20px 56px; }
}
@media (max-width: 640px) {
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: none; }
}

/* CTA strip — universal bottom-of-page conversion block */
.cta-strip {
  background: linear-gradient(180deg, #0d0d0d 0%, #010101 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 80px 32px;
}
.cta-strip .sub {
  font-family: var(--font-display);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 48px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.cta-strip .actions { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
