/*
  Kenny D's LLC — Consolidated Global Stylesheet

  Merge order intentionally preserves the original cascade:
  1. Shared site and homepage styles
  2. About page styles
  3. Services page styles
  4. FAQ page styles
  5. Contact page styles

  Replace the five individual stylesheet links with one link to this file.
*/

/* ==========================================================================
   SHARED SITE + HOME PAGE
   ========================================================================== */

/*
  Kenny D's LLC — homepage redesign
  Loaded after global.css and scoped to body.home-page so existing interior
  pages keep their current styling until they are redesigned.
*/

.home-page {
  --home-ink: #121416;
  --home-ink-soft: #22262a;
  --home-orange: #ef7d24;
  --home-orange-dark: #b94d08;
  --home-cream: #f4f0e9;
  --home-paper: #ffffff;
  --home-muted: #62676c;
  --home-line: rgba(18, 20, 22, 0.14);
  --home-shadow: 0 24px 60px rgba(18, 20, 22, 0.12);
  --home-radius: 22px;
  --home-shell: 1180px;

  margin: 0;
  color: var(--home-ink);
  background: var(--home-cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

.home-page img {
  max-width: 100%;
  height: auto;
}

.home-page a {
  color: inherit;
}

.home-page .site-shell {
  width: min(calc(100% - 40px), var(--home-shell));
  margin-inline: auto;
}

.home-page .skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--home-paper);
  color: var(--home-ink);
  font-weight: 800;
  box-shadow: var(--home-shadow);
}

.home-page .skip-link:focus {
  transform: translateY(0);
}

.home-page :focus-visible {
  outline: 3px solid var(--home-orange);
  outline-offset: 4px;
}

/* Header */
.home-page .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(18, 20, 22, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-page .utility-bar {
  background: var(--home-ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.home-page .utility-inner p {
  margin: 0;
}

.home-page .header-main {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.home-page .brand {
  display: block;
  width: 174px;
  flex: 0 0 auto;
}

.home-page .brand img {
  display: block;
  width: 100%;
}

.home-page .primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
}

.home-page .primary-nav a {
  position: relative;
  padding: 14px 0;
  color: var(--home-ink);
  font-size: 0.93rem;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: 0.035em;
}

.home-page .primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--home-orange);
  transition: transform 180ms ease;
}

.home-page .primary-nav a:hover::after,
.home-page .primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.home-page .header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 192px;
  padding: 12px 17px;
  border: 2px solid var(--home-ink);
  border-radius: 999px;
  color: var(--home-ink);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.05;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.home-page .header-call:hover {
  color: #fff;
  background: var(--home-ink);
  transform: translateY(-2px);
}

.home-page .header-call svg {
  width: 22px;
  height: 22px;
  fill: var(--home-orange);
}

.home-page .header-call small {
  display: block;
  margin-bottom: 4px;
  color: var(--home-muted);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-page .header-call:hover small {
  color: rgba(255, 255, 255, 0.66);
}

.home-page .menu-toggle {
  display: none;
}

/* Main / Hero */
.home-page main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.home-page .home-hero {
  position: relative;
  min-height: clamp(650px, 72vh, 820px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--home-ink);
}

.home-page .hero-media,
.home-page .hero-shade {
  position: absolute;
  inset: 0;
}

.home-page .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.82) contrast(1.08);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.home-page .hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.94) 0%, rgba(8, 10, 11, 0.82) 42%, rgba(8, 10, 11, 0.43) 72%, rgba(8, 10, 11, 0.62) 100%),
    linear-gradient(0deg, rgba(8, 10, 11, 0.5), transparent 45%);
}

.home-page .hero-layout {
  position: relative;
  z-index: 2;
  min-height: clamp(650px, 72vh, 820px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
  padding-block: 88px;
}

.home-page .hero-copy {
  max-width: 770px;
}

.home-page .eyebrow,
.home-page .section-kicker {
  margin: 0 0 18px;
  color: var(--home-orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-page .eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
}

.home-page .eyebrow span {
  width: 42px;
  height: 4px;
  background: var(--home-orange);
}

.home-page .home-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3.25rem, 7.2vw, 6.8rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-align: left;
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.36);
}

.home-page .hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.home-page .button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.home-page .button:hover {
  transform: translateY(-3px);
}

.home-page .button-primary {
  background: var(--home-orange);
  color: #111;
  box-shadow: 0 12px 32px rgba(239, 125, 36, 0.3);
}

.home-page .button-primary:hover {
  color: #111;
  background: #ff913d;
  box-shadow: 0 16px 38px rgba(239, 125, 36, 0.42);
}

.home-page .button-ghost {
  border-color: rgba(255, 255, 255, 0.64);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.home-page .button-ghost:hover {
  color: #111;
  background: #fff;
}

.home-page .hero-proof {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 5px solid var(--home-orange);
  border-radius: 14px;
  background: rgba(15, 17, 19, 0.74);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-page .proof-kicker {
  margin: 0;
  color: var(--home-orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-page .hero-proof h2 {
  margin: 8px 0 22px;
  color: #fff;
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.home-page .hero-proof ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-page .hero-proof li {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-page .hero-proof strong {
  color: #fff;
  font-size: 0.96rem;
}

.home-page .hero-proof span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

/* Quick contact band */
.home-page .quick-contact {
  background: var(--home-orange);
  color: var(--home-ink);
}

.home-page .quick-contact-inner {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.home-page .quick-contact p {
  margin: 0;
}

.home-page .quick-label {
  margin-bottom: 3px !important;
  font-size: 1.22rem;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.home-page .quick-contact-inner > div > p:last-child {
  color: rgba(18, 20, 22, 0.76);
  font-weight: 650;
}

.home-page .quick-contact a {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--home-ink);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-page .quick-contact a span {
  margin-top: 2px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.04em;
}

/* Shared sections */
.home-page .section {
  padding: clamp(80px, 10vw, 132px) 0;
}

.home-page .section-heading {
  margin-bottom: 44px;
}

.home-page .split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: 70px;
}

.home-page .section-heading h2,
.home-page .owner-statement h2,
.home-page .service-area h2,
.home-page .final-cta h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-align: left;
  text-wrap: balance;
}

.home-page .split-heading > p {
  margin: 0;
  color: var(--home-muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

/* Services */
.home-page .services-section {
  background: var(--home-cream);
}

.home-page .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-page .service-tile {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: var(--home-paper);
  box-shadow: 0 14px 44px rgba(18, 20, 22, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-page .service-tile::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 160px;
  height: 160px;
  border: 22px solid rgba(239, 125, 36, 0.08);
  border-radius: 50%;
}

.home-page .service-tile:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 125, 36, 0.7);
  box-shadow: var(--home-shadow);
}

.home-page .service-tile.featured {
  color: #fff;
  background: var(--home-ink);
  border-color: var(--home-ink);
}

.home-page .service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(239, 125, 36, 0.13);
}

.home-page .service-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--home-orange);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  margin: 0;
  color: rgba(18, 20, 22, 0.18);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.home-page .service-tile.featured .service-number {
  color: rgba(255, 255, 255, 0.26);
}

.home-page .service-tile h3 {
  margin: 46px 0 14px;
  color: var(--home-ink);
  font-size: 1.55rem;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.home-page .service-tile.featured h3 {
  color: #fff;
}

.home-page .service-tile > p:not(.service-number) {
  margin: 0 0 26px;
  color: var(--home-muted);
  line-height: 1.7;
}

.home-page .service-tile.featured > p:not(.service-number) {
  color: rgba(255, 255, 255, 0.68);
}

.home-page .service-tile > a {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--home-ink);
  font-weight: 900;
  text-decoration: none;
}

.home-page .service-tile.featured > a {
  color: var(--home-orange);
}

.home-page .service-tile > a span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 180ms ease;
}

.home-page .service-tile > a:hover span {
  transform: translateX(5px);
}

/* Real work gallery */
.home-page .work-gallery {
  padding: clamp(82px, 10vw, 132px) 0;
  color: #fff;
  background: var(--home-ink);
}

.home-page .light-heading {
  max-width: 900px;
}

.home-page .light-heading h2 {
  color: #fff;
}

.home-page .gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.home-page .gallery-card {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #2a2d30;
}

.home-page .gallery-card-large {
  grid-row: 1 / 3;
  min-height: 520px;
}

.home-page .gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 6, 7, 0.88) 100%);
}

.home-page .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.home-page .gallery-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.home-page .gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.home-page .gallery-card figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--home-orange);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Owner section */
.home-page .owner-section {
  background: var(--home-paper);
}

