/* Asphalt Paving Co: cool grey surfaces + warm orange undertones + Oswald/Barlow */

:root {
  /* Neutral greys with a whisper of warmth (stone/zinc) */
  --bg-page: #f4f4f5;
  --bg-elevated: #e4e4e7;
  --bg-muted: #ececee;
  --bg-card: #ffffff;
  --bg-input: #ffffff;
  --bg-deep: #f4f4f5;
  --text: #18181b;
  --text-muted: rgba(24, 24, 27, 0.72);
  --text-subtle: #71717a;
  --ink: #18181b;
  /* Brand oranges — light #F79205, dark #F13E07 (no yellow) */
  --accent: #f13e07;
  --accent-bright: #f79205;
  --accent-deep: #b83204;
  /* Before/after slider labels — muted rust on cool grey */
  --ba-label: #a34e2a;
  --ba-section-bg: #f2f2f2;
  --accent-gold: #f79205;
  --accent-soft: rgba(241, 62, 7, 0.12);
  --accent-glow: rgba(247, 146, 5, 0.28);
  --accent-undertone: rgba(241, 62, 7, 0.06);
  --accent-undertone-strong: rgba(247, 146, 5, 0.1);
  --border: rgba(24, 24, 27, 0.08);
  --border-strong: 2px solid var(--accent);
  --font-display: "Oswald", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
  --font-size-body: 1.1rem;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-accent: 0 8px 28px rgba(241, 62, 7, 0.18);
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --section-y: clamp(3.5rem, 6vw, 5.25rem);
  --max: 1140px;
  --surface-dark: #18181b;
  --surface-dark-mid: #27272a;
  --subpage-inner-max: min(48rem, 100%);
  --section-copy-max: min(100%, 80ch);
  --hero-title-max: min(100%, 38ch);
  /* Home hero subtitle: narrower than section copy, wider than headline */
  --hero-lead-max: min(100%, 54ch);
  --hero-fg: #ffffff;
  --hero-lead: rgba(255, 255, 255, 0.98);
  --text-on-media: #ffffff;
  --text-on-media-muted: rgba(255, 255, 255, 0.92);
  /* Footer-aligned zinc (charcoal + orange labels) — reused site-wide */
  --gradient-zinc-bar: linear-gradient(180deg, #3f3f46 0%, #27272a 100%);
  --gradient-zinc-main: linear-gradient(180deg, #0a0a0b 0%, #18181b 100%);
  --gradient-zinc-mid: linear-gradient(180deg, #27272a 0%, #3f3f46 50%, #27272a 100%);
  --text-zinc: #ffffff;
  --text-zinc-muted: rgba(255, 255, 255, 0.98);
  /* Placeholders, optional labels — softer than body copy */
  --text-zinc-dim: rgba(255, 255, 255, 0.52);
  --label-gold: rgba(247, 146, 5, 0.96);
  --border-zinc: rgba(255, 255, 255, 0.1);
  --icon-box-zinc-bg: rgba(0, 0, 0, 0.25);
  --icon-box-zinc-border: rgba(255, 255, 255, 0.12);
  --icon-zinc-amber: #f79205;
  /* Buttons — shared sizing + one primary / one secondary look */
  --btn-radius: var(--radius-lg);
  --btn-min-h: 3rem;
  --btn-pad-y: 0.75rem;
  --btn-pad-x: 1.35rem;
  --btn-font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  --btn-letter: 0.1em;
  --btn-primary-gradient: linear-gradient(160deg, #f79205 0%, #f13e07 55%, #b83204 100%);
  --btn-primary-fg: rgba(255, 255, 255, 0.98);
  --btn-primary-shadow: var(--shadow-md);
  /* Motion — smooth “wow” without harsh linear easing */
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.45, 0.64, 1);
  --ease-soft-bounce: cubic-bezier(0.34, 1.2, 0.64, 1);
  --duration-reveal: 1.12s;
  --duration-reveal-fast: 0.85s;
  --duration-ui: 0.45s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Clears fixed header; tuned so #services land with headings higher in view */
  scroll-padding-top: 6.75rem;
  background: #09090b;
}

/* Pull hash targets slightly up (scroll-padding alone was leaving sections feeling too low) */
#about,
#services,
#testimonials,
#faq,
#contact {
  scroll-margin-top: -1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-zinc);
  background: var(--gradient-zinc-main);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Phone links: icon + hover motion (all tel: anchors, including CTAs) */
a[href^="tel:"] {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  vertical-align: middle;
  text-decoration: none;
}

a[href^="tel:"]:hover {
  text-decoration: none;
}

a[href^="tel:"]::before {
  content: "";
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V21c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V21c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Own SVG + label; hide mask ::before so two phone icons never stack */
.floating-cta[href^="tel:"]::before,
.mobile-cta-bar .mcta-secondary[href^="tel:"]::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  mask: none !important;
  -webkit-mask: none !important;
  transition: none !important;
}

a[href^="tel:"]:hover::before,
a[href^="tel:"]:focus-visible::before {
  transform: scale(1.14) rotate(-11deg);
}

@media (prefers-reduced-motion: reduce) {
  a[href^="tel:"]::before {
    transition: none;
  }

  a[href^="tel:"]:hover::before,
  a[href^="tel:"]:focus-visible::before {
    transform: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 100%);
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 3px solid var(--ink);
}

.skip-link:focus {
  left: 0.5rem;
}

/* Header — zinc bar + warm accent (matches brand orange) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.65rem var(--gutter);
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 38%, transparent 52%),
    radial-gradient(130% 90% at 50% -35%, rgba(247, 146, 5, 0.14) 0%, transparent 58%),
    linear-gradient(165deg, rgba(58, 56, 54, 0.97) 0%, rgba(42, 40, 38, 0.98) 45%, rgba(28, 27, 30, 0.99) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(247, 146, 5, 0.09),
    0 0 42px rgba(241, 62, 7, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(247, 146, 5, 0.85) 14%,
    rgba(241, 62, 7, 0.95) 50%,
    rgba(247, 146, 5, 0.85) 86%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  z-index: 0;
  background: linear-gradient(90deg, transparent 5%, rgba(247, 146, 5, 0.22) 50%, transparent 95%);
  pointer-events: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(28, 25, 23, 0.35);
  cursor: pointer;
}

.nav-close {
  display: none;
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem 1.5rem;
}

.header-nav-cluster {
  grid-column: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.header-actions-cluster {
  grid-column: 3;
  justify-self: start;
  display: flex;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem 1.35rem;
}

/* Header phone — light on zinc bar (footer quick row style) */
.header-phone {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  letter-spacing: 0.03em;
  text-transform: none;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.header-phone:hover {
  color: #ffffff;
  text-decoration: underline;
}

.logo-block {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  border-radius: var(--radius);
}

.logo-block:hover {
  text-decoration: none;
}

.logo-block:hover .logo-img {
  transform: scale(1.045) translateY(-2px);
  filter: drop-shadow(0 0 12px rgba(241, 62, 7, 0.35))
    drop-shadow(0 6px 14px rgba(28, 25, 23, 0.12));
}

.logo-block .logo-img {
  height: clamp(68px, 16vw, 104px);
  width: auto;
  max-width: min(400px, 90vw);
  object-fit: contain;
  transition: height 0.5s var(--ease-smooth), max-width 0.5s var(--ease-smooth), transform 0.45s var(--ease-spring),
    filter 0.45s var(--ease-smooth);
}

.site-header.is-scrolled .logo-block .logo-img {
  height: clamp(46px, 10vw, 72px);
  max-width: min(320px, 82vw);
}

/* Mobile: larger logo, gentler shrink on scroll (vw was reading small on narrow screens) */
@media (max-width: 768px) {
  .logo-block .logo-img {
    height: clamp(76px, 24vw, 104px);
    max-width: min(400px, 94vw);
  }

  .site-header.is-scrolled .logo-block .logo-img {
    height: clamp(60px, 16vw, 84px);
    max-width: min(360px, 90vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-block .logo-img {
    transition: transform 0.28s ease, filter 0.28s ease;
  }
}

.nav-toggle {
  display: none;
  background: var(--ink);
  border: 3px solid var(--accent);
  color: var(--hero-fg);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-size: clamp(0.72rem, 0.9vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-menu-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Nav labels — white on zinc (hover: gold) */
.nav-menu-links a {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.15vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  transition: color 0.2s ease;
}

.nav-menu-links a:hover {
  color: var(--label-gold);
  text-decoration: none;
}

.nav-menu-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Primary actions — shared (header CTA, links, form submit) */
.btn-primary,
.header-cta,
button.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-min-h);
  padding: var(--btn-pad-y) var(--btn-pad-x);
  box-sizing: border-box;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--btn-font-size);
  letter-spacing: var(--btn-letter);
  text-transform: uppercase;
  line-height: 1.2;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(12, 10, 9, 0.14);
  cursor: pointer;
  text-decoration: none;
  background: var(--btn-primary-gradient);
  color: var(--btn-primary-fg) !important;
  box-shadow: var(--btn-primary-shadow);
  transition: transform var(--duration-ui) var(--ease-spring), box-shadow var(--duration-ui) var(--ease-smooth),
    border-color var(--duration-ui) var(--ease-smooth), opacity 0.35s var(--ease-smooth);
}

.btn-primary:hover,
.header-cta:hover,
button.form-submit:hover:not(:disabled) {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(247, 146, 5, 0.25);
  border-color: rgba(12, 10, 9, 0.2);
}

.btn-primary:focus-visible,
.header-cta:focus-visible,
button.form-submit:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}

.btn-primary:visited,
.header-cta:visited {
  color: var(--btn-primary-fg) !important;
}

a.header-cta[href^="tel:"]::before {
  width: 1.2em;
  height: 1.2em;
}

.header-cta--bar {
  flex-shrink: 0;
}

/* Must beat a[href^="tel:"] { display: inline-flex } so only the bar CTA shows on desktop */
a.header-cta.header-cta--drawer {
  display: none;
}

@media (max-width: 768px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(3rem, auto) 1fr minmax(3rem, auto);
    align-items: center;
    gap: 0.5rem 0.75rem;
  }

  .header-nav-cluster {
    grid-column: 1;
    justify-self: start;
  }

  .header-actions {
    display: none !important;
  }

  .header-actions-cluster {
    grid-column: 3;
    justify-self: end;
    min-width: 2.75rem;
  }

  .logo-block {
    grid-column: 2;
    justify-self: center;
  }

  .nav-toggle {
    display: block;
    flex-shrink: 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    width: min(300px, 88vw);
    height: 100vh;
    background: linear-gradient(180deg, #27272a 0%, #18181b 100%);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: 1.25rem;
    border-left: 3px solid var(--accent);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    margin: 0;
    padding: 0;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--hero-fg);
    font-size: 1.65rem;
    line-height: 1;
    font-family: var(--font-display);
    cursor: pointer;
    z-index: 2;
  }

  .nav-close:hover {
    color: var(--accent-bright);
    border-color: var(--accent-bright);
  }

  .nav-close:focus-visible {
    outline: 2px solid var(--accent-bright);
    outline-offset: 2px;
  }

  .nav-close-icon {
    display: block;
    margin-top: -0.12em;
  }

  .nav-menu-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .nav-menu .nav-menu-links a {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  }

  .nav-menu .nav-menu-links a:hover {
    color: var(--label-gold);
    text-shadow: none;
  }

  a.header-cta.header-cta--drawer {
    display: inline-flex !important;
    width: 100%;
    margin-top: auto;
    justify-content: center;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 9.75rem clamp(1.35rem, 4.5vw, 2.25rem) 5.5rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.hero .hero-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.subpage-hero {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  min-height: 52vh;
  min-height: 52dvh;
  /* No horizontal padding here: it would show as body-colored gutters beside the full-bleed hero image. Inset lives on .hero-content. */
  padding: 0 0 clamp(3.25rem, 6vw, 4.5rem);
  align-items: stretch;
  box-sizing: border-box;
}

.hero.subpage-hero .hero-media {
  grid-row: 1;
  grid-column: 1;
}

.hero.subpage-hero .hero-content {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(2.25rem, 6vh, 4rem);
  align-self: stretch;
  min-height: 0;
  max-width: var(--subpage-inner-max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: clamp(1.35rem, 4.5vw, 2.25rem);
  padding-right: clamp(1.35rem, 4.5vw, 2.25rem);
  padding-top: calc(clamp(9.5rem, 18vh, 13rem) + 1rem);
  padding-bottom: clamp(2rem, 5vh, 3rem);
  box-sizing: border-box;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(88, 28, 8, 0.35) 0%,
      rgba(40, 18, 8, 0.78) 42%,
      rgba(18, 8, 4, 0.9) 100%
    ),
    radial-gradient(ellipse 85% 55% at 50% 0%, rgba(247, 146, 5, 0.35), transparent 52%);
  z-index: 1;
}

.hero--home .hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 38%, transparent 62%),
    linear-gradient(
      180deg,
      rgba(12, 12, 15, 0.75) 0%,
      rgba(18, 18, 22, 0.82) 45%,
      rgba(6, 6, 8, 0.94) 100%
    ),
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(0, 0, 0, 0.5), transparent 58%);
}

.hero.hero--home {
  padding: 0;
  align-items: stretch;
  min-height: 100vh;
  min-height: 100dvh;
}

.hero-shell {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 8.5rem var(--gutter) 3.5rem;
  box-sizing: border-box;
}

.hero.hero--home .hero-shell {
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding-top: calc(clamp(10.5rem, 16vw, 14rem) + env(safe-area-inset-top, 0px));
  padding-bottom: calc(clamp(4.25rem, 10vh, 6rem) + env(safe-area-inset-bottom, 0px));
}

.hero--home .hero-content {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero--home h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.1;
  max-width: min(100%, 26ch);
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}

.hero--home .hero-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--hero-lead-max);
}

