/* ==========================================================
   D&M Paving Co — Design System v4
   Exact logo palette: #FFDE16 yellow, #819FBC slate, #000000 black.
   Refined editorial layout. No template-y offset shadows.
   ========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 16px; }

:root {
  /* ====== Logo colors (exact) ====== */
  --black: #000000;
  --black-90: #0A0A0A;
  --black-80: #161616;

  --yellow: #FFDE16;
  --yellow-bright: #FFEA5C;
  --yellow-deep: #D9BC00;
  --yellow-soft: rgba(255,222,22,0.16);
  --yellow-shadow: rgba(255,222,22,0.45);

  --slate: #819FBC;
  --slate-light: #A8BED4;
  --slate-dark: #5A7A98;
  --slate-soft: rgba(129,159,188,0.18);

  /* ====== Dark navy-slate surfaces ======
     Pulled from the logo's slate hue, pushed deep.
     Each level is subtly lighter than the previous. */
  --bg-deep: #07101C;        /* deepest, page bg */
  --bg: #0C1827;             /* default section */
  --paper: #112138;           /* slightly elevated */
  --paper-2: #16294A;         /* most elevated */
  --surface: #112138;         /* card bg */
  --surface-2: #16294A;       /* form bg */
  --white: #FFFFFF;           /* kept for special use */

  --line: rgba(168,190,212,0.10);
  --line-2: rgba(168,190,212,0.18);

  /* ====== Text ====== */
  --ink: #FFFFFF;
  --ink-2: rgba(255,255,255,0.92);
  --ink-3: rgba(255,255,255,0.72);
  --ink-on-dark: #FFFFFF;
  --ink-on-dark-2: rgba(255,255,255,0.92);
  --ink-on-dark-3: rgba(255,255,255,0.72);

  --danger: #FF6B6B;
  --success: #4FD1A5;

  /* ====== Type ====== */
  --font-display: 'Anton', 'Impact', 'Arial Narrow Bold', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* ====== Layout ====== */
  --max: 1240px;
  --max-narrow: 920px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --section-y: clamp(4rem, 8vw, 6.5rem);
  --radius: 0px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 12px 28px -10px rgba(0,0,0,0.18);
  --shadow-lg: 0 24px 60px -20px rgba(0,0,0,0.25);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 180ms;
  --t-med: 320ms;
  --t-slow: 600ms;
}

/* ==========================================================
   Typography — refined, NOT oversized
   - Display (Anton) used sparingly: hero h1, big stat numbers
   - Inter used for h2, h3, h4 with confident weight
   - Body Inter at comfortable reading size
   ========================================================== */
.h-display, h1.hero-display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
}

h1, h2, h3, h4 {
  font-family: var(--font-body);
  color: var(--white);
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  font-weight: 700;
}
h2 {
  font-size: clamp(1.625rem, 3vw, 2.375rem);
  line-height: 1.1;
  font-weight: 700;
}
h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.2;
  font-weight: 600;
}
h4 {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.25;
  font-weight: 600;
}
p { color: var(--ink-2); font-size: 1rem; line-height: 1.65; }
strong { color: var(--white); font-weight: 600; }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
}

/* Eyebrow uses the logo yellow for maximum readability on dark bg */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}
.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}
.eyebrow--light { color: var(--yellow); }

/* Yellow accent (replaces italic Fraunces flourish) */
.accent-yellow {
  background: var(--yellow);
  color: var(--black);
  padding: 0.04em 0.22em 0.02em;
  display: inline-block;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.accent-line {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.accent-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--yellow);
}

/* ==========================================================
   Layout helpers
   ========================================================== */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--max-narrow); }
.section { padding: var(--section-y) 0; position: relative; }
.section--white { background: var(--bg); }              /* default dark slate */
.section--paper { background: var(--paper); }          /* slightly elevated */
.section--paper-2 { background: var(--paper-2); }      /* most elevated */
.section--dark { background: var(--bg-deep); }         /* deepest navy */

.section__head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 { margin-top: 0.85rem; }
.section__head p { margin-top: 1rem; }

/* Mountain horizon — recurring decorative element drawn from the logo's
   geometric peaks. Used as section dividers / accents. */
.horizon {
  display: block;
  width: 100%;
  height: 36px;
  position: relative;
  pointer-events: none;
}
.horizon svg { width: 100%; height: 100%; display: block; }

