:root {
  --ink: #15171a;
  --coal: #20242a;
  --stone: #f4f2ed;
  --paper: #ffffff;
  --muted: #6b706f;
  --gold: #c9972b;
  --gold-dark: #9c6c12;
  --orange: rgba(225, 136, 36, 0.78);
  --orange-solid: #d98725;
  --orange-dark: #9d5c12;
  --red: var(--orange-solid);
  --green: #596f4d;
  --line: rgba(21, 23, 26, 0.12);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button,
input,
select,
textarea {
  font: inherit;
  touch-action: manipulation;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--coal);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
}

.topbar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}

.topbar a {
  color: #fff;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 239, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 34px rgba(21, 23, 26, 0.08);
  backdrop-filter: blur(22px) saturate(145%);
}

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

.brand {
  display: grid;
  grid-template-columns: 74px auto;
  align-items: center;
  gap: 8px;
  min-width: 220px;
}

.brand-logo {
  width: 74px;
  height: 64px;
  object-fit: contain;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 12px 18px rgba(14, 24, 34, 0.24));
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-solid), var(--orange-dark));
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-weight: 950;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand-text > span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

.nav-menu > li {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  min-height: 44px;
  padding: 0 8px;
  border-radius: 8px;
  color: #2e3336;
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(201, 151, 43, 0.14);
  outline: none;
}

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  min-width: 230px;
  padding: 8px;
  border: 1px solid rgba(21, 23, 26, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.18s ease;
}

.nav-menu li:hover .dropdown,
.nav-menu li:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 10px;
  border-radius: 6px;
  color: #33383b;
  font-weight: 750;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: var(--stone);
  outline: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 13px;
  border-radius: 8px;
  color: #fff;
  border: 1px solid rgba(255, 193, 98, 0.58);
  color: #fff;
  background: rgba(225, 136, 36, 0.72);
  box-shadow: 0 12px 28px rgba(157, 92, 18, 0.22);
  backdrop-filter: blur(12px);
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  isolation: isolate;
  overflow: hidden;
  background: var(--coal);
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13, 14, 16, 0.56) 0%, rgba(13, 14, 16, 0.42) 42%, rgba(13, 14, 16, 0.08) 100%),
    linear-gradient(180deg, rgba(13, 14, 16, 0.08), rgba(13, 14, 16, 0.48));
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 116px);
  padding: 88px 0 124px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.9rem, 8vw, 6.6rem);
}

.hero-title {
  display: grid;
  gap: 8px;
  max-width: 920px;
}

.hero-title-accent {
  display: block;
  width: fit-content;
  color: transparent;
  background: linear-gradient(92deg, #ffc96d 0%, #f0a33a 28%, #bfe6ff 62%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.48));
}

.hero-title-line {
  display: block;
  color: rgba(244, 248, 250, 0.96);
  font-size: clamp(2.15rem, 5.4vw, 5rem);
  text-shadow: 0 20px 46px rgba(0, 0, 0, 0.58);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.9rem);
}

h3 {
  font-size: 1.34rem;
}

p {
  margin: 0;
}