.hero--home .hero-actions {
  justify-content: center;
}

.hero--home .hero-float {
  margin-top: 0;
  max-width: min(100%, 56rem);
  margin-left: auto;
  margin-right: auto;
}

.hero-float {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-zinc-bar);
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

.hero-float-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.25rem;
  flex: 1 1 200px;
  max-width: 22rem;
  min-width: min(100%, 14rem);
  background: transparent;
  border: none;
  border-radius: var(--radius);
  box-shadow: none;
  color: rgba(250, 250, 250, 0.92);
  text-decoration: none;
  animation: fadeReveal var(--duration-reveal-fast) var(--ease-out-expo) 0s both;
  transition: transform var(--duration-ui) var(--ease-spring), box-shadow var(--duration-ui) var(--ease-smooth),
    opacity 0.35s var(--ease-smooth);
}

.hero-float-card:nth-child(1) {
  animation-delay: 0.42s;
}

.hero-float-card:nth-child(2) {
  animation-delay: 0.56s;
}

.hero-float-card:nth-child(3) {
  animation-delay: 0.7s;
}

.hero-float-card:hover {
  transform: translateY(-4px);
  opacity: 1;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.hero-float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--label-gold);
  margin-bottom: 0.35rem;
}

.hero-float-card span,
.hero-float-card a {
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(250, 250, 250, 0.92);
}

