:root {
  --bg: #f4f5f2;
  --surface: #ffffff;
  --ink: #141414;
  --muted: #555555;
  --line: #e2e2dc;
  --dark: #111111;
  --accent: #c7a86d;
  --accent-deep: #a88b52;
  --accent-2: #b89352;
  --accent-2-soft: rgba(184, 147, 82, 0.14);
  --accent-glow: rgba(199, 168, 109, 0.22);
  --max: 1160px;
  --radius-lg: 20px;
  --radius-md: 16px;
}

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

html {
  scroll-behavior: auto;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 120;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.skip-link:focus-visible {
  left: 0.75rem;
}

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

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

a:hover {
  color: var(--accent-deep);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

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

.section {
  padding: 6.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #fbfbf8 0%, #f6f7f3 100%);
}

.section-tint {
  background: linear-gradient(135deg, rgba(109, 143, 126, 0.07) 0%, rgba(199, 168, 109, 0.06) 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 245, 242, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(199, 168, 109, 0.12);
}

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

.brand img {
  width: 140px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav > a,
.nav-item > .nav-parent {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2d2d2d;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.main-nav > a:hover,
.nav-item > .nav-parent:hover {
  color: #000000;
  background: rgba(109, 143, 126, 0.1);
}

.nav-item {
  position: relative;
}

.nav-item > .nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-item > .nav-parent::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #6d6d6d;
  margin-top: 2px;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 260px;
  padding: 0.45rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-submenu-group {
  padding: 0.35rem 0.35rem 0.4rem;
  border-radius: 11px;
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.nav-submenu-group:first-child {
  background: linear-gradient(180deg, rgba(199, 168, 109, 0.12), rgba(199, 168, 109, 0.02));
}

.nav-submenu-group:last-child {
  background: linear-gradient(180deg, rgba(109, 143, 126, 0.09), rgba(109, 143, 126, 0.02));
}

.nav-submenu-group + .nav-submenu-group {
  margin-top: 0.1rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(226, 226, 220, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.nav-submenu-group:hover {
  box-shadow: inset 0 0 0 1px rgba(199, 168, 109, 0.18);
}

.nav-submenu-label {
  display: block;
  padding: 0.2rem 0.75rem 0.25rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.nav-submenu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #333333;
}

.nav-submenu a:hover {
  background: var(--accent-2-soft);
  color: var(--ink);
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  position: relative;
}

.menu-toggle > summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: #2d2d2d;
}

.menu-toggle > summary::-webkit-details-marker {
  display: none;
}

.menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  width: min(92vw, 320px);
  padding: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
  display: grid;
  gap: 0.2rem;
}

.menu-panel a,
.menu-panel .menu-label {
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}

.menu-panel a:hover {
  background: var(--accent-2-soft);
}

.menu-panel a[aria-current="page"] {
  background: linear-gradient(135deg, rgba(199, 168, 109, 0.22), rgba(184, 147, 82, 0.18));
  border-color: rgba(199, 168, 109, 0.45);
  color: #111111;
  font-weight: 600;
}

.menu-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #888888;
  margin-top: 0.35rem;
}

.menu-label.menu-label--nav-group {
  margin-top: 0.6rem;
  margin-bottom: 0.05rem;
  color: var(--accent-2);
  letter-spacing: 0.14em;
}

.menu-label.menu-label--nav-group.menu-label--nav-group-follow {
  margin-top: 0.75rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 1rem;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-2);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

h1,
.section-title,
.about-copy h2,
.quote-copy h2,
.page-hero h1,
.split-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.65rem);
}

h1 .accent-line {
  display: block;
  margin-top: 0.35rem;
  font-weight: 400;
  color: #2e2e2e;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.45;
  letter-spacing: 0;
}

.lead {
  margin: 1.4rem 0 0;
  max-width: 62ch;
  font-size: 1.07rem;
  color: var(--muted);
  font-weight: 300;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 55%;
  background: radial-gradient(ellipse 80% 60% at 70% 0%, rgba(199, 168, 109, 0.16), transparent 70%),
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(109, 143, 126, 0.12), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 3rem;
  align-items: start;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.trust-strip {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #3a3a3a;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(199, 168, 109, 0.35);
  background: rgba(255, 255, 255, 0.65);
}

.trust-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.trust-points {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-weight: 400;
  color: #3d3d3d;
}

.trust-points li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  vertical-align: 0.05em;
}

.hero-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.hero-card h2 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.45rem;
}

.hero-card p {
  margin: 0.8rem 0 1.2rem;
  color: var(--muted);
}

.mini-list {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.mini-list span {
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #ececec;
  font-size: 0.95rem;
}

.mini-list span:last-child {
  border-bottom: 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  padding: 0.82rem 1.2rem;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: 0.2s ease;
}

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

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

.btn-dark:hover {
  background: #2b2b2b;
  color: #ffffff;
}

.btn-light {
  background: transparent;
  border-color: var(--line);
}

.btn-light:hover {
  border-color: var(--accent-2);
  color: var(--ink);
}

.btn-accent {
  background: linear-gradient(135deg, #c9ae74 0%, #a88b52 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-accent:hover {
  color: #ffffff;
  filter: brightness(1.05);
}

.btn-small {
  padding: 0.62rem 1rem;
  font-size: 0.84rem;
}

.btn-block {
  width: 100%;
}

.section-title {
  max-width: 31ch;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.section-intro {
  margin-top: 1rem;
  max-width: 62ch;
  color: var(--muted);
}

.cards {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: rgba(109, 143, 126, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.card h3 a:hover {
  color: var(--accent-2);
}

.card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.service-paths {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.path-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.path-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.path-panel h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.path-panel p {
  margin: 0.75rem 0 1.1rem;
  color: var(--muted);
}

.path-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.path-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  border: 1px solid var(--line);
  background: #fafaf8;
  transition: 0.15s ease;
}

.path-btn:hover {
  border-color: var(--accent);
  background: rgba(199, 168, 109, 0.12);
  color: var(--ink);
}

.reviews-section .section-title {
  max-width: none;
}

.reviews-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  border-bottom: 2px solid var(--accent);
}

.review-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #3a3a3a;
  flex: 1;
}

.review-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-2);
}

.review-card a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.8rem;
  align-items: center;
}

.about-hero-section {
  padding-top: 4.6rem;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
}

.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 10% -6% -6% 10%;
  border-radius: 22px;
  border: 1px solid rgba(199, 168, 109, 0.45);
  pointer-events: none;
  z-index: -1;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.1);
}