.home-page .owner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

.home-page .owner-statement {
  position: sticky;
  top: 150px;
}

.home-page .owner-points {
  border-top: 1px solid var(--home-line);
}

.home-page .owner-points article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--home-line);
}

.home-page .owner-points article > span {
  color: var(--home-orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.home-page .owner-points h3 {
  margin: 0 0 8px;
  color: var(--home-ink);
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.home-page .owner-points p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.7;
}

/* Area */
.home-page .service-area {
  padding: clamp(78px, 9vw, 118px) 0;
  background: var(--home-cream);
}

.home-page .area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: center;
}

.home-page .service-area h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.3rem);
}

.home-page .service-area p:not(.section-kicker) {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--home-muted);
  line-height: 1.75;
}

.home-page .service-area ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-page .service-area li {
  padding: 15px 16px;
  border: 1px solid var(--home-line);
  border-left: 4px solid var(--home-orange);
  border-radius: 8px;
  background: var(--home-paper);
  font-weight: 850;
}

/* CTA */
.home-page .final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 116px) 0;
  color: #fff;
  background: var(--home-orange-dark);
}

.home-page .final-cta::before {
  content: "";
  position: absolute;
  top: -190px;
  right: -110px;
  width: 480px;
  height: 480px;
  border: 70px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.home-page .final-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.home-page .final-cta .section-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.home-page .final-cta h2 {
  color: #fff;
}

.home-page .final-cta p:not(.section-kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
  line-height: 1.72;
}

.home-page .button-large {
  min-width: 260px;
  min-height: 72px;
  flex: 0 0 auto;
  color: var(--home-ink);
  background: #fff;
  font-size: 1.35rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.home-page .button-large:hover {
  color: var(--home-ink);
  background: #fff;
}

/* Footer */
.home-page .site-footer {
  margin: 0;
  padding: 58px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  background: #0d0f10;
}

.home-page .footer-main {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 64px;
}

.home-page .footer-brand {
  display: block;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
}

.home-page .footer-brand img {
  width: 100%;
  display: block;
}

.home-page .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.home-page .footer-nav a,
.home-page .footer-contact a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.home-page .footer-nav a:hover,
.home-page .footer-contact a:hover {
  color: var(--home-orange);
}

.home-page .footer-contact {
  text-align: right;
}

.home-page .footer-contact p {
  margin: 4px 0;
}

.home-page .footer-contact strong {
  color: #fff;
}

.home-page .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.home-page .footer-bottom p {
  margin: 0;
}

.home-page .mobile-call-bar {
  display: none;
}

@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1%, -0.6%, 0); }
}

@media (max-width: 1020px) {
  .home-page .header-main {
    grid-template-columns: auto 1fr auto;
    gap: 24px;
  }

  .home-page .brand {
    width: 150px;
  }

  .home-page .header-call {
    min-width: 0;
    padding: 12px 15px;
  }

  .home-page .header-call small {
    display: none;
  }

  .home-page .hero-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
  }

  .home-page .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-page .service-tile:last-child {
    grid-column: 1 / -1;
    min-height: 340px;
  }
}