/* ==========================================================
   Skip link
   ========================================================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ==========================================================
   Header
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,16,28,0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(7,16,28,0.97);
  border-bottom-color: var(--line-2);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}
.header-logo img {
  height: 52px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-nav a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--t-fast) var(--ease);
}
.header-nav a:hover { color: var(--yellow); }
.header-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
}

.header-nav .header-nav__cta {
  padding: 0.55rem 1.05rem;
  margin-left: 0.5rem;
  border: 1px solid var(--white);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.header-nav .header-nav__cta:hover,
.header-nav .header-nav__cta.is-active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.header-nav .header-nav__cta::after { display: none; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: var(--yellow);
  color: var(--black);
  border-radius: 0;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--yellow);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.header-cta:hover { background: var(--yellow-bright); border-color: var(--yellow-bright); }

/* Dropdown */
.has-dropdown { position: relative; }
/* Invisible bridge so the cursor can move from trigger to dropdown
   without losing the hover state in the 14px gap */
.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -20%;
  right: -20%;
  height: 18px;
  pointer-events: none;
}
.has-dropdown:hover::after,
.has-dropdown:focus-within::after { pointer-events: auto; }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 270px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-top: 3px solid var(--yellow);
  border-radius: 0;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.6);
  padding: 0.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 0;
  color: var(--ink-2);
}
.dropdown a:hover { background: var(--paper-2); color: var(--white); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 1px solid var(--line-2);
  background: transparent;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--white);
  transition: all var(--t-fast) var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.is-active span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* Mobile drawer */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
  z-index: 99;
}
.nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 380px);
  background: var(--bg-deep);
  z-index: 110;
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform var(--t-med) var(--ease);
  overflow-y: auto;
  border-left: 1px solid var(--line-2);
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer a {
  display: block;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}
.nav-drawer a.drawer-sub { padding-left: 1.25rem; font-size: 0.9rem; color: var(--ink-2); }
.nav-drawer a.drawer-sub-head {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  border-bottom: none;
  padding: 1.25rem 0.5rem 0.35rem;
}
.drawer-group { border-bottom: 1px solid var(--line); }
.drawer-group > summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.drawer-group > summary::-webkit-details-marker { display: none; }
.drawer-group > summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--slate);
  border-bottom: 2px solid var(--slate);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.25s var(--ease);
}
.drawer-group[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.drawer-group > a.drawer-sub { border-bottom: 1px solid var(--line); }
.drawer-group > a.drawer-sub:last-child { border-bottom: none; }
.drawer-cta {
  margin-top: auto;
  background: var(--yellow);
  color: var(--black) !important;
  text-align: center;
  border-bottom: none !important;
  padding: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
}

/* ==========================================================
   Buttons — clean, confident, NO offset shadows
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn--primary:hover { background: var(--yellow-bright); border-color: var(--yellow-bright); }
.btn--dark {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--dark:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost-light:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--lg { padding: 1rem 1.85rem; font-size: 0.95rem; }

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  position: relative;
  background: var(--bg-deep);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}
.hero__container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.hero__copy {
  position: relative;
  padding-top: clamp(1rem, 3vw, 2.25rem);
}
.hero__copy h1 {
  margin-top: 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
}
.hero__lead {
  margin-top: 1.15rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 50ch;
  color: var(--ink-on-dark-2);
  line-height: 1.55;
}
.hero__actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__meta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-2);
}
.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}
.hero__meta-item svg { color: var(--yellow); flex-shrink: 0; }
.hero__meta-item strong { color: var(--white); font-weight: 700; }

.hero__visual {
  position: relative;
  aspect-ratio: 1/1;
  max-height: 560px;
  overflow: hidden;
  border: 2px solid var(--slate);
  /* slate-dark offset block behind the visual, gives depth */
  box-shadow: 14px 14px 0 var(--slate-dark);
}
/* Top-left yellow L-bracket */
.hero__visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  border-top: 5px solid var(--yellow);
  border-left: 5px solid var(--yellow);
  z-index: 3;
  pointer-events: none;
}
/* Top-right yellow L-bracket */
.hero__visual::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  border-top: 5px solid var(--yellow);
  border-right: 5px solid var(--yellow);
  z-index: 3;
  pointer-events: none;
}
.hero__visual video, .hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__visual-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(7,16,28,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.95rem 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-left: 4px solid var(--yellow);
}
.hero__visual-tag svg { color: var(--yellow); flex-shrink: 0; }
.hero__visual-tag-title { font-weight: 700; font-size: 0.95rem; line-height: 1.2; color: var(--white); }
.hero__visual-tag-sub { font-size: 0.78rem; color: var(--ink-on-dark-2); margin-top: 2px; }