.hero-lede {
  max-width: 690px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.inline-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 950;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn.primary {
  color: #fff;
  border-color: rgba(255, 193, 98, 0.58);
  background: rgba(225, 136, 36, 0.74);
  box-shadow: 0 16px 28px rgba(157, 92, 18, 0.2);
  backdrop-filter: blur(12px);
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.btn.light {
  color: var(--ink);
  background: #fff;
}

.btn.full {
  width: 100%;
}

.text-link {
  color: var(--orange-dark);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 820px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.hero-panel {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  width: min(330px, calc(100% - 56px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(16, 19, 22, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-panel span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-panel strong {
  font-size: 1.18rem;
}

.hero-panel a {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.quick-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--coal);
  color: #fff;
}

.quick-services a {
  display: grid;
  gap: 5px;
  min-height: 138px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-services a:hover {
  background: #2c3138;
}

.quick-services span {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
}

.quick-services strong {
  max-width: 270px;
  font-size: 1.1rem;
}

.section {
  padding: 86px 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-head.spread {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.proof-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  min-height: clamp(390px, 50vw, 620px);
  padding: 0 0 54px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(9, 14, 18, 0.18)),
    linear-gradient(90deg, rgba(13, 20, 25, 0.14), rgba(255, 255, 255, 0.02), rgba(13, 20, 25, 0.14));
  background-color: #151b20;
  isolation: isolate;
}

.proof-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(111, 177, 218, 0.15), transparent 31%),
    radial-gradient(circle at 82% 20%, rgba(225, 136, 36, 0.13), transparent 28%);
}

.proof-showcase::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(8, 10, 12, 0.32));
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
  perspective: 1200px;
}

.trust-badges article {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 150px;
  padding: 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateZ(0) rotateX(0deg);
  transition: transform 0.22s ease;
  text-align: center;
}

.trust-badges article:nth-child(1) {
  transform: rotateY(4deg) translateY(4px);
}

.trust-badges article:nth-child(2) {
  transform: rotateY(2deg) translateY(-2px);
}

.trust-badges article:nth-child(3) {
  transform: translateY(-4px) translateZ(18px);
}

.trust-badges article:nth-child(4) {
  transform: rotateY(-2deg) translateY(-2px);
}

.trust-badges article:nth-child(5) {
  transform: rotateY(-4deg) translateY(4px);
}

.trust-badges article:hover {
  transform: translateY(-6px) translateZ(24px);
}

.trust-badges article::before {
  content: none;
}

.trust-badges article::after {
  content: none;
}

.badge-icon {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 82px;
  margin: 0 0 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: #fffaf2;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.96), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 229, 188, 0.72) 34%, rgba(226, 147, 49, 0.72) 68%, rgba(132, 78, 20, 0.78) 100%);
  box-shadow:
    0 22px 36px rgba(0, 0, 0, 0.36),
    0 10px 28px rgba(226, 147, 49, 0.28),
    inset 0 3px 8px rgba(255, 255, 255, 0.52),
    inset 0 -10px 18px rgba(0, 0, 0, 0.24);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.24));
}

.badge-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-badges strong {
  position: relative;
  z-index: 1;
  color: #f7fbff;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.74);
  max-width: 150px;
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
}

.trust-badges small {
  position: relative;
  z-index: 1;
  margin-top: 7px;
  color: rgba(224, 244, 255, 0.96);
  text-shadow: 0 7px 18px rgba(0, 0, 0, 0.72);
  font-weight: 800;
  font-size: 0.76rem;
  line-height: 1.22;
  text-transform: uppercase;
}

.visual-quote {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(68, 139, 191, 0.28), transparent 34%),
    radial-gradient(circle at 92% 22%, rgba(225, 136, 36, 0.24), transparent 30%),
    linear-gradient(135deg, #101820 0%, #1d2d3a 48%, #0e1117 100%);
}

.visual-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.visual-quote-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}

.glass-copy {
  display: grid;
  gap: 22px;
}

.glass-copy h2 {
  max-width: 650px;
}

.glass-copy p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.quote-object {
  position: relative;
  width: min(340px, 88vw);
  height: 280px;
  perspective: 900px;
}

.quote-object .slab,
.quote-object .tile {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(121, 190, 232, 0.18));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
}

.quote-object .slab {
  left: 22px;
  bottom: 34px;
  width: 270px;
  height: 150px;
  transform: rotateX(62deg) rotateZ(-18deg);
}

.quote-object .tile {
  width: 98px;
  height: 82px;
  transform: rotateX(58deg) rotateZ(-18deg);
}

.quote-object .tile.one {
  left: 74px;
  top: 44px;
}

.quote-object .tile.two {
  left: 164px;
  top: 18px;
  background: linear-gradient(145deg, rgba(225, 136, 36, 0.72), rgba(255, 225, 172, 0.24));
}

.quote-object .tile.three {
  left: 214px;
  top: 92px;
}

.quote-object .pin {
  position: absolute;
  right: 28px;
  bottom: 42px;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #fff;
  background: rgba(225, 136, 36, 0.78);
  box-shadow: 0 18px 40px rgba(225, 136, 36, 0.26);
  font-size: 2rem;
  font-weight: 950;
}

.glass-quote {
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(219, 242, 255, 0.54));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px);
}

.glass-quote h3 {
  color: var(--ink);
  font-size: 1.5rem;
}

.glass-quote p {
  color: #53606b;
}

.wizard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.wizard-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 34px;
  border: 1px solid rgba(111, 177, 218, 0.32);
  border-radius: 999px;
  color: #23313d;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 950;
}

.wizard-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(32, 36, 42, 0.12);
}

.wizard-progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(225, 136, 36, 0.8), rgba(111, 177, 218, 0.88));
  transition: width 0.22s ease;
}

.wizard-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.wizard-step.active {
  display: grid;
  gap: 14px;
}