@media (max-width: 820px) {
  .home-page .site-shell {
    width: min(calc(100% - 30px), var(--home-shell));
  }

  .home-page .utility-inner {
    justify-content: center;
  }

  .home-page .utility-inner p:first-child {
    display: none;
  }

  .home-page .header-main {
    min-height: 78px;
    grid-template-columns: auto 1fr auto;
  }

  .home-page .brand {
    width: 126px;
  }

  .home-page .menu-toggle {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border: 0;
    background: transparent;
    color: var(--home-ink);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
  }

  .home-page .menu-toggle-icon {
    width: 25px;
    display: grid;
    gap: 5px;
  }

  .home-page .menu-toggle-icon span {
    height: 3px;
    display: block;
    border-radius: 3px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .home-page .menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .home-page .menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  .home-page .menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .home-page .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 12px 15px 20px;
    border-top: 1px solid var(--home-line);
    background: #fff;
    box-shadow: 0 24px 40px rgba(18, 20, 22, 0.16);
  }

  .home-page .primary-nav.is-open {
    display: grid;
  }

  .home-page .primary-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--home-line);
  }

  .home-page .primary-nav a::after {
    display: none;
  }

  .home-page .header-call {
    display: none;
  }

  .home-page .hero-layout {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 48px;
    padding-block: 72px;
  }

  .home-page .hero-copy {
    max-width: 720px;
  }

  .home-page .hero-proof {
    max-width: 620px;
  }

  .home-page .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 10, 11, 0.92) 0%, rgba(8, 10, 11, 0.72) 100%),
      linear-gradient(0deg, rgba(8, 10, 11, 0.62), transparent 55%);
  }

  .home-page .split-heading,
  .home-page .owner-layout,
  .home-page .area-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-page .owner-statement {
    position: static;
  }

  .home-page .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
  }

  .home-page .footer-main {
    grid-template-columns: 160px 1fr;
    align-items: start;
    gap: 34px;
  }

  .home-page .footer-contact {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .home-page {
    padding-bottom: 70px;
  }

  .home-page .site-shell {
    width: min(calc(100% - 24px), var(--home-shell));
  }

  .home-page .utility-bar {
    font-size: 0.68rem;
  }

  .home-page .header-main {
    min-height: 70px;
  }

  .home-page .brand {
    width: 108px;
  }

  .home-page .menu-toggle-label {
    display: none;
  }

  .home-page .home-hero,
  .home-page .hero-layout {
    min-height: auto;
  }

  .home-page .hero-layout {
    padding-block: 66px 54px;
  }

  .home-page .home-hero h1 {
    font-size: clamp(3rem, 15vw, 4.75rem);
  }

  .home-page .hero-lead {
    margin-top: 22px;
  }

  .home-page .hero-actions {
    display: grid;
  }

  .home-page .hero-actions .button {
    width: 100%;
  }

  .home-page .hero-proof {
    padding: 25px 22px;
  }

  .home-page .quick-contact-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 24px;
    gap: 16px;
  }

  .home-page .quick-contact a {
    align-items: flex-start;
  }

  .home-page .section {
    padding: 74px 0;
  }

  .home-page .section-heading h2,
  .home-page .owner-statement h2,
  .home-page .service-area h2,
  .home-page .final-cta h2 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

  .home-page .service-grid {
    grid-template-columns: 1fr;
  }

  .home-page .service-tile,
  .home-page .service-tile:last-child {
    min-height: 360px;
    grid-column: auto;
  }

  .home-page .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .home-page .gallery-card,
  .home-page .gallery-card-large {
    min-height: 320px;
    grid-row: auto;
  }

  .home-page .owner-points article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .home-page .service-area ul {
    grid-template-columns: 1fr;
  }

  .home-page .button-large {
    width: 100%;
    min-width: 0;
  }

  .home-page .footer-main {
    grid-template-columns: 1fr;
  }

  .home-page .footer-brand {
    width: 180px;
  }

  .home-page .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .home-page .footer-contact {
    grid-column: auto;
  }

  .home-page .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .home-page .mobile-call-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 1200;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 12px;
    color: #111;
    background: var(--home-orange);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    font-size: 1rem;
    font-weight: 950;
    text-decoration: none;
  }

  .home-page .mobile-call-bar svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }
}

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

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

/*
  Kenny D's LLC — About page
  Loads after global.css and home.css. The shared header, footer, buttons,
  navigation, and responsive call bar come from home.css.
*/

.about-page .about-hero {
  position: relative;
  min-height: clamp(620px, 70vh, 780px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--home-ink);
}

.about-page .about-hero-media,
.about-page .about-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.about-page .about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 42%;
  filter: saturate(0.88) contrast(1.08);
  animation: aboutHeroDrift 18s ease-in-out alternate infinite;
}

.about-page .about-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.96) 0%, rgba(8, 10, 11, 0.88) 43%, rgba(8, 10, 11, 0.36) 72%, rgba(8, 10, 11, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 10, 11, 0.56), transparent 54%);
}

.about-page .about-hero-layout {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: clamp(52px, 8vw, 108px);
  padding-block: 84px;
}

.about-page .about-hero-copy {
  max-width: 760px;
}

.about-page .about-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3.2rem, 6.8vw, 6.55rem);
  font-weight: 950;
  letter-spacing: -0.058em;
  line-height: 0.93;
  text-align: left;
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.38);
}

.about-page .about-hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.68;
}

.about-page .about-identity {
  align-self: end;
  margin-bottom: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 5px solid var(--home-orange);
  border-radius: 14px;
  background: rgba(13, 15, 16, 0.78);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-page .identity-label {
  margin: 0 0 10px;
  color: var(--home-orange);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-page .identity-statement {
  margin: 0 0 22px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.28;
}

.about-page .about-identity dl,
.about-page .about-identity dd {
  margin: 0;
}

.about-page .about-identity dl {
  display: grid;
  gap: 14px;
}

.about-page .about-identity dl > div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-page .about-identity dt {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-page .about-identity dd {
  color: #fff;
  font-weight: 850;
}

.about-page .about-intro {
  padding: 104px 0;
  background: var(--home-cream);
}

.about-page .about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(56px, 9vw, 124px);
  align-items: start;
}

.about-page .about-intro-heading {
  position: sticky;
  top: 160px;
}

.about-page .about-intro h2,
.about-page .about-section-heading h2,
.about-page .about-work-copy h2 {
  margin: 8px 0 0;
  color: var(--home-ink);
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.7rem, 5.3vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.about-page .about-intro-copy {
  padding-top: 5px;
  color: var(--home-muted);
  font-size: 1.07rem;
  line-height: 1.85;
}

.about-page .about-intro-copy p {
  margin: 0 0 22px;
}

.about-page .about-intro-copy .intro-lead {
  color: var(--home-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.7vw, 2.05rem);
  font-weight: 700;
  line-height: 1.42;
}

.about-page .about-principles {
  padding: 108px 0;
  background: #fff;
}

.about-page .about-section-heading {
  max-width: 900px;
  margin-bottom: 54px;
}

.about-page .principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: var(--home-shadow);
}

.about-page .principle-card {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px 34px;
  color: var(--home-ink);
  background: #fff;
}

.about-page .principle-card + .principle-card {
  border-left: 1px solid var(--home-line);
}

.about-page .principle-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  transform: scaleX(0.28);
  transform-origin: left;
  background: var(--home-orange);
  transition: transform 220ms ease;
}

.about-page .principle-card:hover::before {
  transform: scaleX(1);
}

.about-page .principle-card-dark {
  color: #fff;
  background: var(--home-ink);
}

.about-page .principle-number {
  position: absolute;
  top: 34px;
  right: 32px;
  color: rgba(18, 20, 22, 0.12);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 5.4rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
}

.about-page .principle-card-dark .principle-number {
  color: rgba(255, 255, 255, 0.12);
}

.about-page .principle-card h3 {
  position: relative;
  margin: 0 0 14px;
  color: inherit;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.about-page .principle-card p {
  position: relative;
  margin: 0;
  color: var(--home-muted);
  line-height: 1.72;
}

.about-page .principle-card-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.about-page .about-work {
  padding: 108px 0;
  color: #fff;
  background: #0d0f10;
}

.about-page .about-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(54px, 8vw, 108px);
}

.about-page .about-work-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #1b1e21;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
}

.about-page .about-work-photo::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  pointer-events: none;
}

