:root {
  --bg: #f3efe7;
  --surface: #ffffff;
  --surface-2: #f7f3ec;
  --ink: #1b2430;
  --ink-soft: #556070;
  --ink-muted: #6e7785;
  --line: #d7cfbf;
  --line-strong: #b49c6c;
  --accent: #c89f5d;
  --accent-strong: #a77d3d;
  --accent-soft: rgba(200, 159, 93, 0.15);
  --navy: #101924;
  --navy-2: #162230;
  --success: #2f7a57;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 60px rgba(16, 25, 36, 0.12);
  --shadow-soft: 0 14px 34px rgba(16, 25, 36, 0.08);
  --container: min(1180px, calc(100% - 40px));
  --section-space: clamp(72px, 8vw, 112px);
  --sample-image-a: url("../images/sample-image.png");
  --sample-image-b: url("../images/sample-image-1.png");
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(200, 159, 93, 0.18), transparent 22%),
    linear-gradient(180deg, #faf7f1 0%, #f3efe7 100%);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-tight {
  padding: 36px 0;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(200, 159, 93, 0.08), transparent 40%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #f7f4ee;
}

.section-cream {
  background: rgba(255, 255, 255, 0.58);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head h1,
.section-head h2,
.section-head h3,
.hero-copy h1,
.hero-full-content h1,
.page-hero-copy h1 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-head h2,
.split-copy h2,
.service-copy h2,
.page-hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  color: #fff;
}

.hero-full-content h1 {
  font-size: clamp(3rem, 7.2vw, 5.8rem);
  color: #fff;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.section-head p,
.hero-copy p,
.lead,
.page-hero-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-dark .section-head p,
.section-dark .muted,
.section-dark .process-step p,
.section-dark .feature-card p,
.section-dark .testimonial-card small {
  color: rgba(247, 244, 238, 0.78);
}

.lead {
  font-size: 1.14rem;
}

.muted {
  color: var(--ink-muted);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(180, 156, 108, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ddb775 0%, #b9853b 100%);
  border-color: rgba(128, 88, 31, 0.2);
  color: #101924;
  box-shadow: 0 18px 34px rgba(185, 133, 59, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-outline {
  border-color: rgba(167, 125, 61, 0.28);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(180, 156, 108, 0.16);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 40px rgba(16, 25, 36, 0.1);
  background: rgba(250, 247, 241, 0.96);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.brand-mark {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.brand-note {
  color: var(--ink-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.25s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(16, 25, 36, 0.12);
  background: #fff;
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 130px) 0 34px;
  background:
    linear-gradient(110deg, rgba(9, 18, 28, 0.86), rgba(9, 18, 28, 0.62)),
    linear-gradient(135deg, rgba(200, 159, 93, 0.16), transparent 38%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 20%),
    linear-gradient(160deg, #2d353b 0%, #121a25 100%);
}

.hero-home .hero-visual {
  min-height: 420px;
}

.hero-full {
  padding: 0;
  min-height: min(86vh, 820px);
  display: grid;
  align-items: stretch;
}

.hero-full-nav {
  position: absolute;
  inset: auto 0 28px 0;
  z-index: 8;
  pointer-events: none;
}

.hero-full-nav-shell {
  display: flex;
  justify-content: center;
}

.hero-full-dots {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 18, 28, 0.26);
  backdrop-filter: blur(10px);
}

.hero-full-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.18);
  padding: 0;
  font-size: 0;
  cursor: pointer;
}

.hero-full-dot.is-active {
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.62);
}

.hero-full-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero-full-track {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1400px;
  transform-style: preserve-3d;
  --rx: 0;
  --ry: 0;
}

.hero-full-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: clamp(92px, 10vw, 132px) 0 clamp(76px, 8vw, 112px);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  filter: blur(1px) saturate(0.96);
  transform:
    translateZ(-160px)
    rotateY(28deg)
    rotateX(calc(var(--rx) * 0.6deg))
    rotateY(calc(var(--ry) * 0.6deg));
  transition:
    transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 820ms ease,
    filter 820ms ease;
}

.hero-full-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  filter: none;
  transform:
    translateZ(0)
    rotateX(calc(var(--rx) * 1deg))
    rotateY(calc(var(--ry) * 1deg));
}

.hero-full-slide.is-prev {
  opacity: 0.18;
  z-index: 1;
  filter: blur(1px);
  transform:
    translateX(-16%)
    translateZ(-260px)
    rotateY(50deg)
    rotateX(calc(var(--rx) * 0.4deg))
    rotateY(calc(var(--ry) * 0.4deg));
}

.hero-full-slide.is-next {
  opacity: 0.18;
  z-index: 1;
  filter: blur(1px);
  transform:
    translateX(16%)
    translateZ(-260px)
    rotateY(-50deg)
    rotateX(calc(var(--rx) * 0.4deg))
    rotateY(calc(var(--ry) * 0.4deg));
}

.hero-full-slide.is-prev .hero-full-content,
.hero-full-slide.is-next .hero-full-content {
  opacity: 0;
  transform: translateZ(40px);
}

.hero-full-bg {
  position: absolute;
  inset: 0;
  border-radius: 0;
  opacity: 0.9;
  pointer-events: none;
}

.hero-full-slide-one .hero-full-bg {
  background:
    linear-gradient(110deg, rgba(9, 18, 28, 0.92), rgba(9, 18, 28, 0.62)),
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.18), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(200, 159, 93, 0.28), transparent 42%),
    linear-gradient(160deg, #2d353b 0%, #121a25 100%);
}