.wizard-step legend {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-grid button {
  min-height: 48px;
  padding: 9px 11px;
  border: 1px solid rgba(111, 177, 218, 0.28);
  border-radius: 8px;
  color: #25313a;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.choice-grid button:hover,
.choice-grid button:focus-visible,
.choice-grid button.selected {
  border-color: rgba(225, 136, 36, 0.72);
  background: rgba(255, 238, 211, 0.76);
  outline: none;
  transform: translateY(-1px);
}

.wizard-summary {
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid rgba(111, 177, 218, 0.22);
  border-radius: 8px;
  color: #475663;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.94rem;
  font-weight: 800;
}

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.btn.ghost.dark {
  color: #26323b;
  border-color: rgba(32, 36, 42, 0.22);
  background: rgba(255, 255, 255, 0.44);
}

#wizard-submit {
  display: none;
}

.photo-carousel {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.quote-carousel-top {
  margin-top: 0;
  margin-bottom: 44px;
  border-top: 0;
}

.photo-carousel-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 30px 0;
  animation: photo-slide 110s linear infinite;
}

.photo-carousel:hover .photo-carousel-track {
  animation-play-state: paused;
}

.photo-carousel figure {
  position: relative;
  flex: 0 0 min(430px, 72vw);
  height: clamp(240px, 26vw, 330px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.photo-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes photo-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 54px;
}

.split.reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
}

.split p:not(.eyebrow) {
  margin-top: 18px;
  color: #4f5557;
  font-size: 1.05rem;
}

.inline-actions {
  margin-top: 26px;
}

.feature-photo {
  margin: 0;
}

.feature-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-photo.collage-photo img {
  aspect-ratio: 2 / 1;
  object-fit: contain;
  background: #20242a;
}

.feature-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.service-band {
  background:
    radial-gradient(circle at 15% 8%, rgba(111, 177, 218, 0.16), transparent 28%),
    linear-gradient(180deg, #f5f7f8, #e9edf0);
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(190px, 0.95fr) minmax(220px, auto);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(222, 243, 255, 0.58)),
    radial-gradient(circle at 92% 16%, rgba(225, 136, 36, 0.13), transparent 30%);
  box-shadow:
    0 28px 64px rgba(21, 23, 26, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(130%);
  transform: translateZ(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  border-color: rgba(111, 177, 218, 0.48);
  box-shadow:
    0 38px 86px rgba(21, 23, 26, 0.2),
    0 16px 34px rgba(111, 177, 218, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(-8px) rotateX(2deg);
}

.service-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 12px 12px 0;
  border-radius: 8px;
  background: #dce6ed;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 44%),
    linear-gradient(135deg, rgba(111, 177, 218, 0.18), transparent 45%);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
  transition: transform 0.35s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  padding: 20px 22px 22px;
  color: var(--ink);
}

.service-card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border: 1px solid rgba(111, 177, 218, 0.34);
  border-radius: 8px;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 22px rgba(111, 177, 218, 0.12);
  font-weight: 950;
}

.service-card h3 {
  color: #15171a;
}

.service-card p {
  margin: 10px 0 18px;
  color: #56616a;
}

.service-card span {
  color: var(--orange-dark);
  font-weight: 950;
}

.estimator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: 46px;
  align-items: center;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 11px 12px;
  border-left: 4px solid var(--gold);
  background: #fff;
  font-weight: 800;
}

.estimate-card,
.quote-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(21, 23, 26, 0.12);
}

label {
  display: grid;
  gap: 7px;
  color: #303538;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(21, 23, 26, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

input,
select {
  height: 48px;
  padding: 0 12px;
}

textarea {
  min-height: 130px;
  padding: 12px;
  resize: vertical;
}

.estimate-result {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-radius: 8px;
  background: var(--coal);
  color: #fff;
}

.estimate-result span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.estimate-result strong {
  font-size: 1.7rem;
}

.estimate-result small {
  color: rgba(255, 255, 255, 0.72);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.filter {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #33383b;
  cursor: pointer;
  font-weight: 900;
}

.filter.active,
.filter:hover {
  color: #fff;
  background: var(--coal);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #d6d2ca;
  aspect-ratio: 1 / 1;
  box-shadow: 0 18px 38px rgba(21, 23, 26, 0.12);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.04);
}

.portfolio-item span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 10px;
  border-radius: 8px;
  color: #fff;
  background: rgba(21, 23, 26, 0.72);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.project-showcase {
  overflow: hidden;
}

.project-slider {
  position: relative;
  overflow: hidden;
  min-height: clamp(430px, 58vw, 680px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 12%, rgba(111, 177, 218, 0.16), transparent 34%),
    linear-gradient(145deg, #101820, #222831);
  box-shadow: 0 30px 80px rgba(21, 23, 26, 0.24);
}

.project-slide-stage {
  position: absolute;
  inset: 0;
}

.project-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.85s ease, transform 1.1s ease;
}

.project-slide.active {
  opacity: 1;
  transform: scale(1);
}

.project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 14, 0.74), transparent 52%),
    linear-gradient(180deg, transparent 48%, rgba(8, 11, 14, 0.62));
}

.project-slide figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  gap: 6px;
  max-width: min(420px, calc(100% - 56px));
  color: #fff;
}