.hero-float-card a {
  font-weight: 600;
  color: var(--accent-bright);
  text-decoration: none;
  word-break: break-word;
}

.hero-float-card a:hover {
  text-decoration: underline;
  color: #f79205;
}

.hero-float-icon {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--icon-box-zinc-bg);
  border: 1px solid var(--icon-box-zinc-border);
  color: var(--icon-zinc-amber);
}

.hero-float-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

/* Tel link in hero strip: match email line (no duplicate phone glyph from global tel rule) */
.hero-float-card a[href^="tel:"]::before {
  display: none;
}

/* Footer quick bar uses .footer-quick-icon SVG; hide global tel mask */
a.footer-quick-item[href^="tel:"]::before {
  display: none;
}

@media (max-width: 820px) {
  .hero-float {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-float-card {
    max-width: none;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.95rem, 4.5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--hero-fg);
  margin: 0 0 1rem;
  max-width: var(--hero-title-max);
  animation: fadeReveal var(--duration-reveal) var(--ease-out-expo) 0.06s both;
}

.hero-lead {
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--hero-lead);
  max-width: var(--section-copy-max);
  margin: 0 0 2rem;
  line-height: 1.55;
  animation: fadeReveal var(--duration-reveal) var(--ease-out-expo) 0.18s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  animation: fadeReveal var(--duration-reveal) var(--ease-out-expo) 0.3s both;
}

/* Secondary — same footprint as primary; default = on light surfaces */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-min-h);
  padding: var(--btn-pad-y) var(--btn-pad-x);
  box-sizing: border-box;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--btn-font-size);
  letter-spacing: var(--btn-letter);
  text-transform: uppercase;
  line-height: 1.2;
  border-radius: var(--btn-radius);
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(24, 24, 27, 0.14);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform var(--duration-ui) var(--ease-spring), box-shadow var(--duration-ui) var(--ease-smooth),
    background var(--duration-ui) var(--ease-smooth), border-color var(--duration-ui) var(--ease-smooth),
    color var(--duration-ui) var(--ease-smooth);
}

.btn-ghost:hover {
  text-decoration: none;
  transform: translateY(-3px);
  background: #fafafa;
  border-color: rgba(241, 62, 7, 0.35);
  color: var(--accent-deep);
  box-shadow: var(--shadow);
}

/* Hero only: same secondary treatment as .btn-outline-light on dark */
.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--hero-fg);
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.hero .btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(247, 146, 5, 0.55);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-strip {
  margin-top: 3.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 250, 245, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--hero-lead);
  animation: fadeReveal var(--duration-reveal) var(--ease-out-expo) 0.4s both;
}

