/* ==========================================================================
   Renovations Elite LLC — Design System
   Brand: Property-Loss Reconstruction Partner
   ========================================================================== */

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap");

/* ==========================================================================
   1. Design Tokens
   ========================================================================== */
:root {
  /* Brand colors */
  --charcoal: #17212b;
  --charcoal-900: #101820;
  --charcoal-800: #1d2a37;
  --steel: #315b6d;
  --steel-600: #2a4f5f;
  --steel-300: #7fa3b2;
  --gold: #d3a24a;
  --gold-600: #b98a33;
  --gold-100: #f4e7cf;
  --warm-white: #faf8f4;
  --mist: #e9eef1;
  --slate: #5b6873;
  --success: #2e6b57;

  /* Typography */
  --font-heading: "Manrope", "Arial", sans-serif;
  --font-body: "Inter", "Arial", sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* Layout */
  --container: 1380px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(23, 33, 43, 0.08), 0 1px 2px rgba(23, 33, 43, 0.06);
  --shadow-md: 0 6px 18px rgba(23, 33, 43, 0.1), 0 2px 6px rgba(23, 33, 43, 0.06);
  --shadow-lg: 0 18px 40px rgba(23, 33, 43, 0.16), 0 6px 14px rgba(23, 33, 43, 0.08);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.18s ease;
  --t-med: 0.32s var(--ease);
  --t-slow: 0.6s var(--ease);
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--steel);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--steel-600);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.12;
  color: var(--charcoal);
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.625rem); /* 36–58px */
}

h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.625rem); /* 28–42px */
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem); /* 20–28px */
}

p {
  color: #35434f;
}

::selection {
  background: var(--gold);
  color: var(--charcoal);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ==========================================================================
   3. Layout Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 24px;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

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

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

.section--charcoal h2,
.section--charcoal h3,
.section--charcoal .lead {
  color: var(--warm-white);
}

.section--charcoal p {
  color: rgba(250, 248, 244, 0.78);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: var(--sp-3);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

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

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: #35434f;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4.5vw, 3.5rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

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

.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }

/* ==========================================================================
   4. Buttons & Links
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 26px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-align: center;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  position: relative;
}

.btn .btn__arrow {
  transition: transform var(--t-fast);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

/* Primary — gold, charcoal text */
.btn--primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 14px rgba(211, 162, 74, 0.35);
}

.btn--primary:hover {
  background: var(--gold-600);
  color: var(--charcoal);
  box-shadow: 0 8px 22px rgba(211, 162, 74, 0.45);
  transform: translateY(-2px);
}

/* Secondary — steel blue solid */
.btn--secondary {
  background: var(--steel);
  color: var(--warm-white);
  box-shadow: 0 4px 14px rgba(49, 91, 109, 0.3);
}

.btn--secondary:hover {
  background: var(--steel-600);
  color: var(--warm-white);
  transform: translateY(-2px);
}

/* Outline — steel on light */
.btn--outline {
  background: transparent;
  color: var(--steel);
  border: 2px solid var(--steel);
}

.btn--outline:hover {
  background: var(--steel);
  color: var(--warm-white);
  transform: translateY(-2px);
}

/* Outline — on dark surfaces */
.btn--outline-light {
  background: transparent;
  color: var(--warm-white);
  border: 2px solid rgba(250, 248, 244, 0.55);
}

.btn--outline-light:hover {
  background: var(--warm-white);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn--ghost-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn--ghost-gold:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Text link */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--steel);
  position: relative;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--t-fast);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

/* ==========================================================================
   5. Utility Bar
   ========================================================================== */
.utility-bar {
  background: var(--charcoal-900);
  color: rgba(250, 248, 244, 0.85);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 9px 0;
  position: relative;
  z-index: 60;
}

.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.utility-bar__left {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: rgba(250, 248, 244, 0.72);
}

.utility-bar__left strong {
  color: var(--gold);
  font-weight: 700;
}

.utility-bar__right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.utility-bar__right a {
  color: var(--warm-white);
  font-weight: 600;
}

.utility-bar__right a:hover {
  color: var(--gold);
}

.utility-bar__right svg {
  width: 15px;
  height: 15px;
}