.project-slide figcaption span {
  color: #9fd8ff;
  font-weight: 950;
  text-transform: uppercase;
}

.project-slide figcaption strong {
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  line-height: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
}

.slider-btn.prev {
  left: 18px;
}

.slider-btn.next {
  right: 18px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.slider-dots button.active {
  width: 32px;
  background: #9fd8ff;
}

.reviews {
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(111, 177, 218, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(32, 36, 42, 0.98), rgba(23, 28, 34, 0.98));
}

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

.review-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.review-source {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

.review-source span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #4285f4;
  background: #fff;
  font-weight: 950;
}

.review-source em {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 800;
}

.stars {
  color: #fbbc04;
  font-size: 1.16rem;
  font-weight: 950;
  letter-spacing: 0;
}

.review-card p {
  margin: 14px 0;
  color: rgba(255, 255, 255, 0.82);
}

.review-card strong {
  color: #fff;
}

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.area-cloud a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 850;
}

.area-cloud a:hover {
  color: #fff;
  background: var(--green);
}

.cta-strip {
  padding: 54px 0;
  color: #fff;
  background: linear-gradient(135deg, #21262d, #111315 58%, #5b1818);
}

.cta-strip .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--coal);
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 12, 14, 0.82), rgba(10, 12, 14, 0.28));
}

.page-hero .shell {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
}

.breadcrumb {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
}

.copy-block {
  display: grid;
  gap: 24px;
}

.copy-block h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.copy-block p,
.copy-block li {
  color: #4f5557;
}

.copy-block ul {
  columns: 2;
  margin: 0;
  padding-left: 20px;
}

.side-quote {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--coal);
}

.side-quote strong {
  font-size: 1.3rem;
}

.side-quote p {
  color: rgba(255, 255, 255, 0.75);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 950;
}

.faq details p {
  padding: 0 18px 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 44px;
}

.contact-panel {
  display: grid;
  gap: 14px;
  align-self: start;
}

.contact-item {
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-weight: 850;
}

.contact-item strong,
.contact-item a {
  font-size: 1.1rem;
  font-weight: 950;
}

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

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

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: #15171a;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  padding: 54px 0;
}

.footer-main h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1rem;
}

.footer-main p,
.footer-main a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-main a {
  display: block;
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.sticky-actions {
  position: fixed;
  left: 18px;
  right: auto;
  top: 50%;
  bottom: auto;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-50%);
}

.sticky-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  color: #fff5f5;
  border: 1px solid rgba(255, 111, 124, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 73, 87, 0.72) 0%, rgba(210, 38, 50, 0.78) 48%, rgba(132, 15, 25, 0.82) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 129, 139, 0.45),
    0 16px 34px rgba(122, 27, 34, 0.26),
    0 8px 20px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px) saturate(150%);
  font-weight: 950;
}

@media (max-width: 1020px) {
  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    inset: 116px 0 auto;
    display: none;
    max-height: calc(100vh - 116px);
    overflow: auto;
    padding: 18px 16px 28px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  body.menu-open .nav-menu {
    display: grid;
    align-items: start;
    justify-content: stretch;
    gap: 4px;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 0 8px;
  }

  .dropdown {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding: 0 0 10px 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .quick-services,
  .trust-badges,
  .service-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .split.reverse,
  .estimator,
  .visual-quote-grid,
  .page-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .quote-object {
    margin: 6px auto 0;
  }

  .side-quote {
    position: static;
  }

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

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

@media (max-width: 700px) {
  .topbar .shell {
    align-items: flex-start;
    flex-direction: column;
    padding: 9px 0;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .nav-menu {
    top: 110px;
    max-height: calc(100vh - 110px);
  }

  .brand {
    min-width: 0;
    grid-template-columns: 58px auto;
  }

  .brand-logo {
    width: 58px;
    height: 52px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.93rem;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-panel {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .quick-services,
  .trust-badges,
  .service-grid,
  .review-grid,
  .portfolio-grid,
  .check-list,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .portfolio-item.wide {
    grid-column: span 1;
  }

  .visual-quote {
    padding: 64px 0;
  }

  .quote-object {
    width: min(300px, 88vw);
    height: 235px;
  }

  .photo-carousel figure {
    flex-basis: 245px;
    height: 160px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head.spread,
  .cta-strip .shell,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .copy-block ul {
    columns: 1;
  }

  .sticky-actions {
    top: auto;
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: row;
    transform: none;
  }

.sticky-actions a {
    flex: 1;
  }
}

/* PaveKing final WordPress theme refinements */
.topbar,
.quick-services,
.proof-showcase,
.hero-checks {
  display: none !important;
}

.site-header {
  top: 0;
  background: rgba(250, 249, 244, 0.9);
}

.brand {
  grid-template-columns: 86px auto;
  min-width: 240px;
}

.brand-logo {
  width: 86px;
  height: 62px;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.22));
}

.visual-quote {
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 12%, rgba(146, 207, 245, 0.28), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(135deg, #f7fbff 0%, #edf6fb 46%, #f7f8f8 100%);
}

.visual-quote::before {
  background-image:
    linear-gradient(rgba(32, 68, 96, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 68, 96, 0.06) 1px, transparent 1px);
}

.glass-copy h2 {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 740px;
  color: #10151a;
  font-size: clamp(2.15rem, 5vw, 4.8rem);
  letter-spacing: 0;
}

.glass-copy h2 img {
  width: clamp(82px, 10vw, 140px);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 20px 28px rgba(15, 22, 31, 0.24));
}

.glass-copy p:not(.eyebrow) {
  color: rgba(31, 44, 55, 0.78);
}

.quote-worker {
  width: min(410px, 82vw);
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 34px 44px rgba(22, 42, 58, 0.24));
  justify-self: center;
  margin-top: -8px;
}

.quote-object {
  display: none;
}

.glass-quote {
  border-color: rgba(125, 189, 230, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(219, 242, 255, 0.25)),
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.82), transparent 30%);
  box-shadow:
    0 34px 90px rgba(46, 83, 108, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px) saturate(145%);
}

.photo-carousel {
  border-block: 0;
}

.photo-carousel-track {
  animation-duration: 125s;
}

.photo-carousel figure,
.service-card,
.portfolio-item {
  border: 1px solid rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(221, 242, 255, 0.36)),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.9), transparent 32%);
  box-shadow:
    0 28px 64px rgba(30, 48, 62, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.photo-carousel figure::before,
.service-card::before,
.portfolio-item::before,
.project-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 32%, rgba(110, 180, 225, 0.1));
}