.hero-strip strong {
  color: var(--accent-gold);
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

@keyframes fadeReveal {
  from {
    opacity: 0;
    transform: translateY(1.75rem) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  @keyframes fadeReveal {
    from {
      opacity: 0;
      transform: translateY(6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Sections */
section {
  padding: var(--section-y) var(--gutter);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 3.2vw, 2.1rem);
  line-height: 1.18;
  margin: 0 0 0.85rem;
  letter-spacing: 0.01em;
  color: var(--text);
  max-width: 42rem;
}

.section-intro {
  color: var(--text);
  max-width: var(--section-copy-max);
  margin: 0 0 2rem;
  font-size: 1.08rem;
  line-height: 1.65;
}

/* Trust — section is plain zinc; photos live on each .trust-card */
.trust {
  background: var(--gradient-zinc-main);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.trust .section-label {
  color: var(--label-gold);
  letter-spacing: 0.14em;
}

.trust .section-title {
  color: var(--text-zinc);
}

.trust .section-intro {
  color: var(--text-zinc-muted);
}

.trust--overlap {
  margin-top: -2rem;
  padding-top: calc(var(--section-y) + 1.25rem);
  position: relative;
  z-index: 4;
}

@media (max-width: 820px) {
  .trust--overlap {
    margin-top: -1rem;
    padding-top: calc(var(--section-y) + 0.5rem);
  }
}

/* About (home) */
.about {
  padding: var(--section-y) var(--gutter);
  background: var(--gradient-zinc-bar);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.about .section-label {
  color: var(--label-gold);
  letter-spacing: 0.14em;
}

.about .section-title {
  color: var(--text-zinc);
}

.about .section-intro {
  color: #ffffff;
}

.about .about-body {
  color: var(--text-zinc-muted);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem 3.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}

.about-lead {
  margin-bottom: 1rem !important;
}

.about-body {
  margin: 0 0 1.75rem;
  color: var(--text-zinc-muted);
  max-width: var(--section-copy-max);
  line-height: 1.65;
}

.about-visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 520px;
}

@media (max-width: 900px) {
  .about-visual {
    justify-self: center;
    max-width: 420px;
  }
}

.about-visual-frame {
  position: absolute;
  inset: 10% -6% -4% 8%;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(241, 62, 7, 0.2) 0%, rgba(247, 146, 5, 0.12) 100%);
  z-index: 0;
}

.about-visual-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(24, 24, 27, 0.08);
  box-shadow: var(--shadow-md);
}

.about-visual-img img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 280px;
  object-fit: cover;
}

.link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.5rem 1.2rem;
  box-sizing: border-box;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--btn-font-size);
  letter-spacing: var(--btn-letter);
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--accent-deep);
  border: 1px solid rgba(241, 62, 7, 0.3);
  border-radius: 999px;
  text-decoration: none;
  background: #fff;
  transition: transform var(--duration-ui) var(--ease-spring), background var(--duration-ui) var(--ease-smooth),
    border-color var(--duration-ui) var(--ease-smooth), box-shadow var(--duration-ui) var(--ease-smooth);
}

.link-pill:hover {
  transform: translateY(-2px);
  background: #fffaf5;
  border-color: rgba(241, 62, 7, 0.5);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.about .link-pill {
  color: var(--label-gold);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(247, 146, 5, 0.45);
}

.about .link-pill:hover {
  background: rgba(247, 146, 5, 0.12);
  border-color: rgba(247, 146, 5, 0.65);
  color: #f79205;
  text-decoration: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 720px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 1.35rem 1.25rem;
  min-height: 12rem;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-zinc);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: transform var(--duration-ui) var(--ease-spring), box-shadow var(--duration-ui) var(--ease-smooth),
    border-color var(--duration-ui) var(--ease-smooth);
}

.trust-grid .trust-card:nth-child(1) {
  --trust-card-bg: url("/assets/images/info-card-1.jpg");
}

.trust-grid .trust-card:nth-child(2) {
  --trust-card-bg: url("/assets/images/info-card-2.jpg");
}

.trust-grid .trust-card:nth-child(3) {
  --trust-card-bg: url("/assets/images/info-card-3.jpg");
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, transparent 42%),
    linear-gradient(
      165deg,
      rgba(8, 8, 10, 0.92) 0%,
      rgba(6, 6, 8, 0.9) 48%,
      rgba(0, 0, 0, 0.94) 100%
    ),
    var(--trust-card-bg);
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  pointer-events: none;
  transition: transform 0.5s var(--ease-out-expo);
}

.trust-grid .trust-card:nth-child(1)::before {
  background-position: center, center, center 38%;
}

.trust-grid .trust-card:nth-child(2)::before {
  background-position: center, center, center 42%;
}

.trust-grid .trust-card:nth-child(3)::before {
  background-position: center, center, center 45%;
}

.trust-card:hover::before {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .trust-card::before {
    transition: none;
  }

  .trust-card:hover::before {
    transform: none;
  }
}

.trust-card > * {
  position: relative;
  z-index: 1;
}

.trust-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(247, 146, 5, 0.35);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}

.trust-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 0 0.85rem;
  color: var(--icon-zinc-amber);
  background: var(--icon-box-zinc-bg);
  border: 1px solid var(--icon-box-zinc-border);
  border-radius: var(--radius);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.trust-card:hover .trust-card-icon {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(247, 146, 5, 0.45);
}

.trust-card-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--label-gold);
  transition: color 0.2s ease;
}

.trust-card:hover h3 {
  color: #f79205;
}

.trust-card p {
  margin: 0;
  color: var(--text-zinc-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.trust-card:hover p {
  color: var(--text-zinc);
}

/* FAQ accordion — same zinc band as trust / why / contact */
.faq {
  padding: var(--section-y) var(--gutter);
  background: var(--gradient-zinc-main);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.faq .section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* Align heading block with the accordion column (same width + centering as .faq-list) */
.faq .section-label,
.faq .section-title,
.faq .section-intro {
  max-width: 42rem;
  margin-inline: auto;
}

.faq .section-label {
  color: var(--label-gold);
  letter-spacing: 0.14em;
}

.faq .section-title {
  color: var(--text-zinc);
  margin-bottom: 0.35rem;
}

.faq .section-intro {
  color: var(--text-zinc-muted);
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-zinc);
  background: rgba(39, 39, 42, 0.65);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition:
    border-color 0.4s var(--ease-smooth),
    box-shadow 0.45s var(--ease-out-expo),
    transform 0.45s var(--ease-spring);
}

.faq-item.is-open {
  border-color: rgba(247, 146, 5, 0.35);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px) scale(1.01);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--label-gold);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.25s ease, background 0.35s var(--ease-smooth);
}

.faq-trigger:hover {
  color: #f79205;
  background: rgba(0, 0, 0, 0.15);
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

.faq-item.is-open .faq-trigger {
  color: #f79205;
}

.faq-trigger-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--icon-box-zinc-bg);
  border: 1px solid var(--icon-box-zinc-border);
  color: var(--icon-zinc-amber);
  transition:
    transform 0.55s var(--ease-out-expo),
    background 0.35s ease,
    border-color 0.35s ease;
}

.faq-item.is-open .faq-trigger-icon {
  transform: rotate(180deg);
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(247, 146, 5, 0.45);
}