/* ==========================================================================
   6. Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--charcoal);
  transition: box-shadow var(--t-med), background var(--t-med);
}

.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(16, 24, 32, 0.4);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--warm-white);
  text-decoration: none;
  flex-shrink: 0;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--charcoal-800), var(--charcoal-900));
  border: 1px solid rgba(211, 162, 74, 0.35);
  position: relative;
  overflow: hidden;
}

.logo__mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 46%, var(--gold) 46%, var(--gold) 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, var(--gold) 46%, var(--gold) 54%, transparent 54%);
  opacity: 0.5;
}

.logo__mark span {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--warm-white);
  white-space: nowrap;
}

.logo__name em {
  font-style: normal;
  color: var(--gold);
}

.logo__tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.6);
  white-space: nowrap;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 11px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(250, 248, 244, 0.85);
  border-radius: 8px;
  white-space: nowrap;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold);
  background: rgba(211, 162, 74, 0.08);
}

.nav-link .nav-caret {
  width: 10px;
  height: 10px;
  transition: transform var(--t-fast);
}

.nav-item:hover .nav-caret,
.nav-item.has-open .nav-caret {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 300px;
  background: var(--charcoal-900);
  border: 1px solid rgba(250, 248, 244, 0.08);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t-med), transform var(--t-med), visibility var(--t-med);
}

.nav-item:hover .dropdown,
.nav-item.has-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 8px;
  color: rgba(250, 248, 244, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast);
}

.dropdown a:hover {
  background: rgba(211, 162, 74, 0.1);
  color: var(--gold);
}

.dropdown a small {
  color: rgba(250, 248, 244, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dropdown__divider {
  height: 1px;
  background: rgba(250, 248, 244, 0.08);
  margin: 6px 8px;
}

/* Header CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}

.nav-cta .btn {
  padding: 12px 16px;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--warm-white);
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-med);
}

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

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

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

/* Mobile nav panel */
.mobile-nav {
  display: none;
  background: var(--charcoal-900);
  color: var(--warm-white);
  border-top: 1px solid rgba(250, 248, 244, 0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med);
}

.mobile-nav.is-open {
  max-height: 82vh;
  overflow-y: auto;
}

.mobile-nav__list {
  list-style: none;
  padding: 12px 24px 24px;
}

.mobile-nav__list a {
  display: block;
  padding: 14px 6px;
  color: var(--warm-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(250, 248, 244, 0.07);
  white-space: nowrap;
}

.mobile-nav__list a:hover {
  color: var(--gold);
}

.mobile-nav__sub {
  display: none;
  list-style: none;
  padding-left: 16px;
}

.mobile-nav__sub a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(250, 248, 244, 0.7);
  border-bottom: none;
  padding: 10px 6px;
}

.mobile-nav__parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-nav__parent .nav-caret {
  width: 12px;
  height: 12px;
  transition: transform var(--t-fast);
}

.mobile-nav__parent.is-expanded .nav-caret {
  transform: rotate(180deg);
}

.mobile-nav__parent.is-expanded + .mobile-nav__sub {
  display: block;
}

.mobile-nav__cta {
  padding: 16px 6px 4px;
}

.mobile-nav__cta .btn {
  width: 100%;
}

/* ==========================================================================
   7. Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--warm-white);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--warm-white);
  margin-bottom: var(--sp-5);
}

.hero h1 .gold {
  color: var(--gold);
}

.hero__body {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: rgba(250, 248, 244, 0.82);
  max-width: 540px;
  margin-bottom: var(--sp-6);
}

.hero__support {
  margin-top: var(--sp-6);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(250, 248, 244, 0.65);
}

.hero__support svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Hero visual — abstract blueprint illustration */
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__frame {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--charcoal-800) 0%, var(--charcoal-900) 100%);
  border: 1px solid rgba(211, 162, 74, 0.22);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(211, 162, 74, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 162, 74, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
}

.hero__frame::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 162, 74, 0.14), transparent 65%);
  top: -120px;
  right: -120px;
  animation: drift 9s ease-in-out infinite;
}

.hero__bldg {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  height: 240px;
  margin-bottom: 28px;
}

.hero__img {
  position: relative;
  flex: 1;
  min-height: 240px;
  margin-bottom: 28px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(211, 162, 74, 0.22);
  background: linear-gradient(160deg, var(--charcoal-800) 0%, var(--charcoal-900) 100%);
}