.service-card-media img,
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item {
  padding: 8px;
}

.portfolio-item img {
  border-radius: 7px;
}

.portfolio-item span {
  display: none;
}

.project-showcase .section-head h2 a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
  text-decoration-color: rgba(201, 151, 43, 0.55);
}

.project-slider {
  border: 1px solid rgba(255, 255, 255, 0.76);
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(209, 232, 247, 0.38)),
    linear-gradient(145deg, #14212a, #26323b);
  box-shadow:
    0 34px 90px rgba(20, 31, 42, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.project-slide-stage {
  inset: 10px;
  overflow: hidden;
  border-radius: 8px;
}

.project-slide::after {
  background: linear-gradient(90deg, rgba(9, 15, 21, 0.42), transparent 44%);
}

.project-slide figcaption {
  left: 34px;
  top: 34px;
  bottom: auto;
  max-width: 170px;
}

.project-slide figcaption img {
  width: clamp(90px, 12vw, 170px);
  height: auto;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.28));
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(110px, 170px) 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(111, 177, 218, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(229, 245, 255, 0.42));
  box-shadow: 0 24px 60px rgba(31, 48, 62, 0.1);
}

.service-intro > img {
  width: 100%;
  max-width: 170px;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.18));
}

.copy-block p,
.blog-article p {
  font-size: 1.26rem;
}

.copy-block em,
.blog-article em {
  color: #9c6c12;
  font-style: italic;
  font-weight: 850;
}

.copy-block strong,
.blog-article strong {
  color: #15171a;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  display: grid;
  gap: 14px;
  padding: 12px 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(226, 244, 255, 0.52));
  box-shadow: 0 28px 60px rgba(28, 45, 58, 0.14);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 7px;
}

.blog-card span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.blog-card p {
  color: #52606a;
}

.blog-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
}

.blog-article article {
  display: grid;
  gap: 28px;
}

.blog-article section {
  display: grid;
  gap: 12px;
}

.blog-cta {
  padding: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #151d24, #263746);
  color: #fff;
}