.about-page .about-work-photo img {
  width: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.about-page .about-work-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  padding: 40px 20px 18px;
  border-radius: 0 0 12px 12px;
  color: #fff;
  background: linear-gradient(to top, rgba(8, 10, 11, 0.94), transparent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.about-page .about-work-copy .section-kicker {
  color: var(--home-orange);
}

.about-page .about-work-copy h2 {
  color: #fff;
}

.about-page .about-work-copy > p:not(.section-kicker) {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.07rem;
  line-height: 1.78;
}

.about-page .about-service-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.about-page .about-service-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 13px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.about-page .about-service-list span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #111;
  background: var(--home-orange);
  font-weight: 950;
}

.about-page .fit-callout {
  margin: 32px 0 28px;
  padding: 22px 24px;
  border-left: 5px solid var(--home-orange);
  background: rgba(255, 255, 255, 0.07);
}

.about-page .fit-callout strong {
  color: #fff;
  font-size: 1.06rem;
}

.about-page .fit-callout p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.about-page .text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.about-page .text-link span {
  color: var(--home-orange);
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.about-page .text-link:hover {
  color: var(--home-orange);
}

.about-page .text-link:hover span {
  transform: translateX(5px);
}

.about-page .about-quote {
  padding: 104px 0;
  background: var(--home-orange);
}

.about-page .about-quote-inner {
  max-width: 980px;
  text-align: center;
}

.about-page .quote-mark {
  display: block;
  height: 58px;
  color: rgba(18, 20, 22, 0.26);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  font-weight: 900;
  line-height: 0.9;
}

.about-page .about-quote blockquote {
  margin: 0;
}

.about-page .about-quote blockquote p {
  margin: 0;
  color: var(--home-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
}

.about-page .quote-credit {
  margin: 24px 0 0;
  color: rgba(18, 20, 22, 0.7);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes aboutHeroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(-0.7%, -0.5%, 0); }
}

@media (max-width: 980px) {
  .about-page .about-hero-layout {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 42px;
  }

  .about-page .about-identity {
    width: min(100%, 620px);
    align-self: auto;
    margin: 0;
  }

  .about-page .about-hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 10, 11, 0.94), rgba(8, 10, 11, 0.66)),
      linear-gradient(0deg, rgba(8, 10, 11, 0.66), transparent 58%);
  }

  .about-page .about-intro-grid,
  .about-page .about-work-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-intro-heading {
    position: static;
  }

  .about-page .principle-grid {
    grid-template-columns: 1fr;
  }

  .about-page .principle-card {
    min-height: 290px;
  }

  .about-page .principle-card + .principle-card {
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  .about-page .about-work-photo {
    max-width: 720px;
  }

  .about-page .about-work-photo img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .about-page .about-hero {
    min-height: auto;
  }

  .about-page .about-hero-media img {
    object-position: 62% center;
  }

  .about-page .about-hero-layout {
    padding-block: 64px 50px;
  }

  .about-page .about-hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .about-page .about-hero-lead {
    margin-top: 22px;
  }

  .about-page .about-identity {
    padding: 23px 21px;
  }

  .about-page .about-intro,
  .about-page .about-principles,
  .about-page .about-work,
  .about-page .about-quote {
    padding: 76px 0;
  }

  .about-page .about-intro-grid,
  .about-page .about-work-grid {
    gap: 42px;
  }

  .about-page .about-intro h2,
  .about-page .about-section-heading h2,
  .about-page .about-work-copy h2 {
    font-size: clamp(2.4rem, 11.5vw, 3.75rem);
  }

  .about-page .principle-card {
    min-height: 330px;
    padding: 32px 26px;
  }

  .about-page .principle-number {
    top: 26px;
    right: 24px;
    font-size: 4.6rem;
  }

  .about-page .about-work-photo img {
    aspect-ratio: 4 / 5;
  }

  .about-page .about-quote blockquote p {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .about-hero-media img {
    animation: none;
  }
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */

/*
  Kenny D's LLC — Services page
  Loads after global.css and home.css. Shared header, footer, buttons,
  navigation, and mobile call bar come from home.css.
*/

.services-page {
  scroll-behavior: smooth;
}

.services-page .services-hero {
  position: relative;
  min-height: clamp(660px, 76vh, 860px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--home-ink);
}

.services-page .services-hero-media,
.services-page .services-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.services-page .services-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 53%;
  filter: saturate(0.82) contrast(1.08);
  animation: servicesHeroDrift 18s ease-in-out infinite alternate;
}

.services-page .services-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.96) 0%, rgba(8, 10, 11, 0.86) 45%, rgba(8, 10, 11, 0.44) 76%, rgba(8, 10, 11, 0.62) 100%),
    linear-gradient(0deg, rgba(8, 10, 11, 0.62), transparent 54%);
}

.services-page .services-hero-layout {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(56px, 8vw, 112px);
  padding-block: 88px;
}

.services-page .services-hero-copy {
  max-width: 780px;
}

.services-page .services-hero h1 {
  max-width: 790px;
  margin: 0;
  color: #fff;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3.5rem, 7.5vw, 7.15rem);
  font-weight: 950;
  letter-spacing: -0.062em;
  line-height: 0.89;
  text-align: left;
  text-wrap: balance;
  text-shadow: 0 9px 36px rgba(0, 0, 0, 0.42);
}

.services-page .services-hero-lead {
  max-width: 690px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.68;
}

.services-page .quote-card {
  padding: 34px 32px 31px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 6px solid var(--home-orange);
  border-radius: 16px;
  background: rgba(13, 15, 16, 0.8);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.services-page .quote-card-label {
  margin: 0 0 8px;
  color: var(--home-orange);
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-page .quote-card h2 {
  margin: 0 0 24px;
  color: #fff;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.048em;
  line-height: 1;
  text-align: left;
}

.services-page .quote-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-page .quote-card li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.services-page .quote-card li > span {
  color: var(--home-orange);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.83rem;
  font-weight: 950;
  line-height: 1.5;
}

.services-page .quote-card strong,
.services-page .quote-card small {
  display: block;
}

.services-page .quote-card strong {
  color: #fff;
  font-size: 0.94rem;
}

.services-page .quote-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.82rem;
  line-height: 1.55;
}

.services-page .quote-card > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: #fff;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.services-page .quote-card > a:hover {
  color: var(--home-orange);
}

.services-page .service-band {
  color: #111;
  background: var(--home-orange);
}

.services-page .service-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-page .service-band a {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 25px;
  color: var(--home-ink);
  text-decoration: none;
  transition: background 180ms ease;
}

.services-page .service-band a + a {
  border-left: 1px solid rgba(18, 20, 22, 0.24);
}

.services-page .service-band a:hover {
  background: rgba(255, 255, 255, 0.17);
}

.services-page .service-band span {
  color: rgba(18, 20, 22, 0.55);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 950;
}

.services-page .service-band strong {
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.25;
}

.services-page .services-overview {
  padding: 112px 0 104px;
  background: var(--home-cream);
}

.services-page .services-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(56px, 9vw, 126px);
  align-items: start;
}

.services-page .services-overview-heading {
  position: sticky;
  top: 155px;
}