.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__bldg-col {
  position: relative;
  border: 1.5px solid rgba(211, 162, 74, 0.35);
  border-radius: 8px 8px 4px 4px;
  background: rgba(49, 91, 109, 0.16);
}

.hero__bldg-col:nth-child(1) { height: 62%; align-self: flex-end; }
.hero__bldg-col:nth-child(2) { height: 100%; }
.hero__bldg-col:nth-child(3) { height: 46%; align-self: flex-end; }

.hero__bldg-col span {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;
  height: 60%;
  background: rgba(250, 248, 244, 0.08);
  border-radius: 4px;
}

.hero__bldg-col span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero__label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(250, 248, 244, 0.12);
}

.hero__label svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero__label strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--warm-white);
  font-size: 1rem;
}

.hero__label small {
  color: rgba(250, 248, 244, 0.55);
  font-size: 0.82rem;
}

.hero__accent {
  position: absolute;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(211, 162, 74, 0.18);
  bottom: -12px;
  right: 0;
  letter-spacing: 0.02em;
  user-select: none;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-16px, 10px); }
}

/* Hero entrance animations */
.hero .hero__content > * {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 0.7s var(--ease) forwards;
}

.hero .hero__content > *:nth-child(1) { animation-delay: 0.08s; }
.hero .hero__content > *:nth-child(2) { animation-delay: 0.18s; }
.hero .hero__content > *:nth-child(3) { animation-delay: 0.28s; }
.hero .hero__content > *:nth-child(4) { animation-delay: 0.38s; }
.hero .hero__content > *:nth-child(5) { animation-delay: 0.48s; }

.hero__visual {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  animation: heroIn 0.9s var(--ease) forwards;
  animation-delay: 0.35s;
}

@keyframes heroIn {
  to { opacity: 1; transform: none; }
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(211, 162, 74, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 162, 74, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 162, 74, 0.12), transparent 65%);
  top: -180px;
  right: -140px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.page-hero h1 {
  color: var(--warm-white);
  max-width: 820px;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero p {
  color: rgba(250, 248, 244, 0.8);
  max-width: 720px;
  margin-top: var(--sp-4);
  font-size: 1.05rem;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.page-hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(211, 162, 74, 0.25);
  background: linear-gradient(160deg, var(--charcoal-800) 0%, var(--charcoal-900) 100%);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.page-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(211, 162, 74, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 162, 74, 0.09) 1px, transparent 1px);
  background-size: 26px 26px;
}

.page-hero__media:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(211, 162, 74, 0.4);
}

.page-hero__icon {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(211, 162, 74, 0.12);
  border: 1px solid rgba(211, 162, 74, 0.35);
  color: var(--gold);
  transition: transform var(--t-med), background var(--t-med);
}

.page-hero__img {
  position: relative;
  flex: 1;
  min-height: 220px;
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(211, 162, 74, 0.25);
}

.page-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-med);
}

.page-hero__media:hover .page-hero__img img {
  transform: scale(1.04);
}

.page-hero__media:hover .page-hero__icon {
  transform: scale(1.08) rotate(-5deg);
  background: rgba(49, 91, 109, 0.45);
}

.page-hero__icon svg {
  width: 42px;
  height: 42px;
}

.page-hero__cap {
  position: relative;
}

.page-hero__cap strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--warm-white);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.page-hero__cap small {
  color: rgba(250, 248, 244, 0.6);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.55);
  margin-bottom: var(--sp-5);
}

.breadcrumb a {
  color: rgba(250, 248, 244, 0.75);
}

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

.breadcrumb svg {
  width: 12px;
  height: 12px;
}

/* ==========================================================================
   8. Promise Strip / Feature Cards
   ========================================================================== */
.card {
  background: var(--warm-white);
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(211, 162, 74, 0.5);
}

.card:hover .card__icon {
  background: var(--steel);
  transform: scale(1.08) rotate(-4deg);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--charcoal);
  margin-bottom: var(--sp-4);
  color: var(--gold);
  box-shadow: var(--shadow-sm);
  transition: background var(--t-med), transform var(--t-med);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: var(--sp-2);
}

.card p {
  font-size: 0.97rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Promise strip (dark) */
.promise-strip {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.promise-strip .section-head h2 {
  color: var(--warm-white);
}

.promise-strip::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--steel), var(--gold));
}