.faq-trigger-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease-out-expo);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-panel-inner p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-zinc-muted);
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-trigger-icon,
  .faq-panel {
    transition-duration: 0.01ms !important;
  }

  .faq-item.is-open {
    transform: none;
  }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 901px) {
  #services .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Service subpages: three “other services” cards */
@media (min-width: 901px) {
  #other-services .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service cards — stacked layout; zinc band like footer quick bar */
.services--home {
  padding: var(--section-y) var(--gutter);
  background: var(--gradient-zinc-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.services--home .section-label {
  color: var(--label-gold);
  letter-spacing: 0.14em;
}

.services--home .section-title {
  color: var(--text-zinc);
}

.services--home .section-intro {
  color: var(--text-zinc-muted);
}

.services-grid--cards {
  gap: clamp(1.25rem, 3vw, 2rem);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  align-self: stretch;
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid var(--border-zinc);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  background: #27272a;
  transition: transform var(--duration-ui) var(--ease-spring), box-shadow var(--duration-ui) var(--ease-smooth),
    border-color var(--duration-ui) var(--ease-smooth);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
  border-color: rgba(247, 146, 5, 0.25);
}

.service-card-media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  /* overflow visible so the icon can sit half below the crop */
  overflow: visible;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--bg-elevated);
}

/* Fixed height from width; img is out of flow so intrinsic file dimensions cannot stretch the card */
.service-card-media-crop {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card-media-crop::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 -1px 0 rgba(24, 24, 27, 0.06);
}

.service-card-media-crop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-card-icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(165deg, #f79205 0%, #f13e07 100%);
  border: 3px solid #0a0a0a;
  color: #0a0a0a;
  box-shadow: 0 6px 22px rgba(241, 62, 7, 0.35), 0 3px 8px rgba(15, 23, 42, 0.1);
  z-index: 2;
  transition: transform var(--duration-ui) var(--ease-spring), box-shadow var(--duration-ui) var(--ease-smooth);
}

.service-card:hover .service-card-icon {
  transform: translate(-50%, 50%) scale(1.06);
  box-shadow: 0 10px 32px rgba(241, 62, 7, 0.45), 0 4px 12px rgba(15, 23, 42, 0.12);
}

.service-card-icon img {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.service-card-icon svg {
  width: 2.15rem;
  height: 2.15rem;
  stroke-width: 1.75;
}

.service-card-icon svg [fill="currentColor"] {
  stroke: none;
}

.service-card-body {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 3.15rem 1.5rem 1.75rem;
  text-align: center;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--label-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card-body p {
  flex: 1 1 auto;
  margin: 0;
  color: var(--text-zinc-muted);
  font-size: 1rem;
  line-height: 1.62;
}

/* Pin CTA to bottom so row heights match and links stay visible */
.service-card .service-more {
  display: inline-block;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-bright);
  text-decoration: none;
}

.service-card .service-more:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Legacy class name used in links */
.service-body {
  padding: 1.5rem;
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-body p {
  margin: 0;
  color: var(--text-zinc-muted);
  font-size: 0.98rem;
}

.subpage-main #other-services {
  background: var(--gradient-zinc-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.subpage-main #other-services .section-label {
  color: var(--label-gold);
  letter-spacing: 0.14em;
}

.subpage-main #other-services .section-title {
  color: var(--text-zinc);
}

.subpage-main #other-services .section-intro {
  color: #ffffff;
}

/* Error fallback: services strip without .services--home (dark main background) */
.services:not(.services--home) .section-intro {
  color: #ffffff;
}

.subpage-main .service-body h3,
.subpage-main #other-services .service-card-body h3 {
  color: var(--label-gold);
}

.subpage-main .service-body p,
.subpage-main #other-services .service-card-body p {
  color: var(--text-zinc-muted);
}

/* Mid-page CTA band — same zinc bar as footer quick strip */
.cta-band {
  position: relative;
  padding: 2.75rem var(--gutter) 2.85rem;
  background: var(--gradient-zinc-bar);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cta-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(241, 62, 7, 0.55) 0%, #f13e07 50%, rgba(184, 50, 4, 0.9) 100%);
  pointer-events: none;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.75rem 2.5rem;
}

.cta-band-copy {
  min-width: 0;
  align-self: center;
}

.cta-band-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.cta-band-copy p {
  margin: 0;
  color: #ffffff;
  line-height: 1.6;
  max-width: 40rem;
  font-size: 1.06rem;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  align-self: center;
}

/* CTA band — same primary + outline as rest of site */
.cta-band .btn-outline-light {
  min-width: 10.5rem;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-min-h);
  padding: var(--btn-pad-y) var(--btn-pad-x);
  box-sizing: border-box;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--btn-font-size);
  letter-spacing: var(--btn-letter);
  text-transform: uppercase;
  line-height: 1.2;
  border-radius: var(--btn-radius);
  color: #fafafa;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--duration-ui) var(--ease-spring), background var(--duration-ui) var(--ease-smooth),
    border-color var(--duration-ui) var(--ease-smooth), color var(--duration-ui) var(--ease-smooth),
    box-shadow var(--duration-ui) var(--ease-smooth);
}

.btn-outline-light:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(247, 146, 5, 0.55);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 720px) {
  .cta-band-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .cta-band-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-band-actions {
    justify-content: center;
    width: 100%;
  }

  .cta-band .btn-primary,
  .cta-band .btn-outline-light {
    width: 100%;
    max-width: 20rem;
    min-width: 0;
  }
}

/* Why */
.why {
  background: var(--gradient-zinc-main);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.why .section-label {
  color: var(--label-gold);
  letter-spacing: 0.14em;
}

.why .section-title {
  color: var(--text-zinc);
}

.why .section-intro {
  color: var(--text-zinc-muted);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
  }
}

.why-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(24, 24, 27, 0.07);
  box-shadow: var(--shadow-sm);
}

/* Sticky left image while scrolling the copy — must come after base so position isn’t overridden */
@media (min-width: 901px) {
  .why-visual {
    position: sticky;
    top: 6.25rem;
    align-self: start;
  }
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  display: block;
}

.why-copy .section-intro {
  margin-bottom: 1.5rem;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  background: var(--icon-box-zinc-bg);
  border: 1px solid var(--icon-box-zinc-border);
  color: var(--label-gold);
  font-weight: 700;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}

.why-list--checks .why-check {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  color: var(--label-gold);
  margin-top: 0.15rem;
}

.why-list--checks .why-check svg {
  width: 100%;
  height: 100%;
  display: block;
}

.why-list h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--label-gold);
}

.why-list p {
  margin: 0;
  color: var(--text-zinc-muted);
  font-size: 1.02rem;
}