.services-page .services-overview h2,
.services-page .customer-heading h2,
.services-page .quote-process-heading h2,
.services-page .service-area-strip h2 {
  margin: 8px 0 0;
  color: var(--home-ink);
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.85rem, 5.5vw, 5.2rem);
  font-weight: 950;
  letter-spacing: -0.057em;
  line-height: 0.96;
  text-align: left;
  text-wrap: balance;
}

.services-page .services-overview-copy {
  color: var(--home-muted);
  font-size: 1.06rem;
  line-height: 1.84;
}

.services-page .services-overview-copy p {
  margin: 0 0 22px;
}

.services-page .services-overview-copy .overview-lead {
  color: var(--home-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.42;
}

.services-page .service-details {
  background: #fff;
}

.services-page .service-feature {
  scroll-margin-top: 142px;
  padding: 110px 0;
  background: #fff;
}

.services-page .service-feature + .service-feature:not(.service-feature-dark),
.services-page .service-feature-dark + .service-feature-dark {
  border-top: 1px solid var(--home-line);
}

.services-page .service-feature-dark {
  color: #fff;
  background: #0d0f10;
}

.services-page .service-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(54px, 8vw, 108px);
}

.services-page .service-feature-grid-reverse .service-feature-media {
  order: 2;
}

.services-page .service-feature-grid-reverse .service-feature-copy {
  order: 1;
}

.services-page .service-feature-media {
  position: relative;
  margin: 0;
  min-height: 590px;
  overflow: hidden;
  border-radius: 22px;
  background: #d9d4cb;
  box-shadow: 0 32px 78px rgba(18, 20, 22, 0.18);
}

.services-page .service-feature-dark .service-feature-media {
  background: #202326;
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.48);
}

.services-page .service-feature-media::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  pointer-events: none;
}

.services-page .service-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.07);
  transition: transform 450ms ease;
}

.services-page .service-feature:hover .service-feature-media img {
  transform: scale(1.035);
}

.services-page .service-feature-media figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  padding: 50px 22px 19px;
  border-radius: 0 0 14px 14px;
  color: #fff;
  background: linear-gradient(to top, rgba(8, 10, 11, 0.95), transparent);
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.45;
}

.services-page .service-index {
  margin: 0 0 16px;
  color: var(--home-orange-dark);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.services-page .service-feature-dark .service-index {
  color: var(--home-orange);
}

.services-page .service-feature-copy h2 {
  margin: 0;
  color: var(--home-ink);
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3rem, 5.6vw, 5.2rem);
  font-weight: 950;
  letter-spacing: -0.058em;
  line-height: 0.94;
  text-align: left;
  text-wrap: balance;
}

.services-page .service-feature-dark .service-feature-copy h2 {
  color: #fff;
}

.services-page .service-feature-copy > p:not(.service-index) {
  margin: 22px 0 0;
  color: var(--home-muted);
  line-height: 1.78;
}

.services-page .service-feature-dark .service-feature-copy > p:not(.service-index) {
  color: rgba(255, 255, 255, 0.67);
}

.services-page .service-feature-copy .service-lead {
  color: var(--home-ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.15vw, 1.75rem);
  font-weight: 700;
  line-height: 1.43 !important;
}

.services-page .service-feature-dark .service-feature-copy .service-lead {
  color: #fff !important;
}

.services-page .material-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.services-page .material-list span {
  padding: 9px 13px;
  border: 1px solid rgba(18, 20, 22, 0.16);
  border-radius: 999px;
  color: var(--home-ink);
  background: var(--home-cream);
  font-size: 0.82rem;
  font-weight: 850;
}

.services-page .check-list {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.services-page .check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--home-ink-soft);
  font-weight: 800;
}

.services-page .service-feature-dark .check-list li {
  color: rgba(255, 255, 255, 0.83);
}

.services-page .check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 13px;
  height: 8px;
  transform: rotate(-45deg);
  border-bottom: 3px solid var(--home-orange);
  border-left: 3px solid var(--home-orange);
}

.services-page .service-note {
  margin-top: 30px !important;
  padding: 20px 22px;
  border-left: 5px solid var(--home-orange);
  border-radius: 0 12px 12px 0;
  background: var(--home-cream);
}

.services-page .service-feature-dark .service-note {
  background: rgba(255, 255, 255, 0.075);
}

.services-page .service-note strong {
  color: var(--home-ink);
}

.services-page .service-feature-dark .service-note strong {
  color: #fff;
}

.services-page .customer-section {
  padding: 112px 0;
  background: var(--home-cream);
}

.services-page .customer-heading {
  max-width: 930px;
  margin-bottom: 54px;
}

.services-page .customer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--home-shadow);
}

.services-page .customer-grid article {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
}

.services-page .customer-grid article + article {
  border-left: 1px solid var(--home-line);
}

.services-page .customer-grid article:nth-child(2) {
  color: #fff;
  background: var(--home-ink);
}

.services-page .customer-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  transform: scaleX(0.3);
  transform-origin: left;
  background: var(--home-orange);
  transition: transform 200ms ease;
}

.services-page .customer-grid article:hover::before {
  transform: scaleX(1);
}

.services-page .customer-number {
  position: absolute;
  top: 30px;
  right: 28px;
  margin: 0;
  color: rgba(18, 20, 22, 0.12);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 5.1rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
}

.services-page .customer-grid article:nth-child(2) .customer-number {
  color: rgba(255, 255, 255, 0.12);
}

.services-page .customer-grid h3 {
  position: relative;
  margin: 0 0 14px;
  color: inherit;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.services-page .customer-grid article > p:last-child {
  position: relative;
  margin: 0;
  color: var(--home-muted);
  line-height: 1.72;
}

.services-page .customer-grid article:nth-child(2) > p:last-child {
  color: rgba(255, 255, 255, 0.67);
}

.services-page .quote-process {
  padding: 112px 0;
  color: #fff;
  background: #15181a;
}

.services-page .quote-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(58px, 9vw, 130px);
  align-items: start;
}

.services-page .quote-process-heading {
  position: sticky;
  top: 155px;
}

.services-page .quote-process-heading h2 {
  color: #fff;
}

.services-page .quote-process-heading > p:not(.section-kicker) {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.04rem;
  line-height: 1.78;
}

.services-page .process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-page .process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 25px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.services-page .process-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.services-page .process-list li > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: var(--home-orange);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 950;
}

.services-page .process-list h3 {
  margin: 1px 0 8px;
  color: #fff;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.services-page .process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.services-page .service-area-strip {
  padding: 74px 0;
  background: #fff;
}

.services-page .service-area-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: 70px;
  align-items: end;
}

.services-page .service-area-strip h2 {
  font-size: clamp(2.55rem, 4.9vw, 4.45rem);
}