.promise-strip .card {
  background: rgba(29, 42, 55, 0.65);
  border: 1px solid rgba(250, 248, 244, 0.08);
  backdrop-filter: blur(4px);
}

.promise-strip .card:hover {
  border-color: rgba(211, 162, 74, 0.55);
  background: rgba(29, 42, 55, 0.95);
}

.promise-strip .card__icon {
  background: var(--charcoal-900);
  border: 1px solid rgba(211, 162, 74, 0.3);
}

.promise-strip .card h3 {
  color: var(--warm-white);
}

.promise-strip .card p {
  color: rgba(250, 248, 244, 0.72);
}

/* ==========================================================================
   9. Checklist
   ========================================================================== */
.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 16px;
  background: var(--warm-white);
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: var(--radius);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.check-list li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.check-list .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(46, 107, 87, 0.12);
  color: var(--success);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.check-list .check svg {
  width: 14px;
  height: 14px;
}

.check-list .check--gold {
  background: rgba(211, 162, 74, 0.16);
  color: var(--gold-600);
}

.check-list strong {
  font-family: var(--font-heading);
  display: inline;
}

/* ==========================================================================
   10. Process Steps
   ========================================================================== */
.process-steps {
  counter-reset: step;
  display: grid;
  gap: 18px;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 22px 24px;
  background: var(--warm-white);
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.process-step:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.process-step__num {
  counter-increment: step;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--charcoal);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  position: relative;
  transition: background var(--t-med), transform var(--t-med), color var(--t-med);
}

.process-step:hover .process-step__num {
  background: var(--steel);
  color: var(--warm-white);
  transform: rotate(-6deg) scale(1.08);
}

.process-step__num::after {
  counter-reset: none;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background: rgba(49, 91, 109, 0.25);
}

.process-step:last-child .process-step__num::after {
  display: none;
}

.process-step h3 {
  margin-bottom: 6px;
}

/* ==========================================================================
   11. Stats / Notice Bars
   ========================================================================== */
.notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 22px;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  background: var(--gold-100);
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.notice:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.notice--steel {
  border-left-color: var(--steel);
  background: var(--mist);
}

.notice--green {
  border-left-color: var(--success);
  background: rgba(46, 107, 87, 0.1);
}

.notice svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold-600);
}

.notice strong {
  font-family: var(--font-heading);
}

/* Exclusion banner */
.exclusion {
  background: transparent;
  border: 1px solid rgba(211, 162, 74, 0.45);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.98rem;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.exclusion:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.exclusion svg {
  width: 20px;
  height: 20px;
  color: var(--gold-600);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   12. Service rows
   ========================================================================== */
.service-row {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 18px;
  border-top: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: var(--radius);
  position: relative;
  transition: background var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}

.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform var(--t-med);
}

.service-row:hover {
  background: rgba(233, 238, 241, 0.7);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.service-row:hover::before {
  transform: scaleY(1);
}

.service-row:last-child {
  border-bottom: 1px solid rgba(23, 33, 43, 0.1);
}

.service-row h3 {
  margin-bottom: 4px;
}

.service-row small {
  color: var(--slate);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ==========================================================================
   13. Tables
   ========================================================================== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 33, 43, 0.1);
  box-shadow: var(--shadow-sm);
  background: var(--warm-white);
}

/* Service category image gallery */
.svc-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.svc-gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 2.2;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.svc-gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(211, 162, 74, 0.35);
}

.svc-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-med);
}

.svc-gallery__item:hover img {
  transform: scale(1.05);
}

.svc-gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(16, 24, 32, 0.82);
  color: rgba(250, 248, 244, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 14px;
}

/* Before / after project comparison */
.ba-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 34px;
}

.ba-compare__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.ba-compare__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(211, 162, 74, 0.35);
}

.ba-compare__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-med);
}

.ba-compare__item:hover img {
  transform: scale(1.04);
}

