/* =========================================================
   Superman Painting LLC and Refinishing
   Multi-page · Gold & Copper · Conversion-focused
   ========================================================= */

:root {
  --bg: #f5f1eb;
  --white: #ffffff;
  --black: #120c08;
  --text: #1a120b;
  --muted: #5c4a3a;
  --border: #e0d5c8;
  --gold: #c9a227;
  --gold-light: #e0bc4a;
  --gold-dark: #9a7b1a;
  --copper: #b87333;
  --copper-light: #d4925a;
  --copper-dark: #8b5520;
  --dark: #1a120b;
  --dark-mid: #2a1c12;
  --dark-soft: #3d2817;
  --footer-bar: #4a3420;
  --header-h: 92px;
  --topbar-h: 36px;
  --font-body: "Roboto", "Open Sans", system-ui, sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-ui: "Open Sans", "Roboto", system-ui, sans-serif;
  --shadow: 0 4px 20px rgba(26, 18, 11, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 18, 11, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: var(--copper);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--gold-dark);
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dark);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.container--narrow {
  max-width: 820px;
}

.text-center {
  text-align: center;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 2.95rem);
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(145deg, var(--gold) 0%, var(--copper) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(184, 115, 51, 0.35);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.btn--primary:hover {
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--copper-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(184, 115, 51, 0.45);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(232, 196, 106, 0.75);
}

.btn--ghost:hover {
  background: rgba(201, 162, 39, 0.2);
  color: #fff;
  border-color: var(--gold-light);
}

.btn--outline {
  background: transparent;
  color: var(--copper-dark);
  border-color: var(--copper);
}

.btn--outline:hover {
  background: var(--copper);
  color: #fff;
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn--block {
  width: 100%;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  width: 100%;
}

.topbar a {
  color: rgba(255, 255, 255, 0.9);
}

.topbar a:hover {
  color: var(--gold-light);
}

.topbar i {
  margin-right: 0.4rem;
  color: var(--gold);
}

.topbar__loc {
  margin-left: auto;
  opacity: 0.85;
}

/* ---------- Header: nav left | logo center | social right ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(42, 28, 18, 0.12);
  background: rgba(245, 241, 235, 0.97);
  border-bottom-color: var(--border);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 1rem;
}

.nav-left {
  justify-self: start;
  min-width: 0;
}

.brand--center {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
  color: inherit;
  transition: transform 0.3s var(--ease);
}

.brand--center:hover {
  color: inherit;
  transform: scale(1.03);
}

.brand--center .brand__logo {
  height: 64px;
  width: 64px;
  object-fit: contain;
  display: block;
}

.brand--center .brand__name {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
  max-width: 140px;
}

.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--border);
  color: var(--dark);
  border-radius: 50%;
  font-size: 0.95rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), transform 0.25s var(--ease);
}

.social-links a:hover {
  background: linear-gradient(145deg, var(--gold), var(--copper));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* Main nav */
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  padding: 0.55rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.25s var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--copper);
}

.main-nav a i {
  font-size: 0.6rem;
  opacity: 0.7;
}

.has-sub {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 0.45rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease),
    visibility 0.3s;
  z-index: 50;
}

.has-sub:hover > .sub-menu,
.has-sub:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu a {
  display: block;
  padding: 0.55rem 1rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--black);
  white-space: nowrap;
}

.sub-menu a:hover {
  color: var(--copper-dark);
  background: #faf6ef;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  justify-self: end;
  grid-column: 3;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--black);
  transition: transform 0.3s var(--ease), opacity 0.25s;
}

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

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

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

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease-out) infinite alternate;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 18, 11, 0.88) 0%,
    rgba(42, 28, 18, 0.72) 50%,
    rgba(107, 68, 35, 0.45) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255, 245, 220, 0.9);
  font-size: 1.1rem;
  max-width: 560px;
}

.breadcrumb {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  opacity: 0.7;
  margin: 0 0.35rem;
}

/* ---------- Home hero + slideshow ---------- */
.hero {
  position: relative;
  min-height: min(78vh, 700px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slideshow__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s var(--ease), transform 7s linear;
  will-change: opacity, transform;
}

.hero-slideshow__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slideshow__dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
  max-width: 420px;
}