.services-page .service-area-strip-inner > p {
  margin: 0;
  padding: 26px 28px;
  border-left: 6px solid var(--home-orange);
  color: var(--home-muted);
  background: var(--home-cream);
  font-weight: 800;
  line-height: 1.9;
}

@keyframes servicesHeroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.085) translate3d(-1.2%, -0.5%, 0); }
}

@media (max-width: 1020px) {
  .services-page .services-hero-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 48px;
  }

  .services-page .service-band-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-page .service-band a:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(18, 20, 22, 0.24);
  }

  .services-page .service-band a:nth-child(4) {
    border-top: 1px solid rgba(18, 20, 22, 0.24);
  }

  .services-page .service-feature-grid {
    gap: 52px;
  }

  .services-page .service-feature-media,
  .services-page .service-feature-media img {
    min-height: 520px;
  }
}

@media (max-width: 820px) {
  .services-page .services-hero,
  .services-page .services-hero-layout {
    min-height: auto;
  }

  .services-page .services-hero-layout {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-block: 72px;
  }

  .services-page .services-hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 10, 11, 0.94), rgba(8, 10, 11, 0.72)),
      linear-gradient(0deg, rgba(8, 10, 11, 0.6), transparent 55%);
  }

  .services-page .quote-card {
    max-width: 650px;
  }

  .services-page .services-overview-grid,
  .services-page .quote-process-grid,
  .services-page .service-area-strip-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .services-page .services-overview-heading,
  .services-page .quote-process-heading {
    position: static;
  }

  .services-page .service-feature-grid,
  .services-page .service-feature-grid-reverse {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .services-page .service-feature-grid-reverse .service-feature-media,
  .services-page .service-feature-grid-reverse .service-feature-copy {
    order: initial;
  }

  .services-page .service-feature-media,
  .services-page .service-feature-media img {
    min-height: 500px;
  }

  .services-page .customer-grid {
    grid-template-columns: 1fr;
  }

  .services-page .customer-grid article {
    min-height: 300px;
  }

  .services-page .customer-grid article + article {
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .services-page .services-hero-layout {
    padding-block: 64px 55px;
  }

  .services-page .services-hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .services-page .services-hero-lead {
    margin-top: 23px;
  }

  .services-page .quote-card {
    padding: 27px 22px 25px;
  }

  .services-page .quote-card li {
    grid-template-columns: 36px 1fr;
  }

  .services-page .service-band-grid {
    grid-template-columns: 1fr;
  }

  .services-page .service-band a {
    min-height: 82px;
  }

  .services-page .service-band a + a,
  .services-page .service-band a:nth-child(3),
  .services-page .service-band a:nth-child(4) {
    border-top: 1px solid rgba(18, 20, 22, 0.24);
    border-left: 0;
  }

  .services-page .services-overview,
  .services-page .service-feature,
  .services-page .customer-section,
  .services-page .quote-process {
    padding: 78px 0;
  }

  .services-page .services-overview h2,
  .services-page .customer-heading h2,
  .services-page .quote-process-heading h2,
  .services-page .service-area-strip h2,
  .services-page .service-feature-copy h2 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .services-page .service-feature-media,
  .services-page .service-feature-media img {
    min-height: 370px;
  }

  .services-page .service-feature-media figcaption {
    padding: 46px 18px 17px;
  }

  .services-page .material-list {
    gap: 7px;
  }

  .services-page .customer-grid article {
    min-height: 285px;
    padding: 32px 25px;
  }

  .services-page .process-list li {
    grid-template-columns: 52px 1fr;
    gap: 17px;
  }

  .services-page .process-list li > span {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .services-page .service-area-strip {
    padding: 70px 0;
  }

  .services-page .service-area-strip-inner > p {
    padding: 22px 20px;
  }
}

/* ==========================================================================
   FAQ PAGE
   ========================================================================== */

/* Kenny D's LLC — FAQ page */

.faq-page .faq-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--home-ink);
}

.faq-page .faq-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000 0%, #000 54%, transparent 100%);
}

.faq-page .faq-hero::before {
  content: "?";
  position: absolute;
  right: clamp(-20px, 2vw, 30px);
  bottom: -0.31em;
  color: rgba(239, 125, 36, 0.085);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(21rem, 38vw, 42rem);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.faq-page .faq-hero-layout {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding-block: 88px;
}

.faq-page .faq-hero-copy {
  max-width: 790px;
}

.faq-page .faq-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-page .faq-hero .eyebrow span {
  width: 38px;
  height: 3px;
  background: var(--home-orange);
}

.faq-page .faq-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(4.2rem, 8.5vw, 8.2rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-align: left;
  text-wrap: balance;
}

.faq-page .faq-hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.75;
}

.faq-page .faq-callout {
  position: relative;
  padding: 42px 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 7px solid var(--home-orange);
  border-radius: var(--home-radius);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.faq-page .faq-callout::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 70px;
  height: 70px;
  border: 14px solid rgba(239, 125, 36, 0.12);
  border-radius: 50%;
}

.faq-page .faq-callout-label {
  margin: 0 0 9px;
  color: var(--home-orange);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.faq-page .faq-callout h2 {
  margin: 0;
  color: #fff;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-align: left;
}

.faq-page .faq-callout > p:not(.faq-callout-label) {
  margin: 20px 0 27px;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.7;
}

.faq-page .faq-callout > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 950;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.faq-page .faq-callout > a:hover {
  color: var(--home-orange);
}

.faq-page .faq-callout svg {
  width: 25px;
  height: 25px;
  fill: var(--home-orange);
}

.faq-page .answer-strip {
  color: #111;
  background: var(--home-orange);
}

.faq-page .answer-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.faq-page .answer-strip-grid > div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 30px;
}

.faq-page .answer-strip-grid > div + div {
  border-left: 1px solid rgba(18, 20, 22, 0.22);
}

.faq-page .answer-strip span {
  margin-bottom: 5px;
  color: rgba(18, 20, 22, 0.67);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-page .answer-strip strong {
  font-size: 1.03rem;
  font-weight: 950;
}

.faq-page .faq-content {
  padding: 112px 0;
  background: var(--home-cream);
}

.faq-page .faq-content-layout {
  display: grid;
  grid-template-columns: minmax(285px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 112px);
  align-items: start;
}

.faq-page .faq-intro {
  position: sticky;
  top: 155px;
}

.faq-page .faq-intro h2 {
  margin: 8px 0 0;
  color: var(--home-ink);
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.85rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-align: left;
  text-wrap: balance;
}

.faq-page .faq-intro > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: var(--home-muted);
  line-height: 1.75;
}

.faq-page .quote-ready {
  margin-top: 35px;
  padding: 27px 26px;
  border-left: 5px solid var(--home-orange);
  border-radius: 0 12px 12px 0;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 20, 22, 0.08);
}