.hero-full-slide-two .hero-full-bg {
  background:
    linear-gradient(110deg, rgba(9, 18, 28, 0.9), rgba(9, 18, 28, 0.6)),
    radial-gradient(circle at 18% 18%, rgba(200, 159, 93, 0.22), transparent 46%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.14), transparent 48%),
    linear-gradient(160deg, #2a333a 0%, #111a24 100%);
}

.hero-full-slide-three .hero-full-bg {
  background:
    linear-gradient(110deg, rgba(9, 18, 28, 0.9), rgba(9, 18, 28, 0.62)),
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.12), transparent 44%),
    radial-gradient(circle at 88% 16%, rgba(200, 159, 93, 0.26), transparent 48%),
    linear-gradient(160deg, #2a343c 0%, #101823 100%);
}

.hero-full-content {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1180px);
  display: grid;
  gap: 18px;
  max-width: 820px;
  opacity: 1;
  transform: translateZ(80px);
  transition: opacity 480ms ease, transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-full-content .hero-subtitle {
  max-width: 58ch;
}

.hero-full-content .hero-lead {
  max-width: 66ch;
}

.hero-full-cta {
  margin-top: 4px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  width: fit-content;
}

.hero-full-content .hero-accordion {
  max-width: 760px;
}

.hero-full-scroll {
  max-height: 220px;
  overflow: auto;
  padding-right: 10px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 18, 28, 0.22);
  padding: 18px;
}

.hero-full-scroll p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.03rem;
}

.hero-full-scroll p + p {
  margin-top: 12px;
}

.hero-full-card {
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 18, 28, 0.22);
}

.hero-full-card .hero-expertise-title {
  margin: 0 0 12px;
}

.hero-full-card .hero-expertise-list li {
  color: rgba(255, 255, 255, 0.92);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -240px -160px auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(200, 159, 93, 0.38), transparent 60%);
  filter: blur(0.2px);
  opacity: 0.9;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -260px -220px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.12), transparent 58%);
  pointer-events: none;
}

.hero-visual-panel::before,
.page-hero-visual::before,
.image-panel::before,
.project-image::before,
.service-visual::before,
.mini-visual::before {
  content: attr(data-label);
  position: absolute;
  inset: auto 22px 22px 22px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(16, 25, 36, 0.36);
}

.hero-grid,
.split-layout,
.service-layout,
.contact-layout,
.page-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 680px;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-subtitle {
  margin: 0;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
  letter-spacing: 0.01em;
  font-size: 1.18rem;
}

.hero-lead {
  max-width: 62ch;
}

.hero-carousel {
  display: grid;
  gap: 14px;
}

.hero-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.hero-carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 18, 28, 0.22);
}

.hero-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.18);
  padding: 0;
  font-size: 0;
  cursor: pointer;
}

.hero-carousel-dot.is-active {
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.62);
}