.about-copy h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.1rem;
}

.about-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.section-dark {
  background: linear-gradient(180deg, #161616 0%, #101010 100%);
  color: #f2f2f2;
}

.eyebrow-light {
  color: #b8c9bf;
}

.section-title-light {
  color: #ffffff;
}

.pillars {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pillars article {
  border: 1px solid #2f2f2f;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--accent);
}

.pillars h3 {
  font-size: 1.06rem;
}

.pillars p {
  margin: 0.65rem 0 0;
  color: #bfbfbf;
}

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

.split-copy h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.split-copy p,
.split-copy li {
  color: var(--muted);
}

.focus-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.focus-list li {
  margin-bottom: 0.45rem;
}

.steps {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), #4f6d5e);
  flex-shrink: 0;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

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

.quote-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.4rem;
  align-items: start;
}

.quote-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.quote-copy p {
  margin-top: 1rem;
  max-width: 52ch;
  color: var(--muted);
}

.quote-copy .eyebrow {
  margin-top: 0;
  color: var(--accent-2);
}

.quote-copy h3 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--ink);
}

.quote-copy .fine-print {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-note {
  margin: 0;
  font-size: 0.8rem;
  color: #777777;
}

.quote-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem;
  display: grid;
  gap: 0.68rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.quote-form label {
  font-size: 0.85rem;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d5d5d5;
  padding: 0.72rem 0.82rem;
  font: inherit;
  color: #1a1a1a;
  background: #ffffff;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--accent-glow);
  border-color: var(--accent);
}

.page-hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(120deg, rgba(109, 143, 126, 0.12) 0%, rgba(199, 168, 109, 0.1) 45%, transparent 85%),
    var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-hero.page-hero--residential-photo {
  padding: 5rem 0 4rem;
  background-color: #141210;
  background-image: linear-gradient(
      105deg,
      rgba(14, 12, 10, 0.9) 0%,
      rgba(14, 12, 10, 0.68) 48%,
      rgba(14, 12, 10, 0.42) 100%
    ),
    url("assets/website_images/Living-Room-1.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.page-hero.page-hero--residential-photo .breadcrumbs {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero.page-hero--residential-photo .breadcrumbs a {
  color: #e8c98a;
}

.page-hero.page-hero--residential-photo .breadcrumbs a:hover {
  color: #f5e6c8;
}

.page-hero.page-hero--residential-photo h1 {
  color: #ffffff;
}

.page-hero.page-hero--residential-photo .lead {
  color: rgba(245, 242, 236, 0.92);
}

.page-hero.page-hero--residential-photo .btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.page-hero.page-hero--residential-photo .btn-light:hover {
  border-color: var(--accent);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.page-hero.page-hero--commercial-lux {
  padding: 5.5rem 0 4.5rem;
  background-color: #0c0a08;
  background-image: radial-gradient(
      ellipse 95% 60% at 72% 12%,
      rgba(199, 168, 109, 0.28),
      transparent 58%
    ),
    linear-gradient(
      118deg,
      rgba(8, 6, 5, 0.94) 0%,
      rgba(22, 16, 12, 0.78) 44%,
      rgba(45, 32, 22, 0.35) 100%
    ),
    url("assets/website_images/Commercial_Cleaning_HB.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(199, 168, 109, 0.28);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.page-hero.page-hero--commercial-lux .breadcrumbs {
  color: rgba(255, 252, 245, 0.76);
}

.page-hero.page-hero--commercial-lux .breadcrumbs a {
  color: #e6c88a;
}

.page-hero.page-hero--commercial-lux .breadcrumbs a:hover {
  color: #fff4dd;
}

.page-hero.page-hero--commercial-lux h1 {
  color: #fffdf8;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(199, 168, 109, 0.12);
}

.page-hero.page-hero--commercial-lux .lead {
  color: rgba(248, 244, 236, 0.94);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.page-hero.page-hero--commercial-lux .btn-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 201, 138, 0.45);
  color: #fffdf8;
}

.page-hero.page-hero--commercial-lux .btn-light:hover {
  border-color: var(--accent);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.page-hero.page-hero--commercial-lux .inner-trust-strip .trust-chip {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(199, 168, 109, 0.45);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-hero.page-hero--post-construction-photo {
  padding: 5rem 0 4rem;
  background-color: #17120f;
  background-image: linear-gradient(
      108deg,
      rgba(13, 10, 8, 0.9) 0%,
      rgba(13, 10, 8, 0.66) 46%,
      rgba(13, 10, 8, 0.4) 100%
    ),
    url("assets/website_images/House-1.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.page-hero.page-hero--post-construction-photo .breadcrumbs {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero.page-hero--post-construction-photo .breadcrumbs a {
  color: #e8c98a;
}

.page-hero.page-hero--post-construction-photo .breadcrumbs a:hover {
  color: #f5e6c8;
}

.page-hero.page-hero--post-construction-photo h1 {
  color: #ffffff;
}

.page-hero.page-hero--post-construction-photo .lead {
  color: rgba(245, 242, 236, 0.92);
}

.page-hero.page-hero--post-construction-photo .btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.page-hero.page-hero--post-construction-photo .btn-light:hover {
  border-color: var(--accent);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.page-hero.page-hero--deep-cleaning-photo {
  padding: 5rem 0 4rem;
  background-color: #161310;
  background-image: linear-gradient(
      108deg,
      rgba(12, 10, 8, 0.9) 0%,
      rgba(12, 10, 8, 0.66) 46%,
      rgba(12, 10, 8, 0.4) 100%
    ),
    url("assets/website_images/Living-Room-2.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.page-hero.page-hero--deep-cleaning-photo .breadcrumbs {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero.page-hero--deep-cleaning-photo .breadcrumbs a {
  color: #e8c98a;
}

.page-hero.page-hero--deep-cleaning-photo .breadcrumbs a:hover {
  color: #f5e6c8;
}

.page-hero.page-hero--deep-cleaning-photo h1 {
  color: #ffffff;
}

.page-hero.page-hero--deep-cleaning-photo .lead {
  color: rgba(245, 242, 236, 0.92);
}

.page-hero.page-hero--deep-cleaning-photo .btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.page-hero.page-hero--deep-cleaning-photo .btn-light:hover {
  border-color: var(--accent);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.page-hero.page-hero--faq-lux {
  position: relative;
  padding: 5rem 0 4rem;
  background-color: #0d0b09;
  background-image: radial-gradient(
      ellipse 86% 62% at 72% 12%,
      rgba(199, 168, 109, 0.22),
      transparent 60%
    ),
    linear-gradient(
      118deg,
      rgba(7, 6, 5, 0.95) 0%,
      rgba(19, 14, 10, 0.82) 46%,
      rgba(34, 25, 17, 0.62) 100%
    );
  border-bottom: 0;
}

.page-hero.page-hero--faq-lux::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9ae74 0%, #a88b52 50%, #c9ae74 100%);
}

.page-hero.page-hero--faq-lux .breadcrumbs {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero.page-hero--faq-lux .breadcrumbs a {
  color: #e8c98a;
}

.page-hero.page-hero--faq-lux .breadcrumbs a:hover {
  color: #f5e6c8;
}

.page-hero.page-hero--faq-lux h1 {
  color: #ffffff;
}

.page-hero.page-hero--faq-lux .lead {
  color: rgba(245, 242, 236, 0.9);
}

.page-hero.page-hero--contact-lux {
  position: relative;
  padding: 5rem 0 4rem;
  background-color: #0d0b09;
  background-image: radial-gradient(
      ellipse 86% 62% at 72% 12%,
      rgba(199, 168, 109, 0.22),
      transparent 60%
    ),
    linear-gradient(
      118deg,
      rgba(7, 6, 5, 0.95) 0%,
      rgba(19, 14, 10, 0.82) 46%,
      rgba(34, 25, 17, 0.62) 100%
    );
  border-bottom: 0;
}

.page-hero.page-hero--contact-lux::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9ae74 0%, #a88b52 50%, #c9ae74 100%);
}

.page-hero.page-hero--contact-lux .breadcrumbs {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero.page-hero--contact-lux .breadcrumbs a {
  color: #e8c98a;
}

.page-hero.page-hero--contact-lux .breadcrumbs a:hover {
  color: #f5e6c8;
}

.page-hero.page-hero--contact-lux h1 {
  color: #ffffff;
}

.page-hero.page-hero--contact-lux .lead {
  color: rgba(245, 242, 236, 0.9);
}

.page-hero.page-hero--contractors-photo {
  padding: 6.4rem 0 5.4rem;
  min-height: min(78vh, 760px);
  display: flex;
  align-items: center;
  background-color: #11100e;
  background-image: linear-gradient(
      110deg,
      rgba(12, 10, 8, 0.9) 0%,
      rgba(12, 10, 8, 0.62) 46%,
      rgba(12, 10, 8, 0.38) 100%
    ),
    url("assets/website_images/CC-Contractors.png");
  background-size: cover;
  background-position: center top;
  border-bottom: 1px solid rgba(199, 168, 109, 0.22);
}

.page-hero.page-hero--contractors-photo .eyebrow {
  color: #e8c98a;
}

.page-hero.page-hero--contractors-photo h1 {
  color: #ffffff;
}

.page-hero.page-hero--contractors-photo .lead {
  color: rgba(245, 242, 236, 0.92);
}

.page-hero.page-hero--contractors-photo .inner-trust-strip .trust-chip {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(199, 168, 109, 0.45);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 28ch;
}

.page-hero .lead {
  margin-top: 1rem;
  max-width: 52ch;
}

.page-hero .lead + .lead {
  margin-top: 0.75rem;
}

.breadcrumbs {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777777;
}

.breadcrumbs a {
  color: var(--accent-2);
}

.breadcrumbs a:hover {
  color: var(--accent-deep);
}

.prose {
  max-width: 72ch;
}

.prose p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.prose h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 2.25rem 0 0.75rem;
  color: var(--ink);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.prose li {
  margin-bottom: 0.4rem;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.icon-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
}

.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.cta-band {
  margin-top: 3rem;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a28 100%);
  color: #eeeeee;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border: 1px solid #333333;
}

.cta-band h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  margin: 0;
  color: #fff;
}

.cta-band p {
  margin: 0.35rem 0 0;
  color: #c8c8c8;
  max-width: 48ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cta-band .btn-on-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: #555555;
}

.cta-band .btn-on-dark:hover {
  border-color: var(--accent);
  color: #ffffff;
}

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.65rem;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.25rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 0;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--accent-2);
}

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

.faq-list details p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-after-cta {
  margin-top: 3rem;
}

.faq-inline {
  margin-top: 2rem;
}

.faq-inline details {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
}

.faq-inline summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.faq-inline summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--accent-2);
}

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

.faq-inline details p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.inner-trust-strip {
  margin-top: 1.15rem;
}

.inner-trust-strip .trust-chip {
  background: rgba(255, 255, 255, 0.82);
}

.visual-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.visual-split.visual-split--align-center {
  align-items: center;
}

.visual-panel {
  min-height: 340px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(199, 168, 109, 0.4);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-panel.visual-panel--compact {
  min-height: 0;
  max-height: min(380px, 48vh);
  width: 100%;
  aspect-ratio: 4 / 3;
}

.visual-panel.visual-panel--compact img {
  object-position: center;
}

.visual-panel-glow {
  position: relative;
  border-radius: calc(var(--radius-lg) + 2px);
  isolation: isolate;
}

.visual-panel-glow::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -22px -18px -30px -18px;
  border-radius: 32px;
  background: radial-gradient(
    ellipse 88% 82% at 50% 44%,
    rgba(199, 168, 109, 0.72) 0%,
    rgba(199, 168, 109, 0.32) 38%,
    rgba(199, 168, 109, 0.1) 58%,
    transparent 76%
  );
  filter: blur(26px);
  opacity: 1;
  pointer-events: none;
}

.visual-panel-glow > .visual-panel {
  position: relative;
  z-index: 1;
  border-color: rgba(199, 168, 109, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 248, 235, 0.35) inset,
    0 0 0 1px rgba(199, 168, 109, 0.5),
    0 8px 32px rgba(199, 168, 109, 0.22),
    0 0 72px rgba(199, 168, 109, 0.28),
    0 26px 56px rgba(0, 0, 0, 0.09);
}

.visual-panel-glow.visual-panel-glow--subtle::before {
  inset: -14px -12px -20px -12px;
  border-radius: 28px;
  background: radial-gradient(
    ellipse 84% 78% at 50% 46%,
    rgba(199, 168, 109, 0.46) 0%,
    rgba(199, 168, 109, 0.19) 42%,
    transparent 74%
  );
  filter: blur(20px);
  opacity: 0.94;
}

.visual-panel-glow.visual-panel-glow--subtle > .visual-panel {
  border-color: rgba(199, 168, 109, 0.48);
  box-shadow:
    0 0 0 1px rgba(255, 248, 235, 0.28) inset,
    0 0 0 1px rgba(199, 168, 109, 0.42),
    0 8px 28px rgba(199, 168, 109, 0.18),
    0 20px 48px rgba(0, 0, 0, 0.08);
}

.fit-section .visual-panel.visual-panel--compact img {
  object-position: 50% 50%;
}

.fit-copy h2 {
  margin-bottom: 0.6rem;
}

.fit-copy .icon-list {
  margin-top: 0.8rem;
  gap: 0.65rem;
}

.fit-copy .btn {
  margin-top: 0.35rem;
}

.deep-fit-feature {
  background-color: #171411;
  background-image: linear-gradient(
      112deg,
      rgba(13, 10, 8, 0.82) 0%,
      rgba(13, 10, 8, 0.58) 45%,
      rgba(13, 10, 8, 0.72) 100%
    ),
    url("assets/website_images/Gym-1.jpg");
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(199, 168, 109, 0.22);
  border-bottom: 1px solid rgba(199, 168, 109, 0.22);
}

.deep-fit-feature .container {
  display: flex;
  justify-content: center;
}

.deep-fit-feature-card {
  position: relative;
  width: min(100%, 720px);
  padding: 2rem 2rem 1.8rem;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(20, 17, 14, 0.62), rgba(32, 26, 20, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.68) inset,
    0 0 0 1px rgba(199, 168, 109, 0.26),
    0 18px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.deep-fit-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.01) 42%, rgba(255, 255, 255, 0.08));
}

.deep-fit-feature-card > * {
  position: relative;
  z-index: 1;
}

.deep-fit-feature-card h2 {
  margin-bottom: 0.7rem;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.deep-fit-feature-card .icon-list {
  margin-top: 0.8rem;
  gap: 0.65rem;
}

.deep-fit-feature-card .icon-list li {
  color: rgba(247, 244, 237, 0.95);
}

.deep-fit-feature-card .icon-list li::before {
  background: linear-gradient(135deg, #e7cb97, #c7a86d);
  box-shadow: 0 0 0 1px rgba(14, 12, 10, 0.35);
}

.deep-fit-feature-card .btn {
  margin-top: 0.45rem;
}

.proof-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 14px;
  padding: 1rem;
}

.proof-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

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

.proof-card .proof-source {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: #7c7c7c;
  font-weight: 600;
}

.expectation-cards {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.75rem;
}

.expectation-card {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fcfcfa;
}

.expectation-card h3 {
  font-size: 0.96rem;
  margin-bottom: 0.3rem;
}

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

.faq-category {
  margin-top: 2rem;
}

.faq-category h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  margin-bottom: 0.8rem;
}

.quick-links-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.quick-link-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fdfcf8;
  padding: 0.85rem 0.95rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.quick-link-card:hover {
  border-color: var(--accent);
  background: #fff9ec;
}

.page-hero .hero-cta {
  margin-top: 1.5rem;
}

.steps-footer-cta {
  margin-top: 2rem;
}

.site-footer {
  position: relative;
  padding: 3.2rem 0;
  padding-top: calc(3.2rem + 3px);
  background: #0e0e0e;
  color: #d8d8d8;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.8rem;
}

.footer-logo {
  width: 130px;
  height: auto;
  margin-bottom: 0.8rem;
}

.site-footer h3 {
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}

.site-footer p {
  margin: 0.3rem 0;
  color: #c7c7c7;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 85;
  }

  .menu-toggle > summary {
    position: relative;
    z-index: 86;
  }

  .menu-panel {
    position: fixed;
    left: 0.6rem;
    right: 0.6rem;
    top: calc(env(safe-area-inset-top) + 4.55rem);
    width: auto;
    max-height: calc(100dvh - env(safe-area-inset-top) - 5rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 84;
    padding: 0.75rem 0.7rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
    gap: 0.08rem;
    animation: menuSheetIn 140ms ease-out;
  }

  .menu-panel a,
  .menu-panel .menu-label {
    border-radius: 10px;
  }

  .menu-panel a {
    display: block;
    padding: 0.68rem 0.82rem;
    font-size: 1rem;
    line-height: 1.25;
    border: 0;
    background: transparent;
  }

  .menu-panel a:hover {
    background: var(--accent-2-soft);
  }

  .menu-panel .menu-label {
    padding: 0.56rem 0.76rem 0.3rem;
    font-size: 0.71rem;
    letter-spacing: 0.14em;
  }

  .menu-label.menu-label--nav-group {
    margin-top: 0.45rem;
    color: var(--accent-2);
  }

  .menu-label.menu-label--nav-group.menu-label--nav-group-follow {
    margin-top: 0.6rem;
    padding-top: 0.58rem;
    border-top: 1px solid var(--line);
  }

  .hero-grid,
  .about-grid,
  .quote-wrap,
  .split-grid,
  .service-paths {
    grid-template-columns: 1fr;
  }

  .pillars,
  .cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .visual-split,
  .proof-grid,
  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .page-hero.page-hero--contractors-photo {
    background-image: linear-gradient(
        110deg,
        rgba(12, 10, 8, 0.9) 0%,
        rgba(12, 10, 8, 0.62) 46%,
        rgba(12, 10, 8, 0.38) 100%
      ),
      url("assets/website_images/CC-Contractors-Mobile.png");
    background-position: center top;
  }

  .visual-panel {
    min-height: 280px;
  }

  .visual-panel.visual-panel--compact {
    min-height: 0;
    max-height: min(320px, 42vh);
  }

  .section {
    padding: 5rem 0;
  }
}

@keyframes menuSheetIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 981px) {
  .menu-toggle {
    display: none !important;
  }
}