.hero-slideshow__dots--compact {
  gap: 0.3rem;
  max-width: 480px;
}

.hero-slideshow__dots--compact .hero-slideshow__dot {
  width: 7px;
  height: 7px;
}

.hero-slideshow__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 245, 220, 0.7);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.25s var(--ease);
}

.hero-slideshow__dot:hover {
  border-color: var(--gold-light);
  transform: scale(1.2);
}

.hero-slideshow__dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(26, 18, 11, 0.9) 0%,
    rgba(42, 28, 18, 0.68) 48%,
    rgba(184, 115, 51, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0;
  max-width: 720px;
}

.hero h1 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero__sub {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  color: rgba(255, 245, 220, 0.92);
  max-width: 540px;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-bar__item {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.trust-bar__item i {
  color: var(--gold);
  font-size: 1.25rem;
}

.trust-bar__item span {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.8rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 4.75rem 0;
}

.section--white {
  background: var(--white);
}

.section--gray {
  background: var(--bg);
}

.section-head {
  max-width: 700px;
  margin: 0 auto 2.75rem;
}

.section-head p {
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ---------- Intro / split ---------- */
.intro h2 {
  margin-bottom: 1.25rem;
}

.intro p {
  color: #3d2e22;
  margin-bottom: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split__text p {
  color: #3d2e22;
  margin-bottom: 1rem;
}

.split__image {
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  transition: transform 0.7s var(--ease);
}

.split__image:hover img {
  transform: scale(1.04);
}

/* FAQ (SEO + UX) */
.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
  padding: 0;
  transition: box-shadow 0.3s var(--ease);
}

.faq-item[open] {
  box-shadow: var(--shadow-lg);
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  padding: 1.1rem 1.25rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--copper);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Before / After comparison */
.before-after {
  width: 100%;
}

.before-after__heading {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.before-after__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.before-after__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg);
}

.before-after__item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.before-after__item:hover img {
  transform: scale(1.03);
}

.before-after__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.before-after__badge--before {
  background: #5a4a3a;
}

.before-after__badge--after {
  background: linear-gradient(145deg, var(--gold) 0%, var(--copper) 100%);
}

@media (max-width: 640px) {
  .before-after__grid {
    grid-template-columns: 1fr;
  }

  .before-after__item img {
    max-height: 280px;
  }
}

.check-list {
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
}

.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 0.85rem;
}

/* ---------- Service tiles / cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.service-tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  color: inherit;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.service-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.service-tile__img {
  height: 190px;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s var(--ease);
}

.service-tile:hover .service-tile__img {
  transform: scale(1.06);
}

.service-tile__body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
}

.service-tile__body h3 {
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
}

.service-tile__body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}

.service-tile__body .link-more {
  margin-top: 0.85rem;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-tile:hover .link-more {
  color: var(--gold-dark);
  gap: 0.55rem;
}

.link-more {
  transition: gap 0.3s var(--ease), color 0.25s;
}

/* ---------- Service detail (overview page) ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail__img {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease);
}

.service-detail:hover .service-detail__img {
  transform: scale(1.02);
}

.service-detail__text h2 {
  font-size: 1.85rem;
  margin-bottom: 0.75rem;
}

.service-detail__text p {
  color: #3d2e22;
  margin-bottom: 1rem;
}

/* ---------- Service single page ---------- */
.service-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.service-sidebar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.service-sidebar h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.service-sidebar .btn {
  margin-top: 0.5rem;
}

.service-sidebar ul {
  margin: 1rem 0 1.25rem;
  display: grid;
  gap: 0.5rem;
}

.service-sidebar li a {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
  display: block;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s, padding-left 0.25s var(--ease);
}

.service-sidebar li a:hover,
.service-sidebar li a.is-active {
  color: var(--copper);
  padding-left: 0.35rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1.15rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.benefit-card i {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.benefit-card h4 {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- Project gallery ---------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.project-card__trigger {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.project-card__trigger:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.project-card__img {
  display: block;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s var(--ease);
}

.project-card:hover .project-card__img {
  transform: scale(1.05);
}

.project-card__stage {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.project-card__stage--before {
  background: #5a4a3a;
}

.project-card__stage--after {
  background: linear-gradient(145deg, var(--gold) 0%, var(--copper) 100%);
}

.project-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1rem 1.15rem 0.3rem;
  text-align: center;
}

.project-card p {
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  padding: 0 1rem 1.15rem;
}

body.lightbox-open {
  overflow: hidden;
}

.photo-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.photo-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 8, 5, 0.88);
}

.photo-lightbox__content {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: min(1100px, 100%);
  max-height: 100%;
  align-items: center;
  justify-content: center;
}

.photo-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 2.5rem);
  object-fit: contain;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.photo-lightbox__close {
  position: absolute;
  z-index: 2;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(26, 18, 11, 0.88);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}

.photo-lightbox__close:hover,
.photo-lightbox__close:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

/* ---------- Areas ---------- */
.areas-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.areas-feature {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: #fff;
  padding: 2.25rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 3px solid var(--gold);
}

.areas-feature i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.areas-feature h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.areas-feature p {
  font-size: 0.95rem;
  color: rgba(255, 245, 220, 0.8);
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.areas-list li {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.9rem 1rem;
  text-align: center;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.areas-list li:hover {
  border-color: var(--gold);
  background: #faf6ef;
  transform: translateY(-2px);
}

/* ---------- Features / process / testimonials ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--copper);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-card i {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: transform 0.35s var(--ease);
}

.feature-card:hover i {
  transform: scale(1.1);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.35s var(--ease);
}

.process-step:hover {
  transform: translateY(-4px);
}

.process-step__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.65rem;
  display: block;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.testimonial {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.testimonial p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 1rem;
}

.testimonial cite {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.contact-info .lead {
  margin-bottom: 1.75rem;
}

.contact-list {
  display: grid;
  gap: 1.25rem;
}

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

.contact-list i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gold) 0%, var(--copper-dark) 100%);
  color: #fff;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.contact-list strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.contact-list span,
.contact-list a {
  font-weight: 500;
  color: var(--black);
}

.contact-list a:hover {
  color: var(--copper);
}

.disclaimer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #999;
}

.quote-form {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.quote-form h3 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--black);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid #cfc3b4;
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.22);
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: #a33;
}

.form-status {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 1.4em;
}

.form-status.success {
  color: #2d6a3e;
}

.form-status.error {
  color: #a33;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(110deg, var(--copper-dark) 0%, var(--dark-soft) 45%, var(--dark) 100%);
  padding: 3.5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201, 162, 39, 0.2), transparent 55%);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  margin-bottom: 0.4rem;
}

.cta-band p {
  color: rgba(255, 245, 220, 0.85);
  max-width: 500px;
}

/* ---------- Footer ---------- */
.site-footer {
  color: rgba(255, 255, 255, 0.85);
}

.footer-top {
  background: var(--footer-bar);
  padding: 1.75rem 0;
}

.footer-top__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 0.2rem;
  font-size: 1.1rem;
}

.footer-contact-item a,
.footer-contact-item strong {
  color: #fff;
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-main {
  background: var(--dark);
  padding: 3rem 0 2.5rem;
}

.footer-main__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand .brand--footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand .brand__logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
}

.footer-brand .brand__text strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
  display: block;
}

.footer-brand .brand__text em {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 245, 220, 0.65);
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 300px;
  color: rgba(255, 245, 220, 0.7);
  line-height: 1.55;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  transition: background 0.3s, border-color 0.3s, transform 0.25s var(--ease);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: color 0.25s, padding-left 0.25s var(--ease);
}

.footer-col a:hover {
  color: var(--gold-light);
  padding-left: 0.25rem;
}

/* PCA accreditation stamp band — high-impact seal */
.footer-accreditation {
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(201, 162, 39, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 70% at 85% 50%, rgba(184, 115, 51, 0.18), transparent 50%),
    linear-gradient(180deg, #120c08 0%, #1f140c 50%, #0d0906 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.45);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.footer-accreditation::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 18px,
    rgba(201, 162, 39, 0.03) 18px,
    rgba(201, 162, 39, 0.03) 19px
  );
  pointer-events: none;
}

.footer-accreditation__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem 2.5rem;
  align-items: center;
}