.blog-cta p {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1020px) {
  .visual-quote-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .blog-article {
    grid-template-columns: 1fr 1fr;
  }

  .blog-article .side-quote {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: sticky;
  }

  .nav-menu {
    top: 72px;
    max-height: calc(100vh - 72px);
  }

  .brand {
    grid-template-columns: 62px auto;
  }

  .brand-logo {
    width: 62px;
    height: 48px;
  }

  .hero,
  .hero-content {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 72px;
  }

  .visual-quote {
    padding: 54px 0;
  }

  .glass-copy h2 {
    display: grid;
    gap: 12px;
    font-size: clamp(2rem, 12vw, 3.25rem);
  }

  .glass-copy h2 img {
    width: 96px;
  }

  .quote-worker {
    width: min(300px, 78vw);
    max-height: 390px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .photo-carousel figure {
    flex-basis: 285px;
    height: 190px;
  }

  .service-grid,
  .blog-grid,
  .blog-article,
  .service-intro {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    grid-template-rows: auto auto;
  }

  .service-card-media {
    min-height: 220px;
  }

  .project-slider {
    min-height: 390px;
  }

  .project-slide figcaption {
    left: 20px;
    top: 20px;
  }

  .project-slide figcaption img {
    width: 92px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item {
    aspect-ratio: 4 / 3;
  }

  .copy-block p,
  .blog-article p {
    font-size: 1.12rem;
  }
}

/* PaveKing 2026 editorial build, inspired by premium construction case-study layouts. */
:root {
  --pk-orange: #ff5a1f;
  --pk-cream: #f4f1ea;
  --pk-night: #101214;
  --pk-graphite: #22262a;
}

body {
  background: var(--pk-cream);
}

.site-header {
  background: rgba(244, 241, 234, 0.92);
  border-bottom: 1px solid rgba(20, 22, 24, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.hero {
  min-height: calc(100vh - 78px);
}

.hero-content {
  min-height: calc(100vh - 78px);
  padding-top: 106px;
  padding-bottom: 92px;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 7, 8, 0.54) 0%, rgba(6, 7, 8, 0.42) 36%, rgba(6, 7, 8, 0.1) 100%),
    linear-gradient(180deg, rgba(6, 7, 8, 0.08), rgba(6, 7, 8, 0.5));
}

.hero-title-accent {
  background: linear-gradient(90deg, #fff 0%, #fff 52%, #ff7b33 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-title-line {
  color: #fff;
}

.hero-lede {
  max-width: 720px;
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
}

.hero-panel {
  display: none;
}

.btn,
.header-cta,
.nav-link,
.service-card,
.project-slider,
.portfolio-item,
.page-hero,
.feature-photo img,
.side-quote,
.blog-card,
.quote-form,
input,
select,
textarea {
  border-radius: 0;
}

.btn.primary,
.header-cta {
  background: var(--pk-orange);
  border-color: rgba(255, 90, 31, 0.7);
  box-shadow: 0 18px 42px rgba(255, 90, 31, 0.26);
}

.section {
  padding: clamp(72px, 9vw, 132px) 0;
}

.section-head h2,
.split h2,
.page-hero h1,
.copy-block h2 {
  font-weight: 950;
  text-transform: none;
}

.intro-contractors {
  align-items: stretch;
}

.intro-contractors > div {
  align-self: center;
}

.feature-photo {
  position: relative;
}

.feature-photo::before,
.service-card::before,
.blog-card::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  z-index: -1;
  border: 1px solid rgba(255, 90, 31, 0.24);
  pointer-events: none;
}

.feature-photo img {
  min-height: 100%;
  box-shadow: 0 34px 80px rgba(20, 20, 20, 0.2);
}

.service-band {
  background:
    linear-gradient(180deg, rgba(248, 247, 243, 0.99), rgba(238, 244, 248, 0.94)),
    radial-gradient(circle at 78% 8%, rgba(255, 90, 31, 0.11), transparent 34%),
    radial-gradient(circle at 8% 40%, rgba(130, 190, 225, 0.16), transparent 38%);
}

.service-grid {
  gap: 28px;
}

.service-card {
  min-height: 480px;
  grid-template-rows: minmax(230px, 1fr) auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 90, 31, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 248, 252, 0.9)),
    radial-gradient(circle at 18% 0%, rgba(255, 90, 31, 0.12), transparent 42%);
  box-shadow:
    0 34px 80px rgba(17, 31, 45, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transform-style: preserve-3d;
}

.service-card:hover {
  transform: translateY(-10px) perspective(900px) rotateX(1.2deg);
  border-color: rgba(255, 90, 31, 0.52);
  box-shadow:
    0 42px 90px rgba(17, 31, 45, 0.2),
    0 0 0 1px rgba(255, 90, 31, 0.14);
}

.service-card-media {
  margin: 12px 12px 0;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(218, 237, 248, 0.42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service-card-media img {
  border-radius: 0;
}

.service-card-content {
  min-height: 240px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(242, 249, 252, 0.94)),
    linear-gradient(90deg, rgba(255, 90, 31, 0.08), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.72);
}

.service-card small {
  border-radius: 0;
  color: var(--pk-orange);
  background: transparent;
  border-color: rgba(255, 90, 31, 0.42);
}

.service-card span:last-child,
.text-link {
  color: var(--pk-orange);
}

.project-showcase {
  background: #151719;
  color: #fff;
  width: 100%;
  max-width: none;
  position: relative;
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
}

.project-showcase .text-link {
  display: none;
  color: rgba(255, 255, 255, 0.78);
}

.project-showcase .section-head h2 a {
  color: var(--pk-orange);
}

.project-showcase-logo {
  display: none;
  width: clamp(110px, 14vw, 180px);
  margin: 0 auto 22px;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.34));
}