.faq-page .quote-ready-label {
  margin: 0 0 14px;
  color: var(--home-ink);
  font-weight: 950;
}

.faq-page .quote-ready ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.faq-page .quote-ready li {
  position: relative;
  padding: 6px 0 6px 25px;
  color: var(--home-muted);
}

.faq-page .quote-ready li::before {
  content: "";
  position: absolute;
  top: 0.94em;
  left: 1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--home-orange);
  box-shadow: 0 0 0 5px rgba(239, 125, 36, 0.13);
}

.faq-page .quote-ready a {
  color: var(--home-orange-dark);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.faq-page .quote-ready a:hover {
  color: var(--home-ink);
}

.faq-page .faq-list {
  border-top: 1px solid var(--home-line);
}

.faq-page .faq-list details {
  border-bottom: 1px solid var(--home-line);
  background: transparent;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.faq-page .faq-list details[open] {
  margin-inline: -25px;
  padding-inline: 25px;
  border-bottom-color: transparent;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(18, 20, 22, 0.1);
}

.faq-page .faq-list summary {
  min-height: 106px;
  display: grid;
  grid-template-columns: 52px 1fr 34px;
  align-items: center;
  gap: 18px;
  padding: 23px 0;
  color: var(--home-ink);
  cursor: pointer;
  list-style: none;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.52rem);
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.faq-page .faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-page .faq-list summary:hover {
  color: var(--home-orange-dark);
}

.faq-page .faq-number {
  color: var(--home-orange-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.faq-page .faq-plus {
  position: relative;
  width: 32px;
  height: 32px;
  border: 2px solid var(--home-line);
  border-radius: 50%;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq-page .faq-plus::before,
.faq-page .faq-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: currentColor;
  transition: transform 180ms ease;
}

.faq-page .faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-page details[open] .faq-plus {
  border-color: var(--home-orange);
  background: var(--home-orange);
  transform: rotate(180deg);
}

.faq-page details[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-page .faq-answer {
  padding: 0 50px 30px 70px;
}

.faq-page .faq-answer p {
  max-width: 760px;
  margin: 0;
  color: var(--home-muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.faq-page .faq-answer a {
  color: var(--home-orange-dark);
  font-weight: 900;
}

.faq-page .faq-trust {
  padding: 82px 0;
  color: #fff;
  background: var(--home-ink-soft);
}

.faq-page .faq-trust-inner {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
}

.faq-page .faq-trust-mark {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 3px solid var(--home-orange);
  border-radius: 50%;
  color: var(--home-orange);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  box-shadow: inset 0 0 0 8px var(--home-ink-soft), inset 0 0 0 10px rgba(239, 125, 36, 0.35);
}

.faq-page .faq-trust h2 {
  margin: 6px 0 10px;
  color: #fff;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 950;
  letter-spacing: -0.052em;
  line-height: 0.98;
  text-align: left;
}

.faq-page .faq-trust p:not(.section-kicker) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.faq-page .faq-trust .button-ghost {
  min-width: 224px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.faq-page .faq-trust .button-ghost:hover {
  color: #111;
  border-color: var(--home-orange);
  background: var(--home-orange);
}

.faq-page .faq-final-cta {
  background: var(--home-orange-dark);
}

@media (max-width: 980px) {
  .faq-page .faq-hero-layout,
  .faq-page .faq-content-layout {
    grid-template-columns: 1fr;
  }

  .faq-page .faq-callout {
    width: min(100%, 620px);
  }

  .faq-page .faq-intro {
    position: static;
  }

  .faq-page .faq-trust-inner {
    grid-template-columns: 100px 1fr;
  }

  .faq-page .faq-trust-mark {
    width: 92px;
    height: 92px;
    font-size: 1.9rem;
  }

  .faq-page .faq-trust .button-ghost {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .faq-page .answer-strip-grid {
    grid-template-columns: 1fr;
  }

  .faq-page .answer-strip-grid > div {
    min-height: 92px;
    padding-inline: 22px;
  }

  .faq-page .answer-strip-grid > div + div {
    border-top: 1px solid rgba(18, 20, 22, 0.22);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .faq-page .faq-hero-layout {
    min-height: auto;
    padding-block: 64px 50px;
  }

  .faq-page .faq-hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.4rem);
  }

  .faq-page .faq-hero-lead {
    margin-top: 23px;
  }

  .faq-page .faq-callout {
    padding: 31px 25px;
  }

  .faq-page .faq-content {
    padding: 78px 0;
  }

  .faq-page .faq-intro h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .faq-page .faq-list details[open] {
    margin-inline: -15px;
    padding-inline: 15px;
  }

  .faq-page .faq-list summary {
    min-height: 94px;
    grid-template-columns: 38px 1fr 30px;
    gap: 11px;
    font-size: 1.13rem;
  }

  .faq-page .faq-number {
    font-size: 0.7rem;
  }

  .faq-page .faq-plus {
    width: 29px;
    height: 29px;
  }

  .faq-page .faq-answer {
    padding: 0 9px 27px 49px;
  }

  .faq-page .faq-answer p {
    font-size: 0.98rem;
  }

  .faq-page .faq-trust {
    padding: 68px 0;
  }

  .faq-page .faq-trust-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .faq-page .faq-trust .button-ghost {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-page *,
  .faq-page *::before,
  .faq-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

/*
  Kenny D's LLC — Contact page
  Loads after global.css and home.css. Shared header, footer, navigation,
  buttons, and mobile call bar come from home.css.
*/

.contact-page .contact-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(239, 125, 36, 0.22), transparent 26%),
    linear-gradient(135deg, #101214 0%, #171a1d 54%, #0d0f10 100%);
}

.contact-page .contact-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 45%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%, #000 100%);
  pointer-events: none;
}

.contact-page .contact-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -235px;
  width: 590px;
  height: 590px;
  border: 88px solid rgba(239, 125, 36, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.contact-page .contact-hero-layout {
  position: relative;
  z-index: 1;
  min-height: clamp(650px, 71vh, 790px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.8fr);
  align-items: center;
  gap: clamp(64px, 9vw, 126px);
  padding-block: 88px;
}

.contact-page .contact-hero-copy {
  max-width: 760px;
}

.contact-page .contact-hero h1 {
  max-width: 790px;
  margin: 0;
  color: #fff;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3.35rem, 7vw, 6.7rem);
  font-weight: 950;
  letter-spacing: -0.058em;
  line-height: 0.93;
  text-align: left;
  text-wrap: balance;
}

.contact-page .contact-hero-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.06rem, 1.85vw, 1.25rem);
  line-height: 1.72;
}

.contact-page .direct-contact-card {
  position: relative;
  padding: 34px 32px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 6px solid var(--home-orange);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--home-ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4);
}

.contact-page .direct-contact-card::after {
  content: "";
  position: absolute;
  top: -76px;
  right: -76px;
  width: 170px;
  height: 170px;
  border: 26px solid rgba(239, 125, 36, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.contact-page .direct-label {
  position: relative;
  z-index: 1;
  margin: 0 0 7px;
  color: var(--home-orange-dark);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-page .direct-number {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--home-ink);
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.35rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1;
  text-decoration: none;
}

.contact-page .direct-number:hover {
  color: var(--home-orange-dark);
}

.contact-page .direct-note {
  margin: 11px 0 25px;
  color: var(--home-muted);
  line-height: 1.6;
}

.contact-page .direct-contact-card dl,
.contact-page .direct-contact-card dd {
  margin: 0;
}

.contact-page .direct-contact-card dl {
  display: grid;
  margin-bottom: 26px;
  border-top: 1px solid var(--home-line);
}

.contact-page .direct-contact-card dl > div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--home-line);
}

.contact-page .direct-contact-card dt {
  color: var(--home-muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-page .direct-contact-card dd {
  color: var(--home-ink);
  font-weight: 850;
}

.contact-page .contact-call-button {
  position: relative;
  z-index: 1;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9px;
  color: #111;
  background: var(--home-orange);
  font-size: 1.05rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(239, 125, 36, 0.28);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-page .contact-call-button:hover {
  color: #111;
  background: #ff913d;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(239, 125, 36, 0.38);
}

.contact-page .contact-call-button svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.contact-page .contact-prep {
  padding: 108px 0;
  background: var(--home-cream);
}

.contact-page .contact-section-heading {
  max-width: 860px;
  margin-bottom: 50px;
}

.contact-page .contact-section-heading h2,
.contact-page .expect-heading h2,
.contact-page .contact-area h2 {
  margin: 8px 0 0;
  color: var(--home-ink);
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.65rem, 5.2vw, 4.9rem);
  font-weight: 950;
  letter-spacing: -0.052em;
  line-height: 0.98;
  text-align: left;
  text-wrap: balance;
}

.contact-page .contact-section-heading > p:last-child {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--home-muted);
  font-size: 1.05rem;
  line-height: 1.76;
}

.contact-page .prep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--home-shadow);
}

.contact-page .prep-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  background: #fff;
}

.contact-page .prep-card + .prep-card {
  border-left: 1px solid var(--home-line);
}

.contact-page .prep-card-dark {
  color: #fff;
  background: var(--home-ink);
}

.contact-page .prep-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  transform: scaleX(0.3);
  transform-origin: left;
  background: var(--home-orange);
  transition: transform 220ms ease;
}

.contact-page .prep-card:hover::before {
  transform: scaleX(1);
}

.contact-page .prep-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(18, 20, 22, 0.13);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 4.7rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
}

.contact-page .prep-card-dark .prep-number {
  color: rgba(255, 255, 255, 0.11);
}

.contact-page .prep-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 16px;
  background: rgba(239, 125, 36, 0.13);
}

.contact-page .prep-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--home-orange);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page .prep-card h3 {
  margin: 0 0 14px;
  color: inherit;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.contact-page .prep-card p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.72;
}