@media (max-width: 880px) {
  .hero__container { grid-template-columns: 1fr; gap: 2rem; }
  .hero__visual { aspect-ratio: 5/4; }
}

/* ==========================================================
   Stats strip
   ========================================================== */
.stats-strip {
  background: var(--black);
  color: var(--white);
  padding: clamp(2.5rem, 4.5vw, 3.5rem) 0;
  position: relative;
  border-bottom: 4px solid var(--yellow);
}
.stats-strip__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  line-height: 0.95;
  color: var(--yellow);
  letter-spacing: 0;
}
.stat__label {
  margin-top: 0.5rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-light);
}
@media (max-width: 720px) { .stats-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1rem; } }

/* ==========================================================
   Services
   ========================================================== */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.services-intro p { max-width: 52ch; }
@media (max-width: 880px) { .services-intro { grid-template-columns: 1fr; } }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-2);
  text-decoration: none;
  color: inherit;
  transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.service-card:hover {
  background: var(--surface-2);
  border-color: var(--yellow);
}
.service-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-deep);
  border-bottom: 3px solid var(--yellow);
}
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.04); }
.service-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.service-card__body { padding: 1.5rem 1.5rem 1.65rem; flex: 1; display: flex; flex-direction: column; }
.service-card__title { margin-bottom: 0.6rem; }
.service-card__desc { font-size: 0.95rem; color: var(--ink-2); flex: 1; }
.service-card__link {
  margin-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-card__link::after {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--yellow);
  transition: width var(--t-fast) var(--ease);
}
.service-card:hover .service-card__link::after { width: 32px; }

/* ==========================================================
   Editorial split (about)
   ========================================================== */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split-grid--reverse { grid-template-columns: 1fr 1fr; }
.split-grid--reverse .split-image { order: 2; }
.split-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 2px solid var(--slate);
  box-shadow: 16px 16px 0 var(--slate-dark);
}
.split-image img,
.split-image video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Top-left yellow L-bracket */
.split-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  border-top: 5px solid var(--yellow);
  border-left: 5px solid var(--yellow);
  z-index: 2;
  pointer-events: none;
}
/* Bottom-right yellow L-bracket */
.split-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52px;
  height: 52px;
  border-bottom: 5px solid var(--yellow);
  border-right: 5px solid var(--yellow);
  z-index: 2;
  pointer-events: none;
}
.split-text h2 { margin-top: 0.85rem; }
.split-text h3 { margin-top: 2rem; font-size: clamp(1.25rem, 2vw, 1.5rem); }
.split-text p { margin-top: 1.25rem; }
.split-text .lead { font-size: 1.1rem; }

@media (max-width: 880px) {
  .split-grid, .split-grid--reverse { grid-template-columns: 1fr; gap: 2.25rem; }
  .split-grid--reverse .split-image { order: -1; }
}

/* ==========================================================
   Why us / values
   ========================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
}
.value-card {
  position: relative;
  padding: 2rem 1.85rem 2.25rem 1.85rem;
  border-right: 1px solid var(--line-2);
}
.value-card:first-child { padding-left: 0; }
.value-card:last-child { border-right: none; padding-right: 0; }
@media (max-width: 1000px) {
  .value-card:first-child { padding-left: 1.85rem; }
  .value-card:last-child { padding-right: 1.85rem; }
}
.value-card__num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.85rem;
  display: block;
}
.value-card h3 { margin: 0 0 0.6rem; }
.value-card p { font-size: 0.95rem; }

@media (max-width: 880px) {
  .value-card { padding: 1.75rem 0; border-right: none; border-bottom: 1px solid var(--line-2); }
  .value-card:first-child { padding: 0 0 1.75rem; }
  .value-card:last-child { padding: 1.75rem 0 0; border-bottom: none; }
}

/* ==========================================================
   Process — clean numbered horizontal flow
   ========================================================== */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-list::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow) 0, var(--yellow) 50%, transparent 50%);
  background-size: 16px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
}
.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border: 1px solid var(--yellow);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 1.15rem;
}
.process-step h3 { margin-bottom: 0.45rem; }
.process-step p { font-size: 0.95rem; }
@media (max-width: 880px) {
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list::before { display: none; }
}
@media (max-width: 540px) { .process-list { grid-template-columns: 1fr; } }

/* ==========================================================
   Service Areas
   ========================================================== */
