/* Skidrig — shared layout for individual service pages (white + safety orange) */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-muted: #fafafa;
  --surface-strong: #f5f5f5;
  --border: #e8e8e8;
  --text: #111111;
  --muted: #5a5a5a;
  --accent: #e65100;
  --accent-hover: #bf360c;
  --accent-light: #fff3e0;
  --black: #0a0a0a;
  --shadow: 0 14px 48px rgba(0, 0, 0, 0.07);
  --radius: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

a { color: var(--accent); }

/* ── Header / nav ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo-image { height: 46px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.nav > a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav > a:hover { color: var(--accent); }
.header-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.55rem 1.05rem;
  border-radius: 8px;
}
.header-cta:hover { background: var(--accent-hover); }

/* ── Dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: inherit;
  padding: 0;
}
.nav-dropdown-toggle:hover { color: var(--accent); }
.nav-dropdown-toggle .caret { font-size: 0.7em; transition: transform 0.15s; }
.nav-dropdown.open .nav-dropdown-toggle .caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.4rem;
  display: none;
  flex-direction: column;
  gap: 0.1rem;
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}
.nav-dropdown-menu a:hover { background: var(--surface-strong); color: var(--accent); }
.nav-dropdown-menu a.featured {
  background: var(--accent-light);
  color: var(--accent-hover);
  font-weight: 700;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary { background: var(--black); color: #fff; }
.btn-secondary:hover { background: #000; }
.btn-light { background: #fff; color: var(--black); border-color: var(--border); }
.btn-ghost { background: transparent; color: var(--accent); border-color: rgba(230, 81, 0, 0.4); }

/* ── Hero ── */
.svc-hero {
  background: linear-gradient(180deg, var(--surface-muted), #fff);
  border-bottom: 1px solid var(--border);
  padding: 3.2rem 0 2.6rem;
}
.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.2rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  background: var(--accent-light);
  border: 1px solid rgba(230, 81, 0, 0.22);
  color: var(--accent-hover);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.svc-hero h1 {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
  margin: 0 0 0.9rem;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.svc-hero .lead { font-size: 1.08rem; color: var(--muted); margin: 0 0 1.4rem; max-width: 46ch; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-actions .phone {
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
  font-size: 1rem;
}
.hero-actions .phone:hover { color: var(--accent); }
.svc-hero-art {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.svc-hero-art img { width: 70%; height: auto; opacity: 0.95; }

/* ── Sections ── */
.section { padding: 3rem 0; }
.section.alt { background: var(--surface-muted); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-kicker {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section h2 {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.lede { color: var(--muted); max-width: 70ch; margin: 0 0 1.5rem; font-size: 1.02rem; }
.prose { color: var(--muted); max-width: 70ch; display: grid; gap: 1rem; font-size: 1rem; line-height: 1.8; }
.prose p { margin: 0; }
.prose strong { color: var(--text); }

/* ── Card grids ── */
.use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.1rem;
}
.use-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  border-top: 4px solid var(--accent);
}
.use-card .ic { font-size: 1.7rem; margin-bottom: 0.5rem; }
.use-card h3 { margin: 0 0 0.4rem; font-size: 1.08rem; color: var(--black); }
.use-card p { margin: 0; color: var(--muted); font-size: 0.94rem; }

/* ── Process steps ── */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.step .num {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}
.step h3 { margin: 0 0 0.35rem; font-size: 1.02rem; color: var(--black); }
.step p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* ── FAQ ── */
.faq { display: grid; gap: 0.7rem; max-width: 820px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.4rem 1rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--black);
  padding: 0.6rem 0;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; float: right; color: var(--accent); font-weight: 800; }
.faq details[open] summary::after { content: '\2013'; }
.faq details p { margin: 0 0 0.8rem; color: var(--muted); font-size: 0.95rem; }

/* ── Related services ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.8rem;
}
.related-grid a {
  display: block;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}
.related-grid a:hover { border-color: var(--accent); color: var(--accent); }

/* ── CTA band ── */
.cta-band { background: var(--black); color: #fff; padding: 2.6rem 0; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-band h2 { font-family: 'Oswald', 'Inter', sans-serif; margin: 0 0 0.4rem; text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 1.9rem); }
.cta-band p { margin: 0; color: rgba(255, 255, 255, 0.78); }
.cta-band-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ── Footer ── */
.footer { border-top: 1px solid var(--border); background: var(--surface-muted); padding: 2.2rem 0; color: var(--muted); }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-links { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); }
.footer .logo-image { height: 40px; }

@media (max-width: 820px) {
  .svc-hero-grid { grid-template-columns: 1fr; }
  .svc-hero-art { order: -1; aspect-ratio: 16 / 9; }
}
@media (max-width: 640px) {
  .header-inner { padding: 0.6rem 1rem; }
  .logo-image { height: 38px; }
  .nav { gap: 0.8rem; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