.contact-page .prep-card-dark p {
  color: rgba(255, 255, 255, 0.67);
}

.contact-page .contact-expect {
  padding: 108px 0;
  color: #fff;
  background: #0d0f10;
}

.contact-page .expect-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(58px, 8vw, 112px);
  align-items: start;
}

.contact-page .expect-heading {
  position: sticky;
  top: 154px;
}

.contact-page .expect-heading .section-kicker {
  color: var(--home-orange);
}

.contact-page .expect-heading h2 {
  color: #fff;
}

.contact-page .expect-heading > p:last-child {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.76;
}

.contact-page .expect-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-page .expect-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 31px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-page .expect-list li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid var(--home-orange);
  border-radius: 50%;
  color: var(--home-orange);
  font-weight: 950;
}

.contact-page .expect-list h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.contact-page .expect-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.72;
}

.contact-page .voicemail-band {
  padding: 34px 0;
  color: var(--home-ink);
  background: var(--home-orange);
}

.contact-page .voicemail-inner {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 24px;
}

.contact-page .voicemail-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(18, 20, 22, 0.28);
  border-radius: 50%;
}

.contact-page .voicemail-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page .voicemail-inner p {
  margin: 0;
}

.contact-page .voicemail-title {
  margin-bottom: 4px !important;
  font-size: 1.22rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.contact-page .voicemail-inner div:last-child p:last-child {
  color: rgba(18, 20, 22, 0.74);
  line-height: 1.62;
}

.contact-page .contact-area {
  padding: 108px 0;
  background: var(--home-cream);
}

.contact-page .contact-area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
}

.contact-page .contact-area h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.45rem);
}

.contact-page .contact-area p:not(.section-kicker) {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--home-muted);
  line-height: 1.76;
}

.contact-page .contact-area ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-page .contact-area li {
  padding: 15px 16px;
  border: 1px solid var(--home-line);
  border-left: 4px solid var(--home-orange);
  border-radius: 8px;
  background: #fff;
  font-weight: 850;
}

.contact-page .contact-final-cta {
  background: var(--home-orange-dark);
}

@media (max-width: 980px) {
  .contact-page .contact-hero-layout {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 44px;
  }

  .contact-page .direct-contact-card {
    width: min(100%, 650px);
  }

  .contact-page .prep-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .prep-card {
    min-height: 300px;
  }

  .contact-page .prep-card + .prep-card {
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  .contact-page .expect-layout,
  .contact-page .contact-area-layout {
    grid-template-columns: 1fr;
  }

  .contact-page .expect-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .contact-page .contact-hero-layout {
    min-height: auto;
    padding-block: 64px 50px;
  }

  .contact-page .contact-hero h1 {
    font-size: clamp(3rem, 14vw, 4.65rem);
  }

  .contact-page .contact-hero-lead {
    margin-top: 22px;
  }

  .contact-page .direct-contact-card {
    padding: 27px 22px 22px;
  }

  .contact-page .direct-number {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .contact-page .direct-contact-card dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-page .contact-prep,
  .contact-page .contact-expect,
  .contact-page .contact-area {
    padding: 76px 0;
  }

  .contact-page .contact-section-heading h2,
  .contact-page .expect-heading h2,
  .contact-page .contact-area h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.7rem);
  }

  .contact-page .prep-card {
    min-height: 340px;
    padding: 31px 25px;
  }

  .contact-page .prep-number {
    top: 24px;
    right: 22px;
    font-size: 4.25rem;
  }

  .contact-page .expect-list li {
    grid-template-columns: 46px 1fr;
    gap: 15px;
  }

  .contact-page .expect-list li > span {
    width: 40px;
    height: 40px;
  }

  .contact-page .voicemail-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-page .contact-area ul {
    grid-template-columns: 1fr;
  }
}