.why-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.cta-box .cta-actions {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  min-width: 0;
}

@media (max-width: 720px) {
  .cta-box .cta-actions {
    justify-content: center;
  }
}

/* Media showcase: before / after pair */
.media-showcase {
  padding: var(--section-y) var(--gutter);
  background: var(--gradient-zinc-main);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.media-showcase .section-label {
  color: var(--label-gold);
  letter-spacing: 0.14em;
}

.media-showcase .section-title {
  color: var(--text-zinc);
}

.media-showcase .section-intro {
  color: var(--text-zinc-muted);
}

.media-showcase-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.media-showcase-bas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2.5rem;
  margin-top: 0.25rem;
  align-items: start;
}

@media (min-width: 801px) {
  .media-showcase-bas > .ba-slider:first-child {
    padding-right: 1.25rem;
    margin-right: 0;
    border-right: 1px solid rgba(24, 24, 27, 0.1);
  }
}

.media-showcase-bas > .ba-slider {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  align-self: start;
}

.media-showcase .ba-slider--compact {
  margin: 0;
}

.media-showcase .ba-slider--compact .ba-slider__viewport {
  max-height: min(400px, 54vh);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(24, 24, 27, 0.07);
}

@media (max-width: 800px) {
  .media-showcase-bas {
    grid-template-columns: 1fr;
  }

  .media-showcase .ba-slider--compact .ba-slider__viewport {
    max-height: min(340px, 50vh);
  }
}

/* Testimonials — zinc field + dark cards */
.testimonials {
  padding: var(--section-y) var(--gutter);
  background: var(--gradient-zinc-bar);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.testimonials .section-label {
  text-align: center;
  color: var(--label-gold);
  letter-spacing: 0.14em;
}

.testimonials .section-title.testimonials-title {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.75rem;
  text-align: center;
  max-width: 100%;
  color: var(--text-zinc);
}

.testimonials-slider {
  margin-top: 0.25rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-slider-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg);
}

.testimonials-track {
  display: flex;
  width: 200%;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    transition: none;
  }
}

.testimonials-slide {
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0 0.35rem;
}

.testimonials-slide:first-child {
  padding-left: 0;
}

.testimonials-slide:last-child {
  padding-right: 0;
}

.testimonials-slide-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem 1.25rem;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.testimonials-slide-list > li {
  margin: 0;
  padding: 0;
}

.testimonial-card {
  margin: 0;
  padding: 1.5rem 1.4rem;
  background: rgba(24, 24, 27, 0.55);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-zinc);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.testimonial-card p {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 1.06rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-zinc-muted);
  flex: 1;
}

.testimonial-card footer {
  margin: 0;
  padding-top: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-style: normal;
  font-family: var(--font-body);
  color: var(--label-gold);
  letter-spacing: 0.01em;
}

.testimonials-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.35rem;
}

.testimonials-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(24, 24, 27, 0.45);
  color: var(--text-zinc);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.testimonials-nav-btn:hover {
  background: rgba(247, 146, 5, 0.12);
  border-color: rgba(247, 146, 5, 0.35);
  color: var(--label-gold);
}

.testimonials-nav-btn:focus-visible {
  outline: 2px solid var(--label-gold);
  outline-offset: 2px;
}

.testimonials-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.testimonials-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonials-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.testimonials-dot::after {
  content: "";
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.testimonials-dot:hover::after {
  background: rgba(247, 146, 5, 0.45);
}

.testimonials-dot.is-active::after {
  background: var(--label-gold);
  transform: scale(1.25);
}

.testimonials-dot:focus-visible {
  outline: 2px solid var(--label-gold);
  outline-offset: 2px;
}

@media (max-width: 800px) {
  .testimonials-slide {
    padding: 0 0.2rem;
  }

  .testimonials-slide-list {
    grid-template-columns: 1fr;
  }
}

/* CTA */
.cta {
  padding: 4rem clamp(1.35rem, 4.5vw, 2.25rem);
  background: var(--gradient-zinc-main);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta--final {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.cta-box {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.25rem 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-zinc-bar);
  border: 1px solid var(--border-zinc);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 720px) {
  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
    align-items: stretch;
  }

  .cta-box p {
    margin-left: auto;
    margin-right: auto;
  }
}

.cta-box > div:first-of-type {
  min-width: 0;
  max-width: min(100%, 52rem);
}

.cta-box p + p {
  margin-top: 1rem;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: var(--text-zinc);
}

.cta-box p {
  margin: 0;
  color: var(--text-zinc-muted);
  line-height: 1.65;
  max-width: var(--section-copy-max);
}

.cta-box .btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-zinc);
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.cta-box .btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(247, 146, 5, 0.55);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Contact */
.contact {
  padding: 2.75rem 1.25rem 4.5rem;
  background: var(--gradient-zinc-main);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact .section-label {
  color: var(--label-gold);
  letter-spacing: 0.14em;
}

.contact .section-title {
  color: var(--text-zinc);
}

.contact .section-intro {
  color: var(--text-zinc-muted);
}

.contact-aside .section-intro {
  margin-bottom: 1.75rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem 2.75rem;
  align-items: start;
  margin-top: 0;
}

.contact-layout .contact-grid {
  max-width: 100%;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Single column: form above contact info (desktop layout unchanged) */
  .contact-layout .contact-form-wrap {
    order: -1;
  }

  .contact-aside .section-intro {
    margin-bottom: 2rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 640px;
}

.contact-card {
  padding: 1.75rem;
  background: rgba(39, 39, 42, 0.55);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-zinc);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--label-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--text-zinc-muted);
}

.contact-card a.phone-link {
  color: var(--accent-bright);
  font-weight: 700;
  font-size: 1.2rem;
}

.contact-card a[href^="mailto:"] {
  color: var(--accent-bright);
  font-weight: 600;
}

.email-pending {
  color: var(--text-zinc-dim);
  font-style: italic;
}

@keyframes form-spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-form-wrap {
  position: relative;
  margin-top: 2.75rem;
  max-width: 640px;
  width: 100%;
  color-scheme: dark;
}

.contact-layout .contact-form-wrap {
  margin-top: 0;
  max-width: none;
}

.contact-layout .contact-form-head {
  padding: 1.15rem 2rem 1.15rem;
}