.project-slider {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0d0f11;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.page-hero {
  min-height: 520px;
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(9, 10, 11, 0.84) 0%, rgba(9, 10, 11, 0.52) 44%, rgba(9, 10, 11, 0.24) 100%),
    linear-gradient(180deg, transparent, rgba(9, 10, 11, 0.54));
}

.page-hero .shell {
  padding: 120px 0 86px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.4rem, 9vw, 7.6rem);
}

.page-float-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.page-float-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 90, 31, 0.36);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 90, 31, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card,
.service-intro,
.faq details,
.contact-item {
  border-radius: 0;
  border-color: rgba(16, 18, 20, 0.14);
  background: #fff;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.08);
}

.copy-block p,
.blog-article p,
.copy-block li {
  color: #424242;
}

.visual-quote {
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: clamp(70px, 8vw, 126px) 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.58)),
    url("assets/paveking/modern-patio-water-feature-bg.png") center / cover no-repeat;
}

.visual-quote::before {
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: none;
}

.quote-widget-shell {
  position: relative;
  z-index: 1;
}

.quote-wizard.glass-quote {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 0;
  width: min(900px, 100%);
  min-height: 460px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 20, 20, 0.74), rgba(15, 17, 20, 0.88)),
    radial-gradient(circle at 18% 6%, rgba(255, 255, 255, 0.18), transparent 22%);
  box-shadow:
    0 48px 120px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px) saturate(130%);
}

.quote-sidebar {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 24px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.quote-brand img {
  width: 44px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
}

.quote-brand strong,
.quote-brand small {
  display: block;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.08em;
}

.quote-brand strong {
  font-size: 0.95rem;
}

.quote-brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.58rem;
}

.quote-sidebar h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  color: #fff;
  letter-spacing: 0.03em;
}

.quote-sidebar h2 span {
  color: var(--pk-orange);
}

.quote-sidebar p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.wizard-steps-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wizard-steps-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.02rem;
}

.wizard-steps-list li::before {
  content: "";
  width: 2px;
  height: 32px;
  background: rgba(255, 255, 255, 0.16);
  order: 2;
}

.wizard-steps-list li span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: inherit;
  font-size: 0.8rem;
  font-weight: 850;
}

.wizard-steps-list li.active {
  color: var(--pk-orange);
}

.wizard-steps-list li.active span {
  border-color: var(--pk-orange);
  color: var(--pk-orange);
}

.secure-note {
  position: relative;
  padding-left: 54px;
  color: #fff;
}

.secure-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 42px;
  border: 3px solid rgba(255, 255, 255, 0.48);
  clip-path: polygon(50% 0, 94% 18%, 82% 78%, 50% 100%, 18% 78%, 6% 18%);
}

.secure-note span,
.secure-note small {
  display: block;
}

.secure-note span {
  font-weight: 850;
}

.secure-note small {
  color: rgba(255, 255, 255, 0.68);
}

.quote-main {
  position: relative;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 58px 42px 44px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 32%);
}

.quote-close {
  position: absolute;
  top: 26px;
  right: 28px;
  width: 38px;
  height: 38px;
  border: 0;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.wizard-mobile-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.wizard-mobile-status span {
  color: var(--pk-orange);
  font-weight: 800;
}

.wizard-mobile-status strong {
  font-weight: 500;
}

.quote-wizard .wizard-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.14);
}

.quote-wizard .wizard-progress span {
  background: var(--pk-orange);
}

.quote-wizard .wizard-step legend {
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 500;
}