.hero-carousel-viewport {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 18, 28, 0.22);
  overflow: hidden;
  height: clamp(230px, 22vw, 300px);
  position: relative;
  transform-style: preserve-3d;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
  transform-style: preserve-3d;
  --rx: 0;
  --ry: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  filter: blur(1.2px);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform:
    translateZ(-160px)
    rotateY(30deg)
    rotateX(calc(var(--rx) * 0.6deg))
    rotateY(calc(var(--ry) * 0.6deg));
  transition:
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 720ms ease,
    filter 720ms ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.12), transparent 52%),
    linear-gradient(160deg, rgba(200, 159, 93, 0.12), rgba(9, 18, 28, 0.18));
  opacity: 0.9;
  pointer-events: none;
}

.hero-slide > * {
  position: relative;
}

.hero-slide-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  filter: none;
  transform:
    translateZ(0)
    rotateX(calc(var(--rx) * 1deg))
    rotateY(calc(var(--ry) * 1deg));
}

.hero-slide.is-prev {
  opacity: 0.28;
  filter: blur(0.6px);
  transform:
    translateX(-18%)
    translateZ(-220px)
    rotateY(52deg)
    rotateX(calc(var(--rx) * 0.4deg))
    rotateY(calc(var(--ry) * 0.4deg));
}

.hero-slide.is-next {
  opacity: 0.28;
  filter: blur(0.6px);
  transform:
    translateX(18%)
    translateZ(-220px)
    rotateY(-52deg)
    rotateX(calc(var(--rx) * 0.4deg))
    rotateY(calc(var(--ry) * 0.4deg));
}

.hero-slide .button-row {
  margin-top: 0;
}

.hero-scroll {
  max-height: 240px;
  overflow: auto;
  padding-right: 6px;
}

.hero-scroll p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.hero-scroll p + p {
  margin-top: 12px;
}

.hero-scroll::-webkit-scrollbar {
  width: 10px;
}

.hero-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 3px solid rgba(9, 18, 28, 0.22);
  background: rgba(255, 255, 255, 0.22);
}