.areas-search {
  position: relative;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
.areas-search input {
  width: 100%;
  padding: 0.95rem 1.15rem 0.95rem 2.85rem;
  border: 1px solid var(--line-2);
  background: var(--surface);
  border-radius: 0;
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  transition: border-color var(--t-fast) var(--ease);
}
.areas-search input::placeholder { color: var(--ink-3); }
.areas-search input:focus { outline: none; border-color: var(--yellow); }
.areas-search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  fill: none;
  stroke: var(--slate);
  stroke-width: 2;
  pointer-events: none;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: all var(--t-fast) var(--ease);
}
.area-tag:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.area-tag.is-hidden { display: none; }

.areas-count { text-align: center; margin-top: 1.75rem; color: var(--ink-3); font-size: 0.85rem; }

/* ==========================================================
   Reviews
   ========================================================== */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 0;
}
.google-badge__stars { display: flex; gap: 2px; color: var(--yellow); }
.google-badge__stars svg { width: 18px; height: 18px; fill: currentColor; }
.google-badge__rating {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1;
}
.google-badge__text { font-size: 0.85rem; color: var(--ink-2); font-weight: 500; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--yellow);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  position: relative;
}
.review-card__quote { color: var(--ink); line-height: 1.6; font-size: 0.98rem; }
.review-card__stars { display: flex; gap: 2px; color: var(--yellow); }
.review-card__stars svg { width: 16px; height: 16px; fill: currentColor; }
.review-card__author { font-weight: 700; color: var(--white); margin-top: auto; font-size: 0.95rem; }
.review-card__source { font-size: 0.78rem; color: var(--ink-3); }

/* Elfsight reviews container — skeleton while the widget initializes.
   Once Elfsight injects its DOM, it sets its own children which override these styles. */
[class^="elfsight-app-"]:empty,
[class*=" elfsight-app-"]:empty {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  min-height: 360px;
  position: relative;
}
[class^="elfsight-app-"]:empty::before,
[class^="elfsight-app-"]:empty::after,
[class*=" elfsight-app-"]:empty::before,
[class*=" elfsight-app-"]:empty::after {
  content: "";
  display: block;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 50%, var(--surface) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
  border-left: 3px solid var(--yellow);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--yellow);
  height: 220px;
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ==========================================================
   Gallery
   ========================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.85rem;
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}
.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px solid var(--slate-dark);
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.gallery-item::before {
  /* Small yellow top-left corner accent on every gallery image */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-top: 3px solid var(--yellow);
  border-left: 3px solid var(--yellow);
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity var(--t-fast) var(--ease);
}
.gallery-item:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }

/* ==========================================================
   Before / After pairs
   ========================================================== */
.ba-pair { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.ba-pair:last-child { margin-bottom: 0; }
.ba-pair__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line-2);
}
.ba-pair__header h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  color: var(--white);
  letter-spacing: -0.01em;
}
.ba-pair__location {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.ba-pair__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 720px) { .ba-pair__grid { grid-template-columns: 1fr; gap: 1.25rem; } }

.ba-card {
  position: relative;
  margin: 0;
}
.ba-card__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px solid var(--line-2);
}
.ba-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ba-card__label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.45rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(7,16,28,0.92);
  color: var(--white);
  border-right: 3px solid var(--slate);
}
.ba-card--after .ba-card__label {
  background: var(--yellow);
  color: var(--black);
  border-right-color: var(--black);
}

/* Before/after slider */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.ba-grid:last-child { margin-bottom: 0; }
.ba-grid .ba-pair { margin-bottom: 0; }
@media (max-width: 720px) { .ba-grid { grid-template-columns: 1fr; } }

.ba-slider {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px solid var(--line-2);
  user-select: none;
  touch-action: pan-y;
  --pos: 50%;
}
.ba-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-slider__img--before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  margin-left: -1.5px;
  background: var(--yellow);
  border: 0;
  padding: 0;
  cursor: ew-resize;
  touch-action: none;
}
.ba-slider__handle:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }
.ba-slider__handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--black);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.ba-slider__handle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  color: var(--black);
  pointer-events: none;
  z-index: 1;
}
.ba-slider__handle-icon svg { width: 100%; height: 100%; display: block; }
.ba-slider__label {
  position: absolute;
  top: 1rem;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  pointer-events: none;
  transition: opacity var(--t-fast) var(--ease);
}
.ba-slider__label--before {
  left: 0;
  background: rgba(0,0,0,0.75);
  color: var(--white);
}
.ba-slider__label--after {
  right: 0;
  background: var(--yellow);
  color: var(--black);
}
.ba-slider.is-dragging { cursor: ew-resize; }
.ba-slider.is-dragging .ba-slider__handle::before { transform: translate(-50%, -50%) scale(1.05); }