/* Homepage redesign overrides */
.home-redesign .hero {
  padding-top: 4.5rem;
}

.home-redesign .hero::before {
  inset: -15% -10% auto;
  height: 60%;
  background: radial-gradient(ellipse 90% 65% at 65% 0%, rgba(199, 168, 109, 0.18), transparent 72%),
    radial-gradient(ellipse 70% 55% at 8% 25%, rgba(199, 168, 109, 0.08), transparent 72%);
}

.hero-minimal {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 4rem;
  align-items: center;
}

.hero-minimal .hero-copy {
  max-width: 66ch;
}

.hero-media {
  display: grid;
  gap: 0.9rem;
}

.hero-minimal h1 {
  max-width: 60ch;
  margin: 0.9rem 0 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0;
  color: var(--muted);
}

.hero-minimal .lead {
  max-width: 60ch;
  font-size: 1.02rem;
}

.hero-quote {
  margin: 0;
  max-width: 18ch;
  padding: 0;
  border-left: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(199, 168, 109, 0.35);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-slot {
  position: relative;
  background: linear-gradient(140deg, rgba(199, 168, 109, 0.12) 0%, rgba(199, 168, 109, 0.03) 70%);
}

.hero-trust-strip {
  margin-top: 0;
  justify-content: flex-start;
}

.image-slot-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #6f5a33;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(199, 168, 109, 0.4);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
}