.pca-seal {
  display: block;
  flex-shrink: 0;
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
  filter: drop-shadow(0 8px 28px rgba(201, 162, 39, 0.45));
  animation: sealPulse 4.5s ease-in-out infinite;
}

.pca-seal:hover {
  transform: scale(1.06) rotate(-2deg);
  filter: drop-shadow(0 12px 36px rgba(224, 188, 74, 0.65));
  padding-left: 0;
}

.pca-seal img {
  width: 180px;
  height: auto;
  display: block;
}

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

.footer-accreditation__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-accreditation__copy h3 {
  color: #fff;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.footer-accreditation__copy p {
  color: rgba(255, 245, 220, 0.78);
  font-size: 0.98rem;
  max-width: 420px;
  margin-bottom: 0.85rem;
  line-height: 1.55;
}

.footer-accreditation__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(224, 188, 74, 0.4);
  padding-bottom: 0.15rem;
  transition: color 0.25s, border-color 0.25s, gap 0.25s var(--ease);
}

.footer-accreditation__link:hover {
  color: #fff;
  border-color: var(--gold);
  gap: 0.65rem;
}

.pca-plaque {
  display: block;
  transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}

.pca-plaque:hover {
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(0 10px 28px rgba(201, 162, 39, 0.35));
  padding-left: 0;
}