/* ==========================================================
   CTA banner — slate-blue tone, NOT a yellow caution-tape
   ========================================================== */
.cta-banner {
  position: relative;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: var(--bg-deep);
  color: var(--white);
  overflow: hidden;
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: var(--ink-2); margin-top: 1rem; max-width: 50ch; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-self: end; }
@media (max-width: 880px) {
  .cta-banner__inner { grid-template-columns: 1fr; }
  .cta-banner__actions { justify-self: start; }
}

/* ==========================================================
   Contact form
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line-2);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-2);
  border-radius: 0;
  background: var(--bg-deep);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  transition: border-color var(--t-fast) var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ink-3); }
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 1.05rem 1.5rem;
  background: var(--yellow);
  color: var(--black);
  border-radius: 0;
  border: 1px solid var(--yellow);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--t-fast) var(--ease);
}
.form-submit:hover { background: var(--yellow-bright); border-color: var(--yellow-bright); }
.form-submit:disabled, .form-submit.is-loading { opacity: 0.6; cursor: wait; }

#form-error {
  background: rgba(255,107,107,0.08);
  border: 1px solid var(--danger);
  color: var(--danger);
  padding: 0.85rem 1rem;
  border-radius: 0;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}
#form-success {
  text-align: center;
  padding: 2.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-top: 3px solid var(--yellow);
}
#form-success svg { color: var(--success); margin: 0 auto 1rem; width: 56px; height: 56px; }
#form-success h3 { margin-bottom: 0.5rem; }

/* Contact info column */
.contact-info-wrap { padding-top: 1.9rem; }
@media (max-width: 880px) { .contact-info-wrap { padding-top: 0; } }
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-info__row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-2);
}
.contact-info__row:first-child { padding-top: 0; }
.contact-info__row:last-child { border-bottom: none; }
.contact-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow-soft);
  display: grid;
  place-items: center;
  color: var(--yellow);
}
.contact-info__icon svg { width: 18px; height: 18px; fill: currentColor; }
.contact-info__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.2rem;
}
.contact-info__value { font-weight: 500; color: var(--white); font-size: 1rem; line-height: 1.4; }
.contact-info__value a { color: inherit; transition: color var(--t-fast) var(--ease); }
.contact-info__value a:hover { color: var(--yellow); }

.contact-map {
  margin-top: 1.5rem;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line-2);
  aspect-ratio: 16/10;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================
   Footer
   ========================================================== */
.site-footer {
  background: var(--bg-deep);
  color: var(--ink-2);
  padding: 4.5rem 0 1.5rem;
  position: relative;
  border-top: 1px solid var(--line-2);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.25rem;
  margin-bottom: 3.25rem;
}
.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 1.1rem;
}
.footer-brand p { color: var(--ink-on-dark-2); font-size: 0.95rem; max-width: 36ch; }
.footer-brand .footer-social { display: flex; gap: 0.55rem; margin-top: 1.25rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  color: var(--ink-on-dark);
  transition: all var(--t-fast) var(--ease);
}
.footer-social a:hover { background: var(--yellow); color: var(--black); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.92rem;
  color: var(--ink-on-dark-2);
  transition: color var(--t-fast) var(--ease);
  font-weight: 400;
}
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.82rem;
  color: var(--ink-on-dark-3);
}
.footer-bottom a:hover { color: var(--yellow); }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ==========================================================
   Floating CTA / Mobile bar
   ========================================================== */
.floating-cta {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--t-med) var(--ease);
  pointer-events: none;
}
.floating-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-cta svg { width: 22px; height: 22px; fill: currentColor; }

.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 95;
  padding: 0.6rem;
  gap: 0.5rem;
  border-top: 3px solid var(--yellow);
  transform: translateY(100%);
  transition: transform var(--t-med) var(--ease);
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.88rem;
}
.mobile-cta-bar .cta-call { background: var(--yellow); color: var(--black); }
.mobile-cta-bar .cta-form { background: rgba(255,255,255,0.1); color: var(--white); }