.quote-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-choice-grid button {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.quote-choice-grid button span {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
}

.quote-choice-grid button small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.quote-choice-grid button:hover,
.quote-choice-grid button:focus-visible,
.quote-choice-grid button.selected {
  color: #fff;
  border-color: var(--pk-orange);
  background: rgba(255, 90, 31, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 90, 31, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.quote-wizard label {
  color: rgba(255, 255, 255, 0.78);
}

.quote-wizard input,
.quote-wizard textarea {
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.quote-wizard .project-details-label textarea {
  min-height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.quote-wizard input::placeholder,
.quote-wizard textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.quote-next {
  width: 100%;
  min-height: 64px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wizard-actions {
  justify-content: stretch;
}

.wizard-actions .btn.ghost.dark {
  flex: 0 0 120px;
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.wizard-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.wizard-bottom .wizard-progress {
  min-width: min(470px, 100%);
}

.quote-wizard .wizard-summary {
  min-height: 0;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-weight: 500;
}

.hero-title > span {
  opacity: 0;
  transform: translateX(-42px);
  clip-path: inset(0 100% 0 0);
  animation: title-reveal-left 1.05s cubic-bezier(0.2, 0.82, 0.2, 1) forwards;
}

.hero-title > span:nth-child(2) {
  animation-delay: 0.18s;
}

.hero-title-accent {
  color: #f7fbff;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.hero-word-orange {
  color: var(--pk-orange);
  -webkit-text-fill-color: var(--pk-orange);
}

.hero-title-orange {
  color: var(--pk-orange);
  text-shadow: 0 18px 46px rgba(255, 90, 31, 0.3), 0 24px 56px rgba(0, 0, 0, 0.48);
}

@keyframes title-reveal-left {
  to {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

.visual-quote {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.5)),
    url("assets/paveking/modern-patio-water-feature-bg.png") center / cover no-repeat;
}

.intro-contractors {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1fr);
}

.intro-worker-object {
  display: block;
  width: min(152px, 42vw);
  margin: 34px auto -20px 0;
  filter: drop-shadow(0 30px 38px rgba(22, 36, 48, 0.24));
}

.intro-contractors .feature-photo.collage-photo {
  align-self: center;
}

.intro-contractors .feature-photo.collage-photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #fff;
}

.brand-finale {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 140px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 90, 31, 0.18), transparent 34%),
    linear-gradient(135deg, #070808, #202020 58%, #090909);
}

.brand-finale-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
}

.brand-finale h2 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
}

.brand-finale p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.18rem;
}

.brand-finale img {
  width: 100%;
  background: transparent;
  filter: drop-shadow(0 44px 60px rgba(0, 0, 0, 0.5));
}

@media (max-width: 1020px) {
  .quote-wizard.glass-quote {
    grid-template-columns: 1fr;
  }

  .quote-sidebar {
    grid-template-rows: auto;
    gap: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .wizard-steps-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .wizard-steps-list li::before {
    display: none;
  }

  .quote-main {
    padding-top: 44px;
  }

  .brand-finale-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    padding-bottom: 56px;
  }

  .hero-title-accent,
  .hero-title-line {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .visual-quote {
    min-height: 0;
    padding: 16px 0;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.78)),
      url("assets/paveking/modern-patio-water-feature-bg.png") center / cover no-repeat;
  }

  .quote-widget-shell {
    width: min(100% - 18px, 390px);
  }

  .quote-wizard.glass-quote {
    max-height: calc(100svh - 16px);
    overflow: auto;
    min-height: auto;
    border-radius: 20px;
    background:
      linear-gradient(135deg, rgba(12, 13, 14, 0.88), rgba(14, 15, 16, 0.96)),
      radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.08), transparent 22%);
  }

  .quote-sidebar {
    gap: 10px;
    padding: 14px 14px 10px;
  }

  .quote-brand img {
    width: 38px;
    height: 30px;
  }

  .quote-brand strong {
    font-size: 0.82rem;
  }

  .quote-brand small {
    font-size: 0.5rem;
  }

  .quote-sidebar h2 {
    font-size: clamp(1.42rem, 7.2vw, 2rem);
  }

  .quote-sidebar p {
    margin-top: 6px;
    font-size: 0.78rem;
  }

  .wizard-steps-list {
    display: none;
  }

  .secure-note {
    display: none;
  }

  .quote-main {
    gap: 10px;
    padding: 10px 12px 12px;
  }

  .quote-close {
    top: 12px;
    right: 12px;
  }

  .quote-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .quote-choice-grid button {
    min-height: 62px;
    padding: 7px 6px;
  }

  .quote-choice-grid button span {
    font-size: 0.86rem;
  }

  .quote-choice-grid button small {
    font-size: 0.68rem;
  }

  .quote-wizard .wizard-step legend {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }

  .wizard-mobile-status {
    gap: 8px;
    font-size: 0.9rem;
  }

  .wizard-progress {
    margin: 6px 0 10px;
  }

  .wizard-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wizard-actions .btn.ghost.dark {
    width: 100%;
    min-height: 42px;
  }

  .quote-next {
    min-height: 48px;
  }

  .quote-wizard input,
  .quote-wizard textarea {
    min-height: 42px;
    padding: 9px 10px;
  }

  .quote-wizard .project-details-label textarea {
    min-height: 74px;
  }

  .wizard-bottom {
    display: none;
  }

  .brand-finale-grid {
    gap: 28px;
  }

  .brand-finale h2 {
    font-size: clamp(2.25rem, 12vw, 4.1rem);
  }

  .intro-contractors {
    grid-template-columns: 1fr;
  }

  .intro-worker-object {
    width: min(182px, 50vw);
    margin: 28px auto 0;
  }
}

@media (hover: none) {
  .service-card:hover,
  .blog-card:hover {
    transform: none;
  }

  .service-card:hover img,
  .blog-card:hover img {
    transform: none;
  }
}