.pca-plaque img {
  width: min(300px, 100%);
  height: auto;
  display: block;
  border-radius: 10px;
}

@keyframes sealPulse {
  0%,
  100% {
    filter: drop-shadow(0 8px 24px rgba(201, 162, 39, 0.4));
  }
  50% {
    filter: drop-shadow(0 10px 34px rgba(224, 188, 74, 0.65));
  }
}

@media (max-width: 900px) {
  .footer-accreditation__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-accreditation__copy p {
    margin-inline: auto;
  }

  .pca-seal img {
    width: 160px;
  }
}

.footer-bottom {
  background: #0d0906;
  padding: 1rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.footer-bottom__pca a {
  color: rgba(255, 245, 220, 0.65);
  transition: color 0.25s;
}

.footer-bottom__pca a:hover {
  color: var(--gold-light);
}

.footer-bottom__sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-left {
    order: 0;
  }

  .header-right .btn--sm {
    display: none;
  }
}

@media (max-width: 980px) {
  .service-grid,
  .project-grid,
  .feature-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .contact-layout,
  .areas-layout,
  .footer-main__grid,
  .service-detail,
  .service-detail:nth-child(even),
  .service-page-grid,
  .benefit-grid,
  .trust-bar__grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-sidebar {
    position: static;
  }

  .areas-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .topbar__loc {
    display: none;
  }

  .brand--center .brand__name {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 72px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-left {
    position: static;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--topbar-h) - var(--header-h));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
      visibility 0.35s;
    z-index: 99;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0 1rem;
    gap: 0;
  }

  .main-nav a {
    display: flex;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--border);
  }

  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #faf6ef;
    display: none;
    min-width: 0;
  }

  .has-sub.open > .sub-menu {
    display: block;
  }

  .sub-menu a {
    padding-left: 2rem;
    white-space: normal;
  }

  .brand--center {
    justify-self: center;
    grid-column: 1;
    grid-row: 1;
  }

  .header-right {
    grid-column: 2;
  }

  .nav-toggle {
    grid-column: 3;
  }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .nav-left {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
  }

  .service-grid,
  .project-grid,
  .feature-grid,
  .process-steps,
  .areas-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.25rem 0;
  }

  .hero {
    min-height: 540px;
  }

  .hero__actions,
  .cta-band__inner {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .cta-band__inner {
    text-align: center;
  }

  .cta-band p {
    margin-inline: auto;
  }

  .quote-form {
    padding: 1.5rem;
  }

  .topbar {
    height: auto;
    min-height: var(--topbar-h);
    padding: 0.4rem 0;
  }

  .topbar__inner {
    gap: 0.5rem 1rem;
    justify-content: center;
  }

  .brand--center .brand__logo {
    height: 52px;
    width: 52px;
  }

  .header-right .social-links a {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-hero__media {
    animation: none;
  }

  .hero-slideshow__slide {
    transition: opacity 0.01ms;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