.contact-layout .contact-form-title {
  margin-bottom: 0.4rem;
  padding-bottom: 0.7rem;
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(
    135deg,
    rgba(241, 62, 7, 0.18) 0%,
    rgba(247, 146, 5, 0.08) 38%,
    transparent 52%,
    rgba(241, 62, 7, 0.1) 100%
  );
  opacity: 0.95;
  z-index: 0;
  pointer-events: none;
}

.contact-form-panel {
  position: relative;
  z-index: 1;
  padding: 0;
  overflow: hidden;
  background: var(--gradient-zinc-bar);
  border: 1px solid var(--border-zinc);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.contact-form-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(241, 62, 7, 0.75) 42%,
    rgba(247, 146, 5, 0.5) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.contact-form-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 3px,
    rgba(241, 62, 7, 0.02) 3px,
    rgba(241, 62, 7, 0.02) 4px
  );
  pointer-events: none;
  opacity: 0.5;
}

.contact-form-head {
  position: relative;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.15);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
  letter-spacing: -0.01em;
  color: var(--text-zinc);
  position: relative;
  padding-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.contact-form-title::before {
  content: "";
  flex-shrink: 0;
  width: 1.35em;
  height: 1.35em;
  background-color: var(--label-gold);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22white%22%20d%3D%22M20%204H4c-1.1%200-1.99.9-1.99%202L2%2018c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm0%204l-8%205-8-5V6l8%205%208-5v2z%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22white%22%20d%3D%22M20%204H4c-1.1%200-1.99.9-1.99%202L2%2018c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm0%204l-8%205-8-5V6l8%205%208-5v2z%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.contact-form-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    rgba(247, 146, 5, 0.65) 38%,
    rgba(247, 146, 5, 0.35) 72%,
    transparent 100%
  );
  box-shadow: 0 0 16px rgba(241, 62, 7, 0.25);
}

.contact-form-sub {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-zinc-muted);
  max-width: min(100%, 70ch);
}

.form-success {
  margin: 0 2rem 0;
  padding: 1.15rem 1.35rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(247, 146, 5, 0.35);
  border-radius: var(--radius);
  color: var(--text-zinc);
  font-weight: 700;
  font-size: 1.06rem;
  line-height: 1.45;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.contact-form-head + .form-success {
  margin-top: 1rem;
}

.contact-form-head + .form-error {
  margin-top: 1rem;
}

.form-error {
  margin: 0 2rem 0;
  padding: 1rem 1.2rem;
  text-align: left;
  background: rgba(254, 226, 226, 0.85);
  border: 1px solid rgba(220, 38, 38, 0.35);
  border-radius: var(--radius);
  color: #7f1d1d;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-error:not([hidden]) + .form-success {
  margin-top: 0.75rem;
}

.contact-form-panel.is-success {
  padding: 2.25rem 1.5rem 2.5rem;
}

.contact-form-panel.is-success .form-success {
  margin: 0;
  padding: 1.5rem 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  margin: 0;
  padding: 1.75rem 2rem 2rem;
  position: relative;
  width: 100%;
  max-width: 100%;
}

/* [hidden] must win over component display rules */
.contact-form[hidden],
#contact-form-head[hidden] {
  display: none !important;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.contact-form .form-label {
  display: block;
  order: 0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-zinc);
  line-height: 1.35;
}

.contact-form .form-optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text-zinc-dim);
}

.contact-form .form-input,
.contact-form textarea.form-input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-zinc);
  background-color: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--icon-box-zinc-border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form textarea.form-input {
  vertical-align: top;
  min-height: 7.5rem;
  resize: vertical;
  line-height: 1.55;
}

.contact-form .form-input::placeholder {
  color: var(--text-zinc-dim);
  opacity: 1;
}

.contact-form .form-input:hover {
  border-color: rgba(241, 62, 7, 0.35);
}

.contact-form .form-input:focus {
  outline: none;
  border-color: rgba(241, 62, 7, 0.65);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.contact-form .form-input:-webkit-autofill,
.contact-form .form-input:-webkit-autofill:hover,
.contact-form .form-input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text-zinc);
  box-shadow: 0 0 0 1000px rgba(30, 30, 35, 0.95) inset;
  transition: background-color 99999s ease-out;
}

.contact-form .form-row--message .form-label {
  margin-bottom: 0;
}

.contact-form .form-row--message textarea {
  margin-top: 0;
}

.form-actions {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
}

/* Visuals match .btn-primary via shared rule above; layout only here */
button.form-submit {
  position: relative;
  width: 100%;
}

.form-submit-text {
  transition: opacity 0.2s ease;
}

.form-submit-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.35rem;
  height: 1.35rem;
  margin: -0.675rem 0 0 -0.675rem;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.form-submit.is-loading .form-submit-text {
  opacity: 0;
}

.form-submit.is-loading .form-submit-spinner {
  opacity: 1;
  animation: form-spin 0.65s linear infinite;
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}

@media (max-width: 480px) {
  .contact-form-head {
    padding: 1.5rem 1.2rem 1.2rem;
  }

  .contact-layout .contact-form-head {
    padding: 1.05rem 1.2rem 1rem;
  }

  .contact-form {
    padding: 1.35rem 1.2rem 1.5rem;
  }

  .form-success {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
  }

  .form-error {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
  }
}

/* Footer */
.site-footer {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(24, 24, 27, 0.08);
}

.footer-quickbar {
  background: var(--gradient-zinc-bar);
  padding: 1.35rem clamp(1.25rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-quickbar-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  align-items: center;
}

@media (max-width: 720px) {
  .footer-quickbar-inner {
    grid-template-columns: 1fr;
  }
}

.footer-quick-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: rgba(250, 250, 250, 0.92);
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-quick-item:hover {
  color: #fff;
  text-decoration: none;
}

.footer-quick-item--static {
  cursor: default;
}

.footer-quick-item--static:hover {
  color: rgba(250, 250, 250, 0.92);
}

.footer-quick-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--label-gold);
  margin-bottom: 0.25rem;
}

.footer-quick-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f79205;
}

.footer-quick-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-main {
  background: var(--gradient-zinc-main);
  padding: 3rem clamp(1.25rem, 4vw, 2rem) 2.5rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.75fr) minmax(0, 0.75fr);
  gap: 2.5rem 2rem;
  align-items: start;
}