.hero-carousel .hero-expertise {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.hero-carousel .hero-expertise-title {
  margin: 0 0 10px;
}

.hero-carousel .hero-expertise-list li {
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.hero-actions {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.hero-actions .button-row {
  margin-top: 0;
}

.hero-accordion {
  display: grid;
  gap: 10px;
}

.hero-accordion-item {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 18, 28, 0.22);
  overflow: hidden;
}

.hero-accordion-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

.hero-accordion-item summary::after {
  content: "+";
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  flex: 0 0 auto;
}

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

.hero-accordion-body {
  padding: 0 16px 16px;
}

.hero-accordion-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.hero-expertise {
  margin-top: 2px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(200, 159, 93, 0.18);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(9, 18, 28, 0.18));
}

.hero-expertise-title {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero-expertise-list {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 24px;
}

.hero-expertise-list li {
  break-inside: avoid;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
  position: relative;
  padding-left: 18px;
}

.hero-expertise-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-expertise-more {
  margin-top: 10px;
}

.hero-expertise-more summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.76rem;
  cursor: pointer;
  user-select: none;
}

.hero-expertise-more summary::-webkit-details-marker {
  display: none;
}

.hero-expertise-more summary::after {
  content: "+";
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.hero-expertise-more[open] summary::after {
  content: "–";
}

.hero-expertise-list-more {
  margin-top: 14px;
}

.hero-cta-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

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

.hero-list li {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.hero-list li,
.check-list li,
.service-features li,
.areas-list li,
.contact-points li,
.faq-list summary,
.project-meta li {
  position: relative;
  padding-left: 18px;
}

.hero-list li::before,
.check-list li::before,
.service-features li::before,
.areas-list li::before,
.contact-points li::before,
.project-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-visual,
.page-hero-visual,
.image-panel,
.project-image,
.service-visual,
.mini-visual {
  position: relative;
  --visual-image: var(--sample-image-a);
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(160deg, rgba(9, 18, 28, 0.78), rgba(9, 18, 28, 0.52)),
    linear-gradient(135deg, rgba(200, 159, 93, 0.22), transparent 42%),
    var(--visual-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-visual,
.image-panel {
  --visual-image: var(--sample-image-b);
}

.service-layout:nth-child(even) .service-visual,
.process-visual {
  --visual-image: var(--sample-image-b);
}

.mini-card:nth-child(even) .mini-visual {
  --visual-image: var(--sample-image-b);
}

.hero .hero-visual {
  min-height: 460px;
}

.hero-visual-slides {
  display: grid;
  place-items: stretch;
  perspective: 1400px;
  transform-style: preserve-3d;
  --rx: 0;
  --ry: 0;
}

.hero-visual-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 520ms ease;
  transform-style: preserve-3d;
  transform:
    translateZ(-40px)
    rotateX(calc(var(--rx) * 0.7deg))
    rotateY(calc(var(--ry) * 0.7deg));
}

.hero-visual-panel.is-active {
  opacity: 1;
  transform:
    translateZ(0)
    rotateX(calc(var(--rx) * 0.9deg))
    rotateY(calc(var(--ry) * 0.9deg));
}

.hero-visual-panel-one {
  background:
    linear-gradient(160deg, rgba(200, 159, 93, 0.28), transparent 46%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.16), transparent 35%),
    linear-gradient(160deg, #4b545c 0%, #222c36 42%, #0f1823 100%);
}

.hero-visual-panel-two {
  background:
    linear-gradient(160deg, rgba(200, 159, 93, 0.18), transparent 44%),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(160deg, #465058 0%, #1f2832 42%, #0e1722 100%);
}

.hero-visual-panel-three {
  background:
    linear-gradient(160deg, rgba(200, 159, 93, 0.22), transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.1), transparent 58%),
    linear-gradient(160deg, #424c55 0%, #1d2630 42%, #0d1621 100%);
}

.hero-visual::after,
.page-hero-visual::after,
.service-visual::after,
.mini-visual::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.floating-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(310px, calc(100% - 48px));
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: #fff;
  transform:
    translateZ(70px)
    rotateX(calc(var(--rx) * 0.25deg))
    rotateY(calc(var(--ry) * 0.25deg));
  transform-style: preserve-3d;
}

.floating-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.floating-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.trust-bar {
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(180, 156, 108, 0.14);
  border-bottom: 1px solid rgba(180, 156, 108, 0.14);
}

.trust-items {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-item,
.stats-card,
.value-card,
.feature-card,
.service-card,
.project-card,
.testimonial-card,
.faq-item,
.contact-card,
.mini-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(180, 156, 108, 0.16);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.trust-item strong,
.stat strong {
  display: block;
  font-size: 1.05rem;
}

.split-copy,
.service-copy {
  max-width: 620px;
}

.split-copy p + p,
.service-copy p + p {
  margin-top: 14px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 800;
  color: var(--accent-strong);
}

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

.stats-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.stat-number {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  color: #fff;
}

.service-card {
  padding: 0;
  overflow: hidden;
}

.card-visual {
  position: relative;
  min-height: 220px;
  --card-image: var(--sample-image-a);
  background:
    linear-gradient(160deg, rgba(9, 18, 28, 0.75), rgba(9, 18, 28, 0.46)),
    linear-gradient(135deg, rgba(200, 159, 93, 0.24), transparent 46%),
    var(--card-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card:nth-child(even) .card-visual {
  --card-image: var(--sample-image-b);
}

.card-visual::after {
  content: attr(data-label);
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-content,
.project-card-content {
  padding: 24px;
}

.service-card h3,
.project-card h3,
.feature-card h3,
.testimonial-card h3,
.faq-item h3,
.mini-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.service-card p,
.project-card p,
.feature-card p,
.mini-card p {
  margin: 0;
  color: var(--ink-soft);
}

.before-after {
  display: grid;
  gap: 22px;
}

.comparison-shell {
  padding: 26px;
  background: rgba(255, 255, 255, 0.84);
}

.comparison {
  position: relative;
  min-height: 520px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(16, 25, 36, 0.12);
  background: #1e2631;
}

.comparison-side {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 30px;
  color: #fff;
  --comparison-image: var(--sample-image-a);
  background:
    linear-gradient(160deg, rgba(9, 18, 28, 0.72), rgba(9, 18, 28, 0.42)),
    linear-gradient(135deg, rgba(200, 159, 93, 0.22), transparent 52%),
    var(--comparison-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.comparison-side.after {
  --comparison-image: var(--sample-image-b);
  background:
    linear-gradient(160deg, rgba(9, 18, 28, 0.7), rgba(9, 18, 28, 0.4)),
    linear-gradient(135deg, rgba(200, 159, 93, 0.24), transparent 52%),
    var(--comparison-image);
  clip-path: inset(0 0 0 50%);
}

.comparison-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(16, 25, 36, 0.5);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-side.after .comparison-tag {
  left: auto;
  right: 24px;
}

.comparison-copy {
  max-width: 270px;
}

.comparison-copy h3,
.comparison-copy p {
  margin: 0;
}

.comparison-copy p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.comparison-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  cursor: ew-resize;
}

.comparison-slider::before {
  content: "< >";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(16, 25, 36, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.comparison-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.comparison-dots,
.testimonial-dots {
  display: flex;
  gap: 10px;
}

.comparison-dots button,
.testimonial-dots button,
.filter-group button {
  border: 0;
  background: none;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(16, 25, 36, 0.16);
  transition: background 0.25s ease, transform 0.25s ease;
}

.dot.is-active,
.filter-group button.is-active {
  background: var(--accent);
  transform: scale(1.08);
}

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

.project-card {
  overflow: hidden;
  padding: 0;
}

.project-image {
  min-height: 260px;
  --project-image: var(--sample-image-a);
  background:
    linear-gradient(160deg, rgba(9, 18, 28, 0.76), rgba(9, 18, 28, 0.46)),
    linear-gradient(135deg, rgba(200, 159, 93, 0.22), transparent 48%),
    var(--project-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.project-card:nth-child(even) .project-image {
  --project-image: var(--sample-image-b);
}

.project-tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-meta,
.check-list,
.service-features,
.areas-list,
.contact-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.project-meta li + li,
.check-list li + li,
.service-features li + li,
.areas-list li + li,
.contact-points li + li {
  margin-top: 10px;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 28px;
  align-items: start;
}

.process-visual {
  min-height: 100%;
}

.process-steps {
  display: grid;
  gap: 18px;
}

.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-number {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: rgba(200, 159, 93, 0.16);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}

.step-copy h3 {
  margin: 0 0 8px;
}

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

.section-dark .feature-card {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.feature-icon,
.value-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(200, 159, 93, 0.14);
  color: var(--accent);
  font-weight: 900;
}

.testimonial-wrap {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-card {
  min-width: 100%;
  background: rgba(255, 255, 255, 0.94);
}

.stars {
  color: var(--accent-strong);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}

.testimonial-card blockquote {
  margin: 18px 0;
  font-size: 1.16rem;
  line-height: 1.8;
}

.review-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.review-pill {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(180, 156, 108, 0.14);
  font-weight: 800;
}

.cta-banner {
  padding: 48px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  border-radius: 30px;
  background:
    linear-gradient(120deg, rgba(200, 159, 93, 0.22), transparent 42%),
    linear-gradient(140deg, #111a25 0%, #1e2b39 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-layout {
  align-items: stretch;
}

.contact-card {
  padding: 28px;
}

.contact-card h3 {
  margin: 0 0 16px;
  font-size: 1.34rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid rgba(180, 156, 108, 0.14);
  font-weight: 700;
}

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

.field,
.field-full {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.field label,
.field-full label {
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea,
.field-full input,
.field-full select,
.field-full textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(16, 25, 36, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.field textarea,
.field-full textarea {
  min-height: 160px;
  resize: vertical;
}

.map-card {
  min-height: 100%;
  overflow: hidden;
}

.map-panel {
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(200, 159, 93, 0.22), transparent 45%),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), transparent 0 2%),
    radial-gradient(circle at 65% 38%, rgba(255, 255, 255, 0.55), transparent 0 2%),
    radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.75), transparent 0 2%),
    linear-gradient(180deg, #d3d7dc 0%, #bac2cb 100%);
}

.map-panel::before {
  content: "New Jersey Service Area";
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(16, 25, 36, 0.8);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 10px rgba(200, 159, 93, 0.2);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 22px;
  font-weight: 800;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 20px;
  font-size: 1.5rem;
  color: var(--accent-strong);
}

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

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
}

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

.areas-list {
  columns: 2;
  column-gap: 24px;
  margin-top: 14px;
}

.areas-list li {
  break-inside: avoid;
  margin-bottom: 10px;
}

.site-footer {
  padding: 48px 0 24px;
  background: #0e1620;
  color: rgba(247, 244, 238, 0.82);
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr repeat(3, 0.7fr);
}

.footer-grid h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1rem;
}

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

.footer-links a,
.footer-links span {
  color: rgba(247, 244, 238, 0.76);
}

.footer-links a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
  transform: translateX(2px);
}

.footer-brand p,
.footer-note {
  color: rgba(247, 244, 238, 0.7);
}

.site-footer .social-row a {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-footer .social-row a:hover,
.site-footer .social-row a:focus-visible {
  background: rgba(200, 159, 93, 0.18);
  border-color: rgba(200, 159, 93, 0.32);
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.94rem;
}

.page-hero {
  padding: 90px 0 50px;
  background:
    linear-gradient(110deg, rgba(9, 18, 28, 0.88), rgba(9, 18, 28, 0.64)),
    linear-gradient(135deg, rgba(200, 159, 93, 0.18), transparent 38%),
    linear-gradient(160deg, #32404f 0%, #0f1823 100%);
  color: #fff;
}

.page-hero-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero-visual {
  min-height: 420px;
}

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

.value-card {
  padding: 28px;
}

.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 30px;
}

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

.filter-group button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(16, 25, 36, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 800;
}

.project-card.is-hidden {
  display: none;
}

.service-stack {
  display: grid;
  gap: 24px;
}

.service-layout:nth-child(even) .service-copy {
  order: 2;
}

.service-layout:nth-child(even) .service-visual {
  order: 1;
}

.service-visual,
.mini-visual {
  min-height: 420px;
}

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

.mini-card {
  padding: 0;
  overflow: hidden;
}

.mini-card .mini-content {
  padding: 22px;
}

.service-features {
  columns: 2;
  column-gap: 26px;
}

.service-features li {
  break-inside: avoid;
  margin-bottom: 10px;
}

.service-cta {
  margin-top: 22px;
}

.quote-banner {
  padding: 34px 36px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
}

.quote-banner blockquote {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.2;
}

.seo-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(200, 159, 93, 0.1);
  color: var(--ink-soft);
}

.success-message {
  display: none;
  margin-top: 18px;
  color: var(--success);
  font-weight: 800;
}

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

@media (max-width: 1080px) {
  .grid-4,
  .stats-grid,
  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .split-layout,
  .service-layout,
  .contact-layout,
  .page-hero-grid,
  .process-grid,
  .cta-banner,
  .areas-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .projects-grid,
  .mini-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-home .hero-visual {
    min-height: 340px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .nav-shell {
    position: relative;
  }

  .site-header.is-open .nav-links,
  .site-header.is-open .nav-actions .btn {
    display: flex;
  }

  .site-header.is-open .nav-links {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-radius: 24px;
    background: rgba(250, 247, 241, 0.98);
    box-shadow: var(--shadow);
    border: 1px solid rgba(180, 156, 108, 0.16);
  }

  .site-header.is-open .nav-actions {
    position: absolute;
    top: calc(100% + 332px);
    left: 24px;
  }

  .hero-list,
  .grid-3,
  .value-grid,
  .features-grid,
  .projects-grid,
  .mini-grid,
  .form-grid,
  .areas-shell,
  .trust-items,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .service-features,
  .areas-list {
    columns: 1;
  }

  .hero-expertise-list {
    columns: 1;
  }

  .hero-carousel-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-carousel-viewport {
    height: 340px;
  }

  .hero-carousel-track {
    perspective: none;
  }

  .hero-slide {
    transform: none;
    opacity: 0;
    filter: none;
  }

  .hero-slide.is-active {
    opacity: 1;
  }

  .hero-slide.is-prev,
  .hero-slide.is-next {
    opacity: 0;
  }

  .hero-visual-slides {
    perspective: none;
  }

  .hero-visual-panel {
    transform: none;
  }

  .floating-card {
    transform: none;
  }

  .hero-scroll {
    max-height: 260px;
  }

  .hero-home .hero-visual {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero,
  .page-hero {
    padding-top: 76px;
  }

  .hero-visual,
  .page-hero-visual,
  .comparison,
  .service-visual {
    min-height: 380px;
  }

  .hero-home .hero-visual {
    min-height: 260px;
  }

  .cta-banner,
  .comparison-shell,
  .contact-card,
  .quote-banner {
    padding: 24px;
  }

  .comparison-footer,
  .filter-row,
  .button-row,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-step {
    grid-template-columns: 1fr;
  }
}