.trust-carousel-section {
  padding: 0 0 3.8rem;
}

.trust-carousel {
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 18px;
  padding: 1.4rem 1.35rem 1.2rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.04);
}

.trust-slide {
  display: none;
  min-height: 96px;
}

.trust-slide.is-active {
  display: block;
}

.trust-slide h3 {
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
}

.trust-slide p {
  margin: 0;
  color: var(--muted);
  max-width: 68ch;
}

.carousel-dots {
  margin-top: 1rem;
  display: flex;
  gap: 0.4rem;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #d4cfbf;
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.is-active {
  background: var(--accent-deep);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.reviews-carousel-wrap {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: 1.05rem;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(199, 168, 109, 0.5);
  background: #fffaf0;
  color: #5b4520;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.carousel-arrow:hover {
  background: #f3e4c7;
}

.reviews-viewport {
  overflow: hidden;
  transition: height 0.25s ease;
}

.reviews-track {
  display: flex;
  transition: transform 0.36s ease;
}

.review-slide {
  min-width: 100%;
}

.review-card {
  min-height: 240px;
}

.review-dots {
  justify-content: center;
}

.service-paths-home {
  margin-top: 1.4rem;
  align-items: stretch;
  grid-template-columns: 1.58fr 0.82fr;
  gap: 1.35rem;
}

.path-panel-primary {
  border-color: rgba(199, 168, 109, 0.45);
  box-shadow: 0 22px 55px rgba(199, 168, 109, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
}

.path-panel-primary h3 {
  font-size: 1.56rem;
}

.path-panel-secondary {
  background: #fdfbf6;
  border-color: rgba(199, 168, 109, 0.32);
}

.path-panel-primary .path-buttons {
  gap: 0.72rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.path-panel-primary .path-btn {
  background: linear-gradient(135deg, #d2b37d 0%, #b99252 100%);
  border-color: #b99252;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(199, 168, 109, 0.22);
  padding: 0.92rem 1.15rem;
  font-size: 0.95rem;
  min-height: 48px;
  justify-content: space-between;
  width: 100%;
}

.path-panel-primary .path-btn:hover {
  background: linear-gradient(135deg, #d8ba86 0%, #c29f62 100%);
  color: #ffffff;
  border-color: #c29f62;
}

.service-paths-section {
  position: relative;
  background: linear-gradient(180deg, rgba(199, 168, 109, 0.06), rgba(199, 168, 109, 0.02));
}

.service-paths-section > .container {
  position: relative;
}

.service-paths-section .eyebrow {
  margin-bottom: 0.7rem;
}

.service-paths-section .section-title {
  max-width: none;
  margin-bottom: 0;
}

.service-paths-section .title-accent {
  font-weight: 700;
  color: #b7904f;
  position: relative;
  display: inline-block;
  padding-inline: 0.08em;
}

.service-paths-section .title-accent::after {
  content: none;
}

.service-paths-section .service-paths-home {
  margin-top: 1.9rem;
}

.path-note {
  margin: 0.95rem 0 0;
  font-size: 0.86rem;
  color: #6f6a5a;
}

.path-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #8d6d3a;
  border: 1px solid rgba(199, 168, 109, 0.45);
  background: linear-gradient(135deg, #fffaf0, #f5e9d0);
}

.service-strip {
  background: #141414;
  color: #f0ebe1;
  border-top: 2px solid rgba(199, 168, 109, 0.8);
  border-bottom: 2px solid rgba(199, 168, 109, 0.6);
}

.service-strip .container {
  padding: 1.45rem 0;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
}

.service-strip p {
  margin: 0;
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.service-strip-heading {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.28rem, 2.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #f6d596;
  max-width: 28ch;
}

.service-strip a {
  color: #f3cc81;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-strip-btn {
  text-decoration: none !important;
  color: #f0ebe1 !important;
  border-color: rgba(243, 204, 129, 0.5) !important;
  background: rgba(255, 255, 255, 0.08);
}

.service-strip-btn:hover {
  border-color: #f3cc81 !important;
  background: rgba(243, 204, 129, 0.14);
  color: #ffffff !important;
}

.why-section {
  background: linear-gradient(180deg, #fffefb 0%, #f8f4eb 100%);
}

.why-section .section-intro {
  max-width: 72ch;
}

.why-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.why-image {
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(199, 168, 109, 0.35);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-focus-list {
  margin-top: 1rem;
  padding-left: 1.15rem;
}

.why-focus-list li {
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.how-section .section-title {
  max-width: 22ch;
}

.how-flow {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.how-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.how-kicker {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7e6230;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.how-item h3 {
  font-size: 1.02rem;
}

.how-item p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-minimal,
  .service-paths-home,
  .how-flow,
  .why-grid-layout {
    grid-template-columns: 1fr;
  }

  .path-panel-primary .path-buttons {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    aspect-ratio: 16 / 10;
  }

  .why-image {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .reviews-carousel .review-card {
    min-height: 180px;
  }
}

.review-trust-chips {
  margin-top: 1rem;
  justify-content: flex-start;
}

.reviews-carousel {
  margin-top: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: 0.75rem 0.85rem;
  max-width: 900px;
  margin-inline: auto;
}

.reviews-carousel .review-card {
  border: 0;
  box-shadow: none;
  padding: 0.25rem 0.3rem;
  min-height: 220px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0.65rem;
}

.reviews-carousel .review-body {
  align-self: center;
}

.reviews-carousel .review-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 0 0 auto;
  margin: 0;
}

.reviews-carousel .review-meta {
  margin: 0 0 0.25rem;
  display: block;
}

.reviews-carousel .review-text {
  margin: 0;
}

.reviews-carousel .review-card a {
  display: inline-block;
  margin-top: 0;
  padding-top: 0;
  align-self: start;
}

.reviews-carousel .carousel-arrow {
  width: 24px;
  height: 24px;
  border-color: rgba(199, 168, 109, 0.3);
  background: transparent;
  color: #8a6a34;
  font-size: 0.9rem;
}

.reviews-carousel .carousel-arrow:hover {
  background: rgba(199, 168, 109, 0.12);
}

.reviews-carousel-wrap {
  border: 0;
  background: transparent;
  padding: 0;
}

.review-dots {
  margin-top: 0.75rem;
  justify-content: center;
}

/* Reviews visual polish */
.reviews-section {
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.7) 0%, rgba(14, 14, 14, 0.74) 100%),
    linear-gradient(125deg, rgba(199, 168, 109, 0.18) 0%, rgba(199, 168, 109, 0.07) 55%, rgba(199, 168, 109, 0.14) 100%),
    url("assets/website_images/Kitchen-1.jpg") center / cover no-repeat;
}

.reviews-section .section-title,
.reviews-section .section-intro {
  max-width: 28ch;
}

.reviews-section .section-intro {
  max-width: 52ch;
}

.reviews-section .eyebrow,
.reviews-section .section-title,
.reviews-section .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.reviews-section .section-title {
  color: #fff;
}

.reviews-section .section-intro {
  color: #e9e3d6;
}

.reviews-carousel {
  max-width: 800px;
  margin-top: 1.2rem;
  position: relative;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px) saturate(135%);
  -webkit-backdrop-filter: blur(12px) saturate(135%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: block;
}

.reviews-carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  right: 1px;
  height: 2px;
  background: linear-gradient(90deg, rgba(199, 168, 109, 0.15), rgba(199, 168, 109, 0.75), rgba(199, 168, 109, 0.15));
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.reviews-carousel .carousel-arrow {
  width: 26px;
  height: 26px;
  border-color: rgba(199, 168, 109, 0.24);
  color: #9a7840;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.6rem;
}

.reviews-carousel .review-card {
  background: transparent;
  min-height: 210px;
  padding: 0.35rem 0.4rem;
}

.reviews-carousel .review-body {
  max-width: 66ch;
  margin-inline: auto;
  text-align: center;
}

.reviews-carousel .review-meta {
  font-weight: 700;
  color: #f8f3ea;
  font-size: 0.95rem;
}

.reviews-carousel .review-stars {
  margin: 0.1rem 0 0.32rem;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  color: #bd9a5f;
}

.reviews-carousel .review-text {
  max-width: 64ch;
  color: #f3eee4;
  font-size: 0.96rem;
}

.reviews-carousel .review-card a {
  font-size: 0.86rem;
  align-self: center;
  text-align: center;
  color: #f3d59f;
}

.reviews-carousel .review-card a::before {
  content: "G";
  display: inline-grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.42rem;
  border-radius: 50%;
  border: 1px solid rgba(199, 168, 109, 0.45);
  font-size: 0.68rem;
  font-weight: 700;
  color: #8e6d38;
  vertical-align: -0.1em;
}

.review-trust-chips {
  margin-top: 0.75rem;
  max-width: 800px;
  margin-inline: auto;
  gap: 0.48rem 0.6rem;
  justify-content: center;
}

.review-dots {
  margin-top: 0;
  justify-content: center;
}

@media (max-width: 980px) {
  .reviews-carousel .review-card {
    min-height: 185px;
  }
}

/* --- Page load: logo fade + center curtain reveal --- */
.page-load-splash {
  --pld-cream: #f5f2ea;
  position: fixed;
  inset: 0;
  z-index: 2147483640;
  pointer-events: auto;
  isolation: isolate;
}

.page-load-splash__curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.6%;
  background: var(--pld-cream);
  will-change: transform;
}

.page-load-splash__curtain--left {
  left: 0;
}

.page-load-splash__curtain--right {
  right: 0;
}

.page-load-splash__logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  padding: 1.5rem;
  pointer-events: none;
}

.page-load-splash__logo img {
  width: min(42vw, 200px);
  height: auto;
  opacity: 1;
}

.page-load-splash--played .page-load-splash__logo img {
  animation: pld-logo-fade 0.75s ease forwards 0.2s;
}

.page-load-splash--played .page-load-splash__curtain--left {
  animation: pld-curtain-left 0.95s cubic-bezier(0.45, 0, 0.2, 1) forwards 0.85s;
}

.page-load-splash--played .page-load-splash__curtain--right {
  animation: pld-curtain-right 0.95s cubic-bezier(0.45, 0, 0.2, 1) forwards 0.85s;
}

@keyframes pld-logo-fade {
  to {
    opacity: 0;
    transform: scale(0.96);
  }
}

@keyframes pld-curtain-left {
  to {
    transform: translateX(-100%);
  }
}

@keyframes pld-curtain-right {
  to {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-load-splash {
    display: none !important;
  }
}