@media (max-width: 820px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
    align-items: start;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand-logo img {
    max-width: 132px;
  }

  .footer-col {
    min-width: 0;
  }

  .footer-heading {
    margin-bottom: 0.65rem;
    font-size: 0.76rem;
  }

  .footer-links {
    gap: 0.45rem;
  }

  .footer-links a {
    font-size: 0.94rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-logo {
  display: inline-block;
  line-height: 0;
}

.footer-brand-logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-brand-logo img {
  max-width: 200px;
  height: auto;
  display: block;
}

.footer-brand p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #ffffff;
  max-width: 32ch;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--label-gold);
  margin: 0 0 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  font-size: 1.02rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-bright);
  text-decoration: underline;
}

.footer-legal {
  background: #09090b;
  padding: 1.25rem clamp(1.25rem, 4vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-legal-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
}

.footer-legal-inner p {
  margin: 0;
}

.footer-address {
  margin: 0;
}

/* Subpages: compact footer (legacy markup) */
.site-footer:has(.footer-inner) {
  background: #09090b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer .footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer .footer-inner a {
  color: rgba(247, 146, 5, 0.95);
  font-weight: 600;
  text-decoration: none;
}

.site-footer .footer-inner a:hover {
  color: var(--accent-bright);
  text-decoration: underline;
}

/* Service cards as links */
a.service-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.service-card:hover {
  text-decoration: none;
  color: inherit;
}

/* Subpages: top clearance is on .hero.subpage-hero .hero-content only; padding-top on the hero section shows as a black bar above the image */

.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
  font-size: 0.88rem;
  color: var(--text-subtle);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumb a {
  color: var(--text-subtle);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

.hero-subpage-headline {
  width: 100%;
}

.hero.subpage-hero .breadcrumb {
  margin: 0;
  padding: 0;
  font-size: 1.06rem;
  line-height: 1.45;
  letter-spacing: 0.03em;
  max-width: none;
  align-self: flex-start;
}

.hero.subpage-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}

.hero.subpage-hero .breadcrumb a:hover {
  color: var(--accent-bright);
}

.hero.subpage-hero .breadcrumb [aria-current="page"] {
  color: #ffffff;
  font-weight: 600;
}

.hero.subpage-hero .breadcrumb span[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.42);
}

.hero.subpage-hero h1 {
  max-width: none;
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: var(--hero-fg);
}

.hero.subpage-hero .subpage-lead {
  color: var(--hero-lead);
  font-size: 1.16rem;
  max-width: var(--section-copy-max);
  margin: 0;
}

.subpage-main {
  background: var(--gradient-zinc-main);
}

.service-detail {
  padding: 3.75rem clamp(1.35rem, 4.5vw, 2.25rem) 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-detail-inner {
  max-width: var(--subpage-inner-max);
  margin: 0 auto;
}

.service-detail-inner h2 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.01em;
  color: var(--label-gold);
}

.service-detail-inner h2:first-of-type {
  margin-top: 0;
}

.service-detail-inner p {
  margin: 0 0 1rem;
  color: var(--text-zinc-muted);
}

.service-detail-inner ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--text-zinc-muted);
}

.service-detail-inner li {
  margin-bottom: 0.5rem;
}

.service-detail-visual {
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(24, 24, 27, 0.08);
  box-shadow: var(--shadow);
}

.service-detail-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 380px;
}

/* Before / after image slider */
.ba-slider {
  --ba-pos: 50%;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.ba-slider__viewport {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  max-height: min(420px, 70vh);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(24, 24, 27, 0.08);
  box-shadow: var(--shadow);
  touch-action: none;
  user-select: none;
  background: var(--bg-card);
  cursor: pointer;
}

.ba-slider__after,
.ba-slider__before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-slider__before {
  z-index: 1;
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}

.ba-slider__handle {
  position: absolute;
  left: var(--ba-pos);
  top: 0;
  bottom: 0;
  width: 48px;
  margin-left: -24px;
  z-index: 2;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  touch-action: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ba-slider__handle:active {
  cursor: grabbing;
}

.ba-slider__handle:focus {
  outline: none;
}

.ba-slider__handle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.ba-slider__handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.ba-slider__handle::after {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 16, 17, 0.92);
  border: 2px solid var(--accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

/* Corner badges — inside viewport, top L/R; pointer-events none so slider still drags */
.ba-slider__meta {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.5rem 0.55rem;
  pointer-events: none;
  box-sizing: border-box;
}

.ba-slider__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 7.75rem;
  width: 7.75rem;
  max-width: 7.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: rgba(255, 250, 245, 0.98);
  background: rgba(8, 8, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-sizing: border-box;
}

/* Accent tint: before = left (cooler), after = right (warmer) — same type metrics */
.ba-slider__label--before {
  border-color: rgba(255, 255, 255, 0.18);
}

.ba-slider__label--after {
  border-color: rgba(247, 146, 5, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(247, 146, 5, 0.12);
}

@media (max-width: 480px) {
  .ba-slider__label {
    min-width: 6.75rem;
    width: 6.75rem;
    max-width: 6.75rem;
    font-size: 0.8rem;
    padding: 0.45rem 0.5rem;
    letter-spacing: 0.14em;
  }

  .ba-slider__meta {
    padding: 0.4rem 0.45rem;
  }
}

.ba-slider__hint {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .ba-slider__handle:active {
    cursor: pointer;
  }
}

.related-services {
  padding: 3rem clamp(1.35rem, 4.5vw, 2.25rem) 4rem;
  background: linear-gradient(180deg, var(--bg-page) 0%, #e4e4e7 100%);
  border-top: 1px solid rgba(24, 24, 27, 0.06);
}

.related-services h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.related-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

.related-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-display);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.related-card:hover {
  border-color: rgba(241, 62, 7, 0.35);
  background: #f4f4f5;
  text-decoration: none;
}

.related-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-elevated);
}

.related-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.related-card:hover .related-card-media img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .related-card-media img {
    transition: none;
  }

  .related-card:hover .related-card-media img {
    transform: none;
  }
}

.related-card-text {
  display: block;
  padding: 1rem 1.25rem 1.15rem;
  text-align: left;
}

.related-card-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}

.related-card-sub {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 0.35rem;
}

/* Location pages: text-only related links (no image) */
.related-grid > a:not(.related-card) {
  display: block;
  padding: 1.1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-display);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.related-grid > a:not(.related-card):hover {
  border-color: rgba(241, 62, 7, 0.35);
  background: #f4f4f5;
  text-decoration: none;
}

.related-grid > a:not(.related-card) span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 0.35rem;
}