.ba-compare__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--charcoal);
  color: var(--warm-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.ba-compare__item:nth-child(2) .ba-compare__tag {
  background: var(--gold);
  color: var(--charcoal);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

thead th {
  background: var(--charcoal);
  color: var(--warm-white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  padding: 16px 20px;
}

tbody td {
  padding: 16px 20px;
  border-top: 1px solid rgba(23, 33, 43, 0.08);
  vertical-align: top;
  font-size: 0.97rem;
}

tbody tr:nth-child(even) {
  background: var(--mist);
}

tbody tr {
  transition: background var(--t-fast);
}

tbody tr:hover {
  background: rgba(211, 162, 74, 0.1);
}

td strong {
  font-family: var(--font-heading);
}

/* ==========================================================================
   14. FAQ Accordion
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--warm-white);
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--t-med), border-color var(--t-med);
}

.faq-item:hover {
  border-color: rgba(211, 162, 74, 0.5);
}

.faq-item.is-open {
  box-shadow: var(--shadow-md);
  border-color: rgba(211, 162, 74, 0.6);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
}

.faq-q .faq-q__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--steel);
  display: grid;
  place-items: center;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.faq-q .faq-q__icon svg {
  width: 16px;
  height: 16px;
}

.faq-item.is-open .faq-q__icon {
  background: var(--gold);
  color: var(--charcoal);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med);
}

.faq-a__inner {
  padding: 0 22px 20px;
  color: #35434f;
  font-size: 0.98rem;
}

.faq-a__inner p + p {
  margin-top: 10px;
}

/* ==========================================================================
   15. Forms
   ========================================================================== */
.form-card {
  background: var(--warm-white);
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
}

.form-field label .req {
  color: var(--gold-600);
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field input[type="url"],
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--mist);
  border: 2px solid transparent;
  border-radius: 10px;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2317212b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--warm-white);
  box-shadow: 0 0 0 4px rgba(211, 162, 74, 0.18);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #b0413e;
  background: #fdf3f2;
}

.form-error {
  display: none;
  font-size: 0.82rem;
  color: #b0413e;
  font-weight: 600;
}

.form-field.has-error .form-error {
  display: block;
}

/* Radio / checkbox pills */
.checkbox-line,
.radio-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  cursor: pointer;
}

.checkbox-line input,
.radio-line input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--steel);
  flex-shrink: 0;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 2px solid rgba(23, 33, 43, 0.16);
  border-radius: var(--radius-pill);
  background: var(--mist);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--t-fast);
}

.pill input:checked + span {
  background: var(--charcoal);
  color: var(--warm-white);
  border-color: var(--charcoal);
}

.pill input:focus-visible + span {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.pill input:checked + span .pill-check {
  display: inline-flex;
}

.pill-check {
  display: none;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: var(--gold);
}

.form-hint {
  font-size: 0.82rem;
  color: var(--slate);
}

.form-submit {
  margin-top: 6px;
}

/* Upload */
.file-drop {
  position: relative;
  border: 2px dashed rgba(49, 91, 109, 0.4);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
  background: var(--mist);
}

.file-drop:hover,
.file-drop.is-dragover {
  border-color: var(--gold);
  background: var(--gold-100);
}

.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-drop svg {
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  color: var(--steel);
}

.file-drop strong {
  font-family: var(--font-heading);
}

.file-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.file-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--mist);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.88rem;
}

.file-chip button {
  background: none;
  border: none;
  color: #b0413e;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.is-visible {
  display: block;
}

.form-success__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(46, 107, 87, 0.12);
  color: var(--success);
  display: grid;
  place-items: center;
}

.form-success__icon svg {
  width: 36px;
  height: 36px;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* ==========================================================================
   16. Footer
   ========================================================================== */
.site-footer {
  background: var(--charcoal-900);
  color: rgba(250, 248, 244, 0.75);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--steel), var(--gold));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(250, 248, 244, 0.65);
  max-width: 300px;
}

.site-footer h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(250, 248, 244, 0.75);
  font-size: 0.95rem;
}

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

.footer-contact {
  list-style: none;
  display: grid;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  color: rgba(250, 248, 244, 0.85);
}

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

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 244, 0.1);
  padding-block: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.55);
}

.footer-bottom a {
  color: rgba(250, 248, 244, 0.7);
}

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

.footer-bottom .legal-links {
  display: flex;
  gap: 18px;
}

/* ==========================================================================
   17. Sticky Mobile Action Bar
   ========================================================================== */