/* ==========================================================
   Reveal
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-revealed { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* Hero entrance: fires on page load, not scroll. Cascades via CSS vars. */
.hero-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 0.8s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
.hero-visual-reveal {
  opacity: 0;
  transform: translateX(32px) scale(0.98);
  animation: hero-slide-in 1s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes hero-rise {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes hero-slide-in {
  0% { opacity: 0; transform: translateX(32px) scale(0.98); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-reveal, .hero-visual-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ==========================================================
   Scroll progress
   ========================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--yellow);
  width: 100%;
  transform-origin: 0 0;
  transform: scaleX(0);
  z-index: 200;
}

/* ==========================================================
   Subpage hero
   ========================================================== */
.subhero {
  position: relative;
  background: var(--bg-deep);
  color: var(--white);
  padding: clamp(4.5rem, 9vw, 6.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line-2);
}
.subhero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.subhero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.subhero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,16,28,0.65), rgba(7,16,28,0.95));
}
.subhero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.subhero h1 {
  margin-top: 1rem;
  color: var(--white);
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  max-width: 22ch;
  line-height: 1.1;
  font-weight: 700;
}
.subhero__lead { margin-top: 1.25rem; max-width: 60ch; color: var(--ink-on-dark-2); font-size: clamp(1rem, 1.3vw, 1.1rem); line-height: 1.55; }
.subhero__actions { margin-top: 1.85rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--slate-light);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.breadcrumb a { color: var(--ink-on-dark-2); transition: color var(--t-fast) var(--ease); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb [aria-current] { color: var(--yellow); }
.breadcrumb__sep { opacity: 0.4; }

/* ==========================================================
   Service detail layout
   ========================================================== */
.service-body {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 880px) { .service-body { grid-template-columns: 1fr; } }
.service-prose { max-width: 70ch; }
.service-prose h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
}
.service-prose h2:first-child { margin-top: 0; }
.service-prose h3 { margin-top: 1.85rem; }
.service-prose p { margin-top: 1rem; line-height: 1.7; }
.service-prose ul {
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}
.service-prose ul li {
  position: relative;
  padding-left: 1.85rem;
  margin: 0.65rem 0;
  color: var(--ink-2);
  line-height: 1.6;
}
.service-prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 14px;
  height: 2px;
  background: var(--yellow);
}
.service-prose .pullquote {
  margin: 2.5rem 0;
  padding: 1.65rem 0 1.65rem 1.65rem;
  border-left: 3px solid var(--yellow);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  color: var(--white);
  line-height: 1.45;
  font-style: normal;
}

.service-aside {
  position: sticky;
  top: 100px;
  align-self: start;
}
.service-aside-card {
  background: var(--paper-2);
  color: var(--white);
  padding: 1.85rem;
  border: 1px solid var(--line-2);
  border-top: 4px solid var(--yellow);
}
.service-aside-card h3 { color: var(--yellow); font-size: 1.15rem; margin-bottom: 0.4rem; }
.service-aside-card p { color: var(--ink-on-dark-2); font-size: 0.92rem; margin-bottom: 1.25rem; line-height: 1.55; }
.service-aside-card .btn { width: 100%; margin-bottom: 0.55rem; }
.service-aside-list {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-dark);
}
.service-aside-list h4 {
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.service-aside-list a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink-on-dark-2);
  border-bottom: 1px solid var(--line-dark);
  transition: color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}
.service-aside-list a:last-child { border-bottom: none; }
.service-aside-list a:hover { color: var(--yellow); padding-left: 0.4rem; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line-2);
  border-radius: 0;
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.faq-item:hover { border-color: var(--slate); }
.faq-item[open] { border-color: var(--yellow); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--white);
  user-select: none;
  transition: color var(--t-fast) var(--ease);
}
.faq-item summary:hover { color: var(--yellow); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--slate);
  border-bottom: 2px solid var(--slate);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color var(--t-fast) var(--ease);
  flex-shrink: 0;
}
.faq-item summary:hover::after { border-color: var(--yellow); }
.faq-item[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
  border-color: var(--yellow);
}
.faq-item__body {
  padding: 0 1.4rem;
  color: var(--ink-2);
  line-height: 1.7;
  overflow: hidden;
}
.faq-item__body > p { margin: 0; padding-bottom: 1.4rem; }
.faq-item.is-animating .faq-item__body {
  transition: height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item[open] .faq-item__body > p {
  animation: faqFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.05s both;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   Helpers
   ========================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 980px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .mobile-cta-bar { display: flex; }
  .floating-cta { display: none; }
}

@media (max-width: 540px) {
  .stat__num { font-size: 2.2rem; }
}

@media print {
  .site-header, .site-footer, .floating-cta, .mobile-cta-bar, .nav-drawer, .nav-backdrop, .hero__visual { display: none; }
  body { background: white; color: black; }
}