.sticky-actions {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  background: var(--charcoal);
  border-top: 1px solid rgba(211, 162, 74, 0.3);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 12px;
  box-shadow: 0 -6px 20px rgba(16, 24, 32, 0.3);
}

.sticky-actions .btn {
  flex: 1;
  padding: 13px 12px;
}

/* ==========================================================================
   18. Page progress & misc
   ========================================================================== */
.page-gutter {
  max-width: 760px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.two-col .media {
  order: 2;
}

/* Media visual placeholder */
.media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--charcoal);
  min-height: 320px;
  display: grid;
  place-items: center;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.media:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(211, 162, 74, 0.35);
}

.media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(211, 162, 74, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 162, 74, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.media svg {
  position: relative;
  width: 64px;
  height: 64px;
  color: var(--gold);
  opacity: 0.85;
  transition: transform var(--t-med);
}

.media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media:hover img {
  transform: scale(1.03);
}

.media:hover svg {
  transform: scale(1.12);
}

.media .media__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(16, 24, 32, 0.85);
  color: rgba(250, 248, 244, 0.85);
  font-size: 0.82rem;
  padding: 12px 18px;
  backdrop-filter: blur(4px);
}

/* Service-area map card */
.map-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 33, 43, 0.12);
  box-shadow: var(--shadow-lg);
  background: var(--warm-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.map-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(211, 162, 74, 0.35);
}

.map-card__svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-card .map-card__label {
  background: rgba(16, 24, 32, 0.9);
  color: rgba(250, 248, 244, 0.85);
  font-size: 0.82rem;
  padding: 12px 18px;
}

.map-dot {
  cursor: pointer;
}

.map-dot .map-hit {
  fill: #ffffff;
  opacity: 0;
}

.map-dot .map-tip {
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}

.map-dot:hover .map-tip {
  opacity: 1;
}

.map-dot:hover > circle {
  stroke: var(--gold);
  stroke-width: 2;
}

/* CTA band */
.cta-band {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(211, 162, 74, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 162, 74, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

.cta-band .container {
  position: relative;
  z-index: 2;
}

.cta-band .btn-group {
  margin-top: 34px;
}

.cta-band h2 {
  color: var(--warm-white);
  max-width: 640px;
  margin-inline: auto;
}

.cta-band p {
  color: rgba(250, 248, 244, 0.75);
  max-width: 560px;
  margin: 16px auto 30px;
}

/* ==========================================================================
   19. Scroll Reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero .hero__content > *,
  .hero__visual {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ==========================================================================
   20. Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1360px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
}

@media (max-width: 920px) {
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__media { min-height: 260px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__frame { min-height: 320px; }
  .two-col { grid-template-columns: 1fr; }
  .two-col .media { order: -1; }
  .service-row { grid-template-columns: 1fr; gap: 12px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .svc-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .nav-wrap { gap: 12px; }
  .logo { gap: 10px; }
  .logo__mark { width: 42px; height: 42px; }
  .logo__mark span { font-size: 1.05rem; }
  .logo__name { font-size: 0.95rem; }
  .logo__tag { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .utility-bar__left { display: none; }
  .utility-bar .container { justify-content: center; }
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .sticky-actions { display: flex; }
  .footer-bottom { flex-direction: column; justify-content: center; text-align: center; }
  .btn-group .btn { width: 100%; }
  .hero__frame { min-height: 260px; }
  .hero__bldg { height: 180px; }
  .hero__img { min-height: 180px; }
  .svc-gallery { grid-template-columns: 1fr; }
  .ba-compare { grid-template-columns: 1fr; }
  .table-wrap { overflow-x: visible; }
  table { min-width: 0; }
  thead { display: none; }
  tbody tr {
    display: block;
    border: 1px solid rgba(23, 33, 43, 0.1);
    border-radius: var(--radius);
    margin-bottom: 14px;
    background: var(--warm-white);
    box-shadow: var(--shadow-sm);
  }
  tbody tr:nth-child(even) { background: var(--warm-white); }
  tbody tr:hover { background: var(--mist); }
  tbody td {
    display: block;
    border-top: none;
    padding: 13px 18px;
  }
  tbody td:first-child {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(23, 33, 43, 0.08);
    padding-bottom: 10px;
  }
}

@media (min-width: 641px) {
  .sticky-actions { display: none !important; }
}
