:root {
  --ink: #020101;
  --body: #4b4740;
  --accent: #bc9565;
  --accent-dark: #a07d50;
  --accent-text: #8d6a3e;
  --gold: #bc9565;
  --gold-soft: #d0c4b0;
  --warm: #f2ebe0;
  --cream: #faf6f0;
  --line: #e8dece;
}

body.service-page {
  background: var(--cream);
}

.service-page :focus-visible {
  outline-color: var(--accent-text);
}

.service-page .site-header :focus-visible,
.service-page .service-hero :focus-visible,
.service-page .service-jump-nav :focus-visible,
.service-page .service-proof :focus-visible,
.service-page .service-dark-band :focus-visible,
.service-page .service-feature-band :focus-visible,
.service-page .kitchen-countertops :focus-visible,
.service-page .kitchen-benefits :focus-visible,
.service-page .service-conversion :focus-visible,
.service-page .site-footer :focus-visible {
  outline-color: var(--gold);
}

.service-page .site-header {
  color: #fff;
}

.service-page .site-header.scrolled,
.service-page .site-header.menu-active {
  background: rgba(2, 1, 1, 0.96);
  color: #fff;
}

.service-page .site-header.scrolled .brand img,
.service-page .site-header.menu-active .brand img {
  filter: none;
}

.service-page .nav-menu {
  border: 1px solid rgba(188, 149, 101, 0.22);
  background: rgba(2, 1, 1, 0.98);
}

.service-page .nav-menu a {
  color: #fff;
}

.service-page .nav-menu a:hover,
.service-page .nav-menu a:focus-visible {
  background: rgba(188, 149, 101, 0.16);
}

.service-page .mobile-menu {
  background: var(--ink);
  color: #fff;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.service-page .mobile-menu a:not(.button) {
  border-color: rgba(255, 255, 255, 0.13);
}

.service-page .mobile-menu a:not(.button)::after {
  color: var(--gold);
}

.service-page .button {
  min-height: 48px;
  border-color: var(--gold);
  border-radius: 0;
  background: var(--gold);
  color: var(--ink);
  padding-inline: 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.service-page .button:hover,
.service-page .button:focus-visible {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  color: var(--ink);
}

.service-page .button-outline {
  border-color: rgba(255, 255, 255, 0.74);
  background: transparent;
  color: #fff;
}

.service-page .button-outline:hover,
.service-page .button-outline:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.service-page .header-cta {
  color: var(--ink);
}

.service-page .eyebrow {
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-page .eyebrow > span {
  width: 30px;
}

.service-hero {
  position: relative;
  display: flex;
  min-height: min(820px, 92svh);
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

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

.service-hero > img {
  object-fit: cover;
  object-position: center;
  animation: service-hero-in 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 1, 1, 0.84) 0%, rgba(2, 1, 1, 0.48) 54%, rgba(2, 1, 1, 0.24) 100%),
    linear-gradient(0deg, rgba(2, 1, 1, 0.5) 0%, transparent 54%);
}

@keyframes service-hero-in {
  from { transform: scale(1.06); opacity: 0.74; }
  to { transform: scale(1); opacity: 1; }
}

.service-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 70px;
  align-items: end;
  padding: 188px 0 82px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--gold);
}

.service-hero .eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
}

.service-hero h1 {
  max-width: 820px;
  margin-bottom: 21px;
  color: #fff;
  font-size: clamp(3.5rem, 7.4vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.service-hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.5;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-hero-note a {
  display: block;
  width: max-content;
  margin-top: 14px;
  border-bottom: 1px solid var(--gold);
  color: #fff;
  font-weight: 700;
  text-underline-offset: 4px;
}

.service-hero-note a:hover,
.service-hero-note a:focus-visible {
  color: var(--gold-soft);
}

.service-cta-note {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-hero-note {
  border-top: 1px solid var(--gold);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 24px;
  font-size: 13px;
}

.service-hero-note strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
}

/* Shared service-page navigation and proof */

.service-jump-nav {
  position: sticky;
  z-index: 90;
  top: 84px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
  color: #fff;
  scrollbar-width: none;
}

.service-jump-nav::-webkit-scrollbar {
  display: none;
}

.service-jump-nav .page-width {
  display: flex;
  width: max-content;
  min-width: var(--page);
  align-items: stretch;
}

.service-jump-nav a {
  position: relative;
  display: grid;
  min-height: 58px;
  flex: 1 0 auto;
  place-items: center;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.service-jump-nav a:hover,
.service-jump-nav a:focus-visible {
  background: rgba(188, 149, 101, 0.14);
  color: var(--gold-soft);
}

.service-proof {
  border-bottom: 1px solid rgba(188, 149, 101, 0.3);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.service-proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.service-proof-list li {
  min-height: 118px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 25px 24px;
}

.service-proof-list li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.service-proof-list strong,
.service-proof-list span {
  display: block;
}

.service-proof-list strong {
  margin-bottom: 5px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.1;
}

.service-proof-list span {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#service-scope,
#service-options,
#basement-challenges,
#whole-home-main-floor,
#whole-home-staircases,
#kitchen-features,
#kitchen-countertops,
#kitchen-cabinetry,
#kitchen-benefits,
#service-process,
#service-areas,
#service-faq {
  scroll-margin-top: 158px;
}

.service-intro {
  background: var(--cream);
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.service-intro-copy {
  position: sticky;
  top: 130px;
}

.service-intro-copy h2,
.service-editorial h2,
.service-areas-block h2,
.service-faq h2 {
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.service-intro-copy h2 {
  margin-bottom: 24px;
}

.service-intro-copy p:last-child {
  margin-bottom: 0;
  font-size: 17px;
}

.scope-list {
  border-top: 1px solid var(--line);
}

.scope-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.scope-item > span {
  color: var(--accent-text);
  font-family: var(--display);
  font-size: 1.2rem;
}

.scope-item h3 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
}

.scope-item p {
  max-width: 600px;
  margin-bottom: 0;
}

/* Service-specific options and mid-page conversion */

.service-options {
  background: var(--warm);
}

.service-options-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(340px, 0.55fr);
  gap: clamp(45px, 8vw, 105px);
  align-items: end;
  margin-bottom: 48px;
}

.service-options-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.service-options-intro > p {
  max-width: 520px;
  margin-bottom: 3px;
  font-size: 16px;
}

.service-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-option-card {
  min-height: 270px;
  background: var(--cream);
  padding: clamp(28px, 3.4vw, 43px);
}

.service-option-card.is-dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.service-option-card .service-option-number {
  display: block;
  margin-bottom: 39px;
  color: var(--accent-text);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
}

.service-option-card.is-dark .service-option-number {
  color: var(--gold);
}

.service-option-card h3 {
  margin-bottom: 15px;
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
}

.service-option-card.is-dark h3 {
  color: #fff;
}

.service-option-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.service-feature-band {
  border-top: 1px solid rgba(188, 149, 101, 0.35);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 58px 0;
}

.service-feature-band-inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.service-feature-band h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.service-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-chip-list li {
  border: 1px solid rgba(188, 149, 101, 0.5);
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 13px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

/* Basement service depth */

.basement-challenges {
  background: var(--warm);
}

.basement-challenges-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.54fr);
  gap: clamp(45px, 8vw, 105px);
  align-items: end;
  margin-bottom: 50px;
}

.basement-challenges-head h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.basement-challenges-head > p {
  max-width: 540px;
  margin-bottom: 2px;
  font-size: 16px;
}

.basement-challenge-list {
  display: grid;
  gap: 24px;
}

.basement-challenge {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.basement-challenge-issue {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  background: var(--gold);
  color: var(--ink);
  padding: clamp(32px, 4.2vw, 56px);
}

.basement-challenge:nth-child(2) .basement-challenge-issue {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.basement-challenge-issue > span,
.basement-solution > span {
  display: block;
  margin-bottom: 38px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.basement-challenge:nth-child(2) .basement-challenge-issue > span {
  color: var(--gold);
}

.basement-challenge-issue h3 {
  max-width: 470px;
  margin-bottom: 24px;
  font-size: clamp(2.1rem, 3.7vw, 3.4rem);
  line-height: 1;
}

.basement-challenge:nth-child(2) .basement-challenge-issue h3 {
  color: #fff;
}

.basement-challenge-issue p {
  max-width: 500px;
  margin: auto 0 0;
  color: inherit;
  font-size: 14px;
}

.basement-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--line);
  gap: 1px;
}

.basement-solution {
  min-height: 390px;
  background: var(--cream);
  padding: clamp(32px, 4vw, 52px);
}

.basement-solution:nth-child(2) {
  background: #fff;
}

.basement-solution > span {
  color: var(--accent-text);
}

.basement-solution h4 {
  margin-bottom: 19px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.7vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.basement-solution p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Whole-home service depth */

.whole-home-main-floor {
  background: var(--cream);
}

.whole-home-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 0.54fr);
  gap: clamp(45px, 8vw, 105px);
  align-items: end;
  margin-bottom: 50px;
}

.whole-home-section-head h2,
.whole-home-stair-copy h2 {
  max-width: 790px;
  margin-bottom: 0;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.whole-home-section-head > p {
  max-width: 560px;
  margin-bottom: 2px;
  font-size: 16px;
}

.main-floor-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.main-floor-timeline {
  display: flex;
  min-height: 525px;
  flex-direction: column;
  background: var(--gold);
  color: var(--ink);
  padding: clamp(34px, 4.5vw, 58px);
}

.main-floor-timeline > span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.main-floor-timeline strong {
  display: block;
  margin: auto 0 24px;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.main-floor-timeline p {
  max-width: 510px;
  margin-bottom: 0;
  color: rgba(2, 1, 1, 0.76);
  font-size: 13px;
}

.main-floor-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--line);
  gap: 1px;
}

.main-floor-detail-grid article {
  min-height: 262px;
  background: #fff;
  padding: clamp(30px, 3.8vw, 48px);
}

.main-floor-detail-grid article:nth-child(2),
.main-floor-detail-grid article:nth-child(3) {
  background: var(--warm);
}

.main-floor-detail-grid span {
  display: block;
  margin-bottom: 35px;
  color: var(--accent-text);
  font-family: var(--display);
  font-size: 1.25rem;
}

.main-floor-detail-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.7vw, 2.25rem);
}

.main-floor-detail-grid p {
  margin-bottom: 0;
  font-size: 13px;
}

.whole-home-staircases {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.whole-home-stair-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
}

.whole-home-stair-copy {
  position: sticky;
  top: 176px;
}

.whole-home-stair-copy .eyebrow {
  color: var(--gold);
}

.whole-home-stair-copy h2 {
  margin-bottom: 25px;
  color: #fff;
}

.whole-home-stair-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 30px;
  font-size: 16px;
}

.stair-option-list {
  border-top: 1px solid rgba(188, 149, 101, 0.58);
}

.stair-option-list > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 24px 0;
}

.stair-option-list span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.25rem;
}

.stair-option-list p {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  letter-spacing: -0.015em;
  line-height: 1.08;
}

/* Kitchen service depth */

.kitchen-feature-stories {
  background: var(--cream);
}

.kitchen-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: end;
  margin-bottom: 50px;
}

.kitchen-section-head h2,
.kitchen-countertop-copy h2,
.kitchen-benefits-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.kitchen-section-head > p {
  max-width: 540px;
  margin-bottom: 2px;
  font-size: 16px;
}

.kitchen-feature-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: start;
}

.kitchen-feature-media,
.kitchen-countertop-media {
  position: relative;
  margin: 0;
  background: var(--ink);
}

.kitchen-feature-media {
  position: sticky;
  top: 176px;
}

.kitchen-feature-media img {
  display: block;
  width: 100%;
  height: 685px;
  object-fit: cover;
}

.kitchen-feature-media figcaption,
.kitchen-countertop-media figcaption {
  border-top: 1px solid rgba(188, 149, 101, 0.38);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  padding: 17px 20px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.055em;
  line-height: 1.5;
  text-transform: uppercase;
}

.kitchen-feature-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.kitchen-feature-story {
  min-height: 350px;
  background: #fff;
  padding: clamp(28px, 3.4vw, 42px);
}

.kitchen-feature-story:nth-child(2),
.kitchen-feature-story:nth-child(3) {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.kitchen-feature-story > span {
  display: block;
  margin-bottom: 44px;
  color: var(--accent-text);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
}

.kitchen-feature-story:nth-child(2) > span,
.kitchen-feature-story:nth-child(3) > span {
  color: var(--gold);
}

.kitchen-feature-story h3 {
  margin-bottom: 15px;
  font-size: clamp(1.7rem, 2.7vw, 2.3rem);
}

.kitchen-feature-story:nth-child(2) h3,
.kitchen-feature-story:nth-child(3) h3 {
  color: #fff;
}

.kitchen-feature-story p {
  margin-bottom: 0;
  font-size: 14px;
}

.kitchen-countertops {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.kitchen-countertop-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  grid-template-areas:
    "copy media"
    "materials materials";
  gap: 56px clamp(45px, 7vw, 100px);
  align-items: center;
}

.kitchen-countertop-copy {
  grid-area: copy;
}

.kitchen-countertop-copy .eyebrow {
  color: var(--gold);
}

.kitchen-countertop-copy h2 {
  margin-bottom: 25px;
  color: #fff;
}

.kitchen-countertop-copy > p:not(.eyebrow) {
  max-width: 590px;
  font-size: 16px;
}

.kitchen-countertop-copy > p:last-child {
  margin-bottom: 0;
}

.kitchen-countertop-media {
  grid-area: media;
}

.kitchen-countertop-media img {
  display: block;
  width: 100%;
  height: 465px;
  object-fit: cover;
}

.countertop-material-grid {
  display: grid;
  grid-area: materials;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(188, 149, 101, 0.55);
  border-bottom: 1px solid rgba(188, 149, 101, 0.55);
}

.countertop-material-grid article {
  min-height: 270px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding: 30px 25px 28px 0;
}

.countertop-material-grid article + article {
  padding-left: 25px;
}

.countertop-material-grid article:last-child {
  border-right: 0;
}

.countertop-material-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.25rem;
}

.countertop-material-grid h3 {
  margin-bottom: 13px;
  color: #fff;
  font-size: 1.75rem;
}

.countertop-material-grid p {
  margin-bottom: 0;
  font-size: 13px;
}

.kitchen-cabinetry {
  background: var(--warm);
}

.kitchen-cabinetry-head {
  margin-bottom: 46px;
}

.cabinetry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.cabinetry-card {
  min-height: 520px;
  background: var(--cream);
  padding: clamp(26px, 2.8vw, 38px);
}

.cabinetry-card.is-featured {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.cabinetry-card-top {
  display: flex;
  min-height: 84px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.cabinetry-card-top span {
  color: var(--accent-text);
  font-family: var(--display);
  font-size: 1.3rem;
}

.cabinetry-card.is-featured .cabinetry-card-top span {
  color: var(--gold);
}

.cabinetry-card-top p {
  max-width: 120px;
  margin: 0;
  color: var(--accent-text);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
}

.cabinetry-card.is-featured .cabinetry-card-top p {
  color: var(--gold);
}

.cabinetry-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
}

.cabinetry-card.is-featured h3 {
  color: #fff;
}

.cabinetry-card > p {
  min-height: 126px;
  margin-bottom: 24px;
  font-size: 13px;
}

.cabinetry-card dl,
.cabinetry-card dd {
  margin: 0;
}

.cabinetry-card dl {
  border-top: 1px solid var(--line);
}

.cabinetry-card.is-featured dl {
  border-color: rgba(255, 255, 255, 0.14);
}

.cabinetry-card dl > div {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.cabinetry-card.is-featured dl > div {
  border-color: rgba(255, 255, 255, 0.14);
}

.cabinetry-card dt {
  margin-bottom: 5px;
  color: var(--accent-text);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cabinetry-card.is-featured dt {
  color: var(--gold);
}

.cabinetry-card dd {
  font-size: 12px;
  line-height: 1.45;
}

.kitchen-benefits {
  background: var(--gold);
  color: var(--ink);
  padding: clamp(72px, 9vw, 118px) 0;
}

.kitchen-benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(470px, 1.2fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: start;
}

.kitchen-benefits-intro .eyebrow,
.kitchen-benefits-intro .eyebrow > span {
  color: var(--ink);
}

.kitchen-benefits-intro h2 {
  margin-bottom: 24px;
}

.kitchen-benefits-intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  font-size: 16px;
}

.service-page .kitchen-benefits .button {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.service-page .kitchen-benefits .button:hover,
.service-page .kitchen-benefits .button:focus-visible {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.kitchen-benefit-grid {
  border-top: 1px solid rgba(2, 1, 1, 0.65);
}

.kitchen-benefit-grid article {
  display: grid;
  grid-template-columns: 42px minmax(150px, 0.4fr) 1fr;
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid rgba(2, 1, 1, 0.42);
  padding: 27px 0;
}

.kitchen-benefit-grid span {
  font-family: var(--display);
  font-size: 1.25rem;
}

.kitchen-benefit-grid h3 {
  margin: 0;
  font-size: 1.75rem;
}

.kitchen-benefit-grid p {
  margin: 0;
  color: rgba(2, 1, 1, 0.74);
  font-size: 13px;
}

.service-inline-cta {
  background: var(--gold);
  color: var(--ink);
  padding: clamp(54px, 7vw, 82px) 0;
}

.service-inline-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 52px;
  align-items: end;
}

.service-inline-cta .eyebrow,
.service-inline-cta .eyebrow > span,
.service-inline-cta h2 {
  color: var(--ink);
}

.service-inline-cta h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2.45rem, 4.5vw, 4.15rem);
  line-height: 0.98;
}

.service-inline-cta-copy > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
}

.service-inline-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-page .service-inline-cta .button {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.service-page .service-inline-cta .button:hover,
.service-page .service-inline-cta .button:focus-visible {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.service-page .service-inline-cta .button.button-secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.service-page .service-inline-cta .button.button-secondary:hover,
.service-page .service-inline-cta .button.button-secondary:focus-visible {
  background: var(--ink);
  color: #fff;
}

.service-dark-band {
  overflow: hidden;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.service-editorial {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  min-height: 690px;
}

.service-editorial-media {
  position: relative;
  min-height: 690px;
}

.service-editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-editorial-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(2, 1, 1, 0.34));
  content: "";
}

.service-editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(42px, calc((100vw - 1088px) / 2));
}

.service-editorial-copy .eyebrow {
  color: var(--gold);
}

.service-editorial h2 {
  margin-bottom: 25px;
  color: #fff;
}

.service-editorial-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  font-size: 17px;
}

.gold-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gold-list li {
  display: grid;
  grid-template-columns: 27px 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 16px 0;
}

.gold-list li::before {
  color: var(--gold);
  content: "—";
}

.service-process {
  background: #fff;
}

.service-process-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 52px;
}

.service-process-head h2 {
  max-width: 700px;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  line-height: 0.98;
}

.service-process-head > p {
  max-width: 370px;
  margin-bottom: 4px;
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--ink);
}

.service-step {
  min-height: 300px;
  border-right: 1px solid var(--line);
  padding: 28px 22px 20px 0;
}

.service-step + .service-step {
  padding-left: 22px;
}

.service-step:last-child {
  border-right: 0;
}

.service-step > span {
  display: block;
  margin-bottom: 54px;
  color: var(--accent-text);
  font-family: var(--display);
  font-size: 2.3rem;
  line-height: 1;
}

.service-step h3 {
  min-height: 52px;
  margin-bottom: 13px;
  font-size: 1.45rem;
}

.service-step p {
  margin: 0;
  font-size: 13px;
}

.service-project-note {
  background: var(--warm);
}

.project-note-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  align-items: center;
}

.project-note-media {
  min-height: 580px;
}

.project-note-media img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.project-note-copy {
  position: relative;
  z-index: 2;
  margin-left: -80px;
  border-left: 4px solid var(--gold);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  padding: 58px 52px;
}

.project-note-copy h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  line-height: 1;
}

.project-note-copy .eyebrow {
  color: var(--gold);
}

.project-note-copy .button {
  margin-top: 8px;
}

.service-areas-block {
  background: var(--cream);
}

.service-areas-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.service-areas-block h2 {
  margin-bottom: 25px;
}

.service-areas-copy > p:not(.eyebrow) {
  margin-bottom: 27px;
  font-size: 17px;
}

.area-name-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.area-name-grid div {
  min-height: 132px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.area-name-grid div:nth-child(2n) {
  border-right: 0;
}

.area-name-grid span {
  display: block;
  margin-bottom: 15px;
  color: var(--accent-text);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.area-name-grid h3 {
  margin: 0;
  font-size: 1.65rem;
}

.service-faq {
  background: #fff;
}

.service-faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.service-faq-intro {
  position: sticky;
  top: 130px;
}

.service-faq-intro h2 {
  margin-bottom: 22px;
}

.service-faq-list {
  border-top: 1px solid var(--ink);
}

.service-faq-list details {
  border-bottom: 1px solid var(--line);
}

.service-faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  padding: 25px 52px 25px 0;
  font-family: var(--display);
  font-size: 1.48rem;
  line-height: 1.25;
}

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

.service-faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 8px;
  color: var(--accent-text);
  content: "+";
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.service-faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.service-faq-list details p {
  max-width: 680px;
  padding: 0 48px 23px 0;
}

.service-conversion {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.service-conversion > img,
.service-conversion-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-conversion > img {
  object-fit: cover;
}

.service-conversion-shade {
  background: rgba(2, 1, 1, 0.72);
}

.service-conversion-content {
  position: relative;
  z-index: 2;
  width: min(850px, calc(100% - 40px));
  padding: 45px 30px;
  text-align: center;
}

.service-conversion-content .eyebrow {
  justify-content: center;
  color: var(--gold);
}

.service-conversion h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(3rem, 6.2vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.service-conversion-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.service-page .site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.66);
}

.service-page .footer-brand img {
  filter: none;
}

.service-page .footer-brand .service-area,
.service-page .footer-column h3 {
  color: var(--gold);
}

.service-page .footer-column > a:hover,
.service-page .footer-column > a:focus-visible {
  color: var(--gold);
}

.service-page .social-links a {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.service-page .social-links a:hover,
.service-page .social-links a:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.service-page .footer-bottom {
  border-color: rgba(255, 255, 255, 0.12);
}

.service-page .back-to-top {
  background: var(--gold);
  color: var(--ink);
}

@media (max-width: 1080px) {
  .service-hero-content {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 40px;
  }

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

  .service-step {
    border-bottom: 1px solid var(--line);
  }

  .service-step:nth-child(3) {
    border-right: 0;
  }

  .service-step:nth-child(n + 4) {
    border-bottom: 0;
  }

  .service-step > span {
    margin-bottom: 35px;
  }
}

@media (max-width: 960px) {
  .service-page .mobile-menu {
    height: calc(100svh - 84px);
  }

  .service-hero {
    min-height: 760px;
  }

  .service-hero-content {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 164px 0 70px;
  }

  .service-hero-note {
    max-width: 520px;
  }

  .service-intro-grid,
  .service-areas-layout,
  .service-faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-intro-copy,
  .service-faq-intro {
    position: static;
  }

  .service-editorial {
    grid-template-columns: 1fr;
  }

  .service-editorial-media {
    min-height: 520px;
  }

  .service-editorial-copy {
    padding: 68px max(22px, calc((100vw - 680px) / 2));
  }

  .service-process-head {
    display: block;
  }

  .service-process-head > p {
    margin-top: 22px;
  }

  .project-note-grid {
    grid-template-columns: 1fr;
  }

  .project-note-copy {
    width: calc(100% - 44px);
    margin: -80px auto 0;
  }
}

@media (max-width: 680px) {
  .service-page .header-cta {
    min-height: 44px;
    padding-inline: 12px;
    letter-spacing: 0.035em;
  }

  .service-page .mobile-menu {
    height: calc(100svh - 72px);
    padding-bottom: calc(36px + env(safe-area-inset-bottom));
  }

  .service-hero {
    min-height: 720px;
  }

  .service-hero > img {
    object-position: 58% center;
  }

  .service-hero-shade {
    background: linear-gradient(0deg, rgba(2, 1, 1, 0.88) 0%, rgba(2, 1, 1, 0.5) 70%, rgba(2, 1, 1, 0.4) 100%);
  }

  .service-hero-content {
    gap: 28px;
    padding: 128px 0 49px;
  }

  .breadcrumbs {
    margin-bottom: 20px;
  }

  .service-hero h1 {
    font-size: clamp(3.15rem, 16vw, 4.25rem);
  }

  .service-hero-lead {
    font-size: 1rem;
  }

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

  .service-intro-copy h2,
  .service-editorial h2,
  .service-areas-block h2,
  .service-faq h2,
  .service-process-head h2 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .scope-item {
    grid-template-columns: 44px 1fr;
    gap: 13px;
  }

  .service-editorial-media,
  .project-note-media {
    min-height: 430px;
  }

  .service-editorial-media img,
  .project-note-media img {
    height: 430px;
  }

  .service-editorial-copy {
    padding: 58px 20px;
  }

  .service-steps {
    grid-template-columns: 1fr;
  }

  .service-step,
  .service-step + .service-step {
    display: grid;
    min-height: 0;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .service-step:last-child {
    border-bottom: 0;
  }

  .service-step > span {
    margin: 0;
    font-size: 1.85rem;
  }

  .service-step h3 {
    min-height: 0;
  }

  .project-note-copy {
    width: calc(100% - 24px);
    margin-top: -50px;
    padding: 38px 28px;
  }

  .area-name-grid {
    grid-template-columns: 1fr;
  }

  .area-name-grid div,
  .area-name-grid div:nth-child(2n) {
    min-height: 105px;
    border-right: 0;
  }

  .service-faq-list summary {
    padding-right: 42px;
    font-size: 1.3rem;
  }

  .service-conversion {
    min-height: 500px;
  }

  .service-conversion h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }
}

@media (max-width: 380px) {
  .service-hero h1 {
    font-size: 2.85rem;
  }

  .service-page .header-cta {
    display: none;
  }

  .service-page .menu-toggle {
    margin-left: auto;
  }
}

/* Bathroom service detail system */

.bathroom-jump-nav {
  position: sticky;
  z-index: 90;
  top: 84px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
  color: #fff;
  scrollbar-width: none;
}

.bathroom-jump-nav::-webkit-scrollbar {
  display: none;
}

.bathroom-jump-nav .page-width {
  display: flex;
  width: max-content;
  min-width: var(--page);
  align-items: stretch;
}

.bathroom-jump-nav a {
  position: relative;
  display: grid;
  min-height: 58px;
  flex: 1 0 auto;
  place-items: center;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.bathroom-jump-nav a:hover,
.bathroom-jump-nav a:focus-visible {
  background: rgba(188, 149, 101, 0.11);
  color: var(--gold);
}

#bathroom-services,
#bathroom-layouts,
#walk-in-showers,
#accessible-bathrooms,
#bathroom-process,
#bathroom-faq {
  scroll-margin-top: 158px;
}

.bathroom-catalog {
  background: var(--warm);
}

/* Bathroom service family: overview cards + sibling navigation */

.bathroom-family-nav {
  position: sticky;
  z-index: 90;
  top: 84px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  border-bottom: 1px solid rgba(188, 149, 101, 0.22);
  background: var(--ink);
  color: #fff;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.bathroom-family-nav::-webkit-scrollbar {
  display: none;
}

.bathroom-family-nav .page-width {
  display: flex;
  width: max-content;
  min-width: var(--page);
  align-items: stretch;
}

.bathroom-family-nav a {
  position: relative;
  display: grid;
  min-height: 58px;
  flex: 1 0 auto;
  place-items: center;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  scroll-snap-align: start;
  transition: color 0.2s ease, background 0.2s ease;
}

.bathroom-family-nav a:hover,
.bathroom-family-nav a:focus-visible,
.bathroom-family-nav a[aria-current="page"] {
  background: rgba(188, 149, 101, 0.13);
  color: var(--gold);
}

.bathroom-family-nav a[aria-current="page"]::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.bathroom-specialties {
  background: var(--warm);
}

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

.bathroom-specialty-card {
  position: relative;
  display: grid;
  min-height: 500px;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
}

.bathroom-specialty-card:last-child {
  min-height: 430px;
  grid-column: 1 / -1;
}

.bathroom-specialty-card > img,
.bathroom-specialty-card::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bathroom-specialty-card > img {
  z-index: -2;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.bathroom-specialty-card::before {
  z-index: -1;
  background: linear-gradient(0deg, rgba(2, 1, 1, 0.94) 0%, rgba(2, 1, 1, 0.58) 47%, rgba(2, 1, 1, 0.08) 82%);
  content: "";
}

.bathroom-specialty-card:hover > img,
.bathroom-specialty-card:focus-visible > img {
  transform: scale(1.035);
}

.bathroom-specialty-card-content {
  padding: clamp(28px, 4vw, 46px);
}

.bathroom-specialty-card-number {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.25rem;
}

.bathroom-specialty-card h3 {
  max-width: 620px;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.bathroom-specialty-card p {
  max-width: 590px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.bathroom-specialty-card strong {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bathroom-specialty-card strong::after {
  content: "\2192";
  font-size: 18px;
  transition: transform 0.2s ease;
}

.bathroom-specialty-card:hover strong::after,
.bathroom-specialty-card:focus-visible strong::after {
  transform: translateX(5px);
}

.bathroom-detail-section {
  background: var(--cream);
}

.bathroom-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.bathroom-detail-copy {
  position: sticky;
  top: 176px;
}

.bathroom-detail-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
}

.bathroom-detail-copy > p:not(.eyebrow) {
  font-size: 17px;
}

.bathroom-detail-list {
  border-top: 1px solid var(--ink);
}

.bathroom-detail-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.bathroom-detail-list article > span {
  color: var(--accent-text);
  font-family: var(--display);
  font-size: 1.25rem;
}

.bathroom-detail-list h3 {
  margin-bottom: 8px;
}

.bathroom-detail-list p {
  margin: 0;
  font-size: 14px;
}

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

.bathroom-catalog-panel {
  min-height: 650px;
  background: #fff;
  padding: clamp(32px, 4vw, 55px);
}

.catalog-label {
  margin-bottom: 16px;
  color: var(--accent-text);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bathroom-catalog-panel > h3,
.catalog-panel-copy > h3 {
  margin-bottom: 30px;
  font-size: clamp(2.15rem, 3.8vw, 3.4rem);
  line-height: 1;
}

.catalog-list {
  border-top: 1px solid var(--line);
}

.catalog-list > div {
  display: grid;
  grid-template-columns: 36px 0.55fr 1fr;
  gap: 14px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.catalog-list span,
.safety-grid > article > span,
.benefit-grid > article > span {
  color: var(--accent-text);
  font-family: var(--display);
  font-size: 1.25rem;
}

.catalog-list h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.15;
}

.catalog-list p {
  margin: 0;
  font-size: 13px;
}

.bathroom-shower-panel {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 0;
}

.bathroom-shower-panel > img {
  width: 100%;
  height: 315px;
  object-fit: cover;
}

.catalog-panel-copy {
  flex: 1;
  padding: clamp(30px, 4vw, 47px);
}

.catalog-panel-copy .catalog-label {
  color: var(--gold);
}

.catalog-panel-copy > h3 {
  color: #fff;
}

.feature-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.feature-tags span {
  display: flex;
  min-height: 72px;
  align-items: center;
  background: var(--ink);
  padding: 14px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 12px;
}

.feature-tags span::before {
  margin-right: 9px;
  color: var(--gold);
  content: "+";
}

.bathroom-accessibility {
  overflow: hidden;
  background: #fff;
}

.accessibility-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.accessibility-copy h2 {
  margin-bottom: 25px;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.accessibility-copy > p:not(.eyebrow) {
  font-size: 17px;
}

.accessibility-copy .fine-print {
  border-left: 2px solid var(--gold);
  margin-top: 25px;
  padding-left: 17px;
  color: #706b62;
  font-size: 12px !important;
}

.accessibility-media {
  position: relative;
  height: 560px;
}

.accessibility-media::before {
  position: absolute;
  z-index: 1;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  content: "";
  pointer-events: none;
}

.accessibility-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--ink);
}

.safety-grid article {
  min-height: 245px;
  border-right: 1px solid var(--line);
  padding: 28px 24px 20px 0;
}

.safety-grid article + article {
  padding-left: 24px;
}

.safety-grid article:last-child {
  border-right: 0;
}

.safety-grid span {
  display: block;
  margin-bottom: 38px;
}

.safety-grid h3 {
  margin-bottom: 12px;
}

.safety-grid p {
  margin: 0;
  font-size: 13px;
}

.bathroom-benefits {
  background: var(--gold);
  color: var(--ink);
  padding: clamp(72px, 8vw, 105px) 0;
}

.bathroom-benefits-head {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 46px;
}

.bathroom-benefits .eyebrow,
.bathroom-benefits .eyebrow > span {
  color: var(--ink);
}

.bathroom-benefits h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(2, 1, 1, 0.48);
}

.benefit-grid article {
  min-height: 240px;
  border-right: 1px solid rgba(2, 1, 1, 0.28);
  padding: 27px 27px 20px 0;
}

.benefit-grid article + article {
  padding-left: 27px;
}

.benefit-grid article:last-child {
  border-right: 0;
}

.benefit-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--ink);
}

.benefit-grid h3 {
  margin-bottom: 13px;
  color: var(--ink);
}

.benefit-grid p {
  margin: 0;
}

.service-steps-seven {
  grid-template-columns: repeat(4, 1fr);
}

.service-steps-seven .service-step:nth-child(-n + 4) {
  border-bottom: 1px solid var(--line);
}

.service-steps-seven .service-step:nth-child(4) {
  border-right: 0;
}

.service-steps-seven .service-step:nth-child(n + 5) {
  border-bottom: 0;
}

@media (max-width: 1080px) {
  .bathroom-family-nav .page-width {
    margin-left: 0;
    padding-inline: 12px;
  }

  .bathroom-jump-nav .page-width {
    margin-left: 0;
    padding-inline: 12px;
  }

  .bathroom-catalog-grid {
    grid-template-columns: 1fr;
  }

  .bathroom-catalog-panel {
    min-height: auto;
  }

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

  .service-steps-seven .service-step:nth-child(4) {
    border-right: 1px solid var(--line);
  }

  .service-steps-seven .service-step:nth-child(3n) {
    border-right: 0;
  }

  .service-steps-seven .service-step:nth-child(-n + 6) {
    border-bottom: 1px solid var(--line);
  }

  .service-steps-seven .service-step:nth-child(n + 7) {
    border-bottom: 0;
  }
}

@media (max-width: 960px) {
  .bathroom-family-nav {
    top: 84px;
  }

  .bathroom-detail-grid {
    grid-template-columns: 1fr;
  }

  .bathroom-detail-copy {
    position: static;
    max-width: 720px;
  }

  .bathroom-jump-nav {
    top: 84px;
  }

  .accessibility-layout {
    grid-template-columns: 1fr;
  }

  .accessibility-copy {
    max-width: 700px;
  }

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

  .safety-grid article:nth-child(2) {
    border-right: 0;
  }

  .safety-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .bathroom-benefits-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 680px) {
  .bathroom-family-nav {
    top: 72px;
  }

  .bathroom-family-nav a {
    min-height: 54px;
    padding-inline: 15px;
    font-size: 12px;
  }

  .bathroom-specialty-grid {
    grid-template-columns: 1fr;
  }

  .bathroom-specialty-card,
  .bathroom-specialty-card:last-child {
    min-height: 440px;
    grid-column: auto;
  }

  .bathroom-specialty-card-content {
    padding: 26px;
  }

  .bathroom-specialty-card h3,
  .bathroom-detail-copy h2 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .bathroom-detail-list article {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .bathroom-jump-nav {
    top: 72px;
  }

  .bathroom-jump-nav a {
    min-height: 54px;
    padding-inline: 16px;
    font-size: 12px;
  }

  #bathroom-services,
  #bathroom-layouts,
  #walk-in-showers,
  #accessible-bathrooms,
  #bathroom-process,
  #bathroom-faq {
    scroll-margin-top: 138px;
  }

  .bathroom-catalog-panel > h3,
  .catalog-panel-copy > h3,
  .accessibility-copy h2,
  .bathroom-benefits h2 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

  .catalog-list > div {
    grid-template-columns: 32px 1fr;
  }

  .catalog-list p {
    grid-column: 2;
  }

  .bathroom-shower-panel > img {
    height: 250px;
  }

  .feature-tags {
    grid-template-columns: 1fr;
  }

  .feature-tags span {
    min-height: 58px;
  }

  .accessibility-media {
    height: 430px;
  }

  .safety-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .safety-grid article,
  .safety-grid article + article,
  .benefit-grid article,
  .benefit-grid article + article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 25px 0;
  }

  .benefit-grid article,
  .benefit-grid article + article {
    border-color: rgba(2, 1, 1, 0.28);
  }

  .safety-grid article:last-child,
  .benefit-grid article:last-child {
    border-bottom: 0;
  }

  .safety-grid span,
  .benefit-grid span {
    margin-bottom: 19px;
  }

  .service-steps-seven {
    grid-template-columns: 1fr;
  }

  .service-steps-seven .service-step,
  .service-steps-seven .service-step:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-steps-seven .service-step:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-hero > img {
    animation: none;
  }
}

/* Services collection */

.services-hub .service-hero {
  min-height: min(760px, 88svh);
}

.services-hub-intro {
  background: var(--cream);
}

.services-hub-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: end;
  margin-bottom: 56px;
}

.services-hub-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.services-hub-heading > p {
  margin-bottom: 4px;
  font-size: 17px;
}

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

.services-hub-card {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.services-hub-card > img,
.services-hub-card::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.services-hub-card > img {
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-hub-card::after {
  background: linear-gradient(0deg, rgba(2, 1, 1, 0.92) 0%, rgba(2, 1, 1, 0.28) 68%);
  content: "";
}

.services-hub-card:hover > img,
.services-hub-card:focus-within > img {
  transform: scale(1.035);
}

.services-hub-card-content {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 48px);
}

.services-hub-card-number {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.25rem;
}

.services-hub-card h3 {
  margin-bottom: 13px;
  color: #fff;
  font-size: clamp(2rem, 3.7vw, 3.3rem);
}

.services-hub-card p {
  max-width: 560px;
  margin-bottom: 23px;
  color: rgba(255, 255, 255, 0.76);
}

.services-hub-child-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -5px 0 22px;
}

.services-hub-child-links a {
  border: 1px solid rgba(188, 149, 101, 0.52);
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.services-hub-child-links a:hover,
.services-hub-child-links a:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

.services-hub-card .text-link {
  border-bottom-color: var(--gold);
  color: var(--gold-soft);
}

@media (max-width: 1080px) {
  .service-proof-list,
  .service-options-grid,
  .countertop-material-grid,
  .cabinetry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .countertop-material-grid article,
  .countertop-material-grid article + article {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 28px;
  }

  .countertop-material-grid article:nth-child(2n) {
    border-right: 0;
  }

  .countertop-material-grid article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .cabinetry-card {
    min-height: 465px;
  }

  .service-proof-list li:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .service-proof-list li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .service-proof-list li:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 960px) {
  .service-jump-nav {
    top: 84px;
  }

  .service-jump-nav .page-width {
    margin-left: 0;
    padding-inline: 12px;
  }

  .service-options-intro,
  .service-feature-band-inner,
  .service-inline-cta-inner,
  .kitchen-section-head,
  .kitchen-feature-layout,
  .kitchen-countertop-layout,
  .kitchen-benefits-layout,
  .services-hub-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .kitchen-section-head {
    align-items: start;
    margin-bottom: 40px;
  }

  .kitchen-section-head > p {
    max-width: 680px;
  }

  .kitchen-feature-layout {
    gap: 24px;
  }

  .kitchen-feature-media {
    position: relative;
    top: auto;
  }

  .kitchen-feature-media img {
    height: 540px;
  }

  .kitchen-countertop-layout {
    grid-template-areas:
      "copy"
      "media"
      "materials";
    gap: 38px;
  }

  .kitchen-countertop-copy > p:not(.eyebrow) {
    max-width: 720px;
  }

  .kitchen-benefits-layout {
    gap: 42px;
  }

  .service-inline-actions {
    width: min(100%, 360px);
  }

  .basement-challenges-head {
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: start;
  }

  .basement-challenges-head > p {
    max-width: 680px;
  }

  .basement-challenge {
    grid-template-columns: 1fr;
  }

  .basement-challenge-issue {
    min-height: 0;
  }

  .whole-home-section-head,
  .whole-home-stair-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .whole-home-section-head > p {
    max-width: 700px;
  }

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

  .main-floor-timeline {
    min-height: 340px;
  }

  .whole-home-stair-layout {
    gap: 45px;
  }

  .whole-home-stair-copy {
    position: relative;
    top: auto;
  }
}

@media (max-width: 680px) {
  .service-jump-nav {
    top: 72px;
  }

  .service-jump-nav a {
    min-height: 54px;
    padding-inline: 16px;
  }

  #service-scope,
  #service-options,
  #basement-challenges,
  #whole-home-main-floor,
  #whole-home-staircases,
  #kitchen-features,
  #kitchen-countertops,
  #kitchen-cabinetry,
  #kitchen-benefits,
  #service-process,
  #service-areas,
  #service-faq {
    scroll-margin-top: 138px;
  }

  .service-proof-list,
  .service-options-grid,
  .kitchen-feature-story-grid,
  .countertop-material-grid,
  .cabinetry-grid,
  .services-hub-grid {
    grid-template-columns: 1fr;
  }

  .service-proof-list li,
  .service-proof-list li:first-child,
  .service-proof-list li:nth-child(2),
  .service-proof-list li:nth-child(3) {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(100px, 0.5fr) 1fr;
    gap: 20px;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding: 19px 20px;
  }

  .service-proof-list li:last-child {
    border-bottom: 0;
  }

  .service-proof-list strong {
    margin-bottom: 0;
    font-size: 1.2rem;
  }

  .service-options-intro h2,
  .service-inline-cta h2,
  .basement-challenges-head h2,
  .whole-home-section-head h2,
  .whole-home-stair-copy h2,
  .kitchen-section-head h2,
  .kitchen-countertop-copy h2,
  .kitchen-benefits-intro h2,
  .services-hub-heading h2 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .service-option-card {
    min-height: 0;
  }

  .service-option-card .service-option-number {
    margin-bottom: 25px;
  }

  .basement-solution-grid {
    grid-template-columns: 1fr;
  }

  .basement-challenge-issue,
  .basement-solution {
    min-height: 0;
    padding: 30px 24px;
  }

  .basement-challenge-issue > span,
  .basement-solution > span {
    margin-bottom: 25px;
  }

  .basement-challenge-issue h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

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

  .main-floor-timeline {
    min-height: 0;
    padding: 34px 24px;
  }

  .main-floor-timeline strong {
    margin: 64px 0 20px;
    font-size: clamp(3.6rem, 18vw, 5.2rem);
  }

  .main-floor-detail-grid article {
    min-height: 0;
    padding: 30px 24px;
  }

  .main-floor-detail-grid article:nth-child(2),
  .main-floor-detail-grid article:nth-child(3) {
    background: #fff;
  }

  .main-floor-detail-grid article:nth-child(even) {
    background: var(--warm);
  }

  .main-floor-detail-grid span {
    margin-bottom: 24px;
  }

  .stair-option-list > div {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 21px 0;
  }

  .kitchen-feature-media img,
  .kitchen-countertop-media img {
    height: 360px;
  }

  .kitchen-feature-story {
    min-height: 0;
  }

  .kitchen-feature-story > span {
    margin-bottom: 25px;
  }

  .countertop-material-grid article,
  .countertop-material-grid article + article,
  .countertop-material-grid article:nth-child(n + 3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 26px 0;
  }

  .countertop-material-grid article:last-child {
    border-bottom: 0;
  }

  .countertop-material-grid span {
    margin-bottom: 22px;
  }

  .cabinetry-card {
    min-height: 0;
  }

  .cabinetry-card > p {
    min-height: 0;
  }

  .kitchen-benefit-grid article {
    grid-template-columns: 38px 1fr;
    gap: 15px;
  }

  .kitchen-benefit-grid article p {
    grid-column: 2;
  }

  .service-feature-band {
    padding: 48px 0;
  }

  .service-chip-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-inline-actions {
    width: 100%;
  }

  .services-hub-card {
    min-height: 450px;
  }
}

/* Compact service-page rhythm shared by the hub and every service detail page. */
.service-hero,
.services-hub .service-hero {
  min-height: min(690px, 86svh);
}

.service-hero-content {
  gap: 56px;
  padding: 158px 0 68px;
}

.service-hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 5.35rem);
}

.service-hero-lead {
  max-width: 640px;
  margin-bottom: 25px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.service-proof-list li {
  min-height: 100px;
  padding: 21px 20px;
}

.service-intro-grid,
.bathroom-detail-grid,
.accessibility-layout {
  gap: clamp(42px, 6.5vw, 84px);
}

.service-intro-copy h2,
.service-editorial h2,
.service-areas-block h2,
.service-faq h2,
.service-options-intro h2,
.basement-challenges-head h2,
.whole-home-section-head h2,
.whole-home-stair-copy h2,
.kitchen-section-head h2,
.kitchen-countertop-copy h2,
.kitchen-benefits-intro h2,
.service-process-head h2,
.accessibility-copy h2,
.bathroom-benefits h2 {
  font-size: clamp(2.25rem, 4vw, 3.9rem);
}

.service-intro-copy p:last-child,
.service-editorial-copy > p:not(.eyebrow),
.service-areas-copy > p:not(.eyebrow),
.bathroom-detail-copy > p:not(.eyebrow),
.accessibility-copy > p:not(.eyebrow),
.service-conversion-content > p:not(.eyebrow),
.services-hub-heading > p {
  font-size: 16px;
}

.scope-item {
  padding-block: 23px;
}

.scope-item h3,
.service-option-card h3,
.main-floor-detail-grid h3,
.kitchen-feature-story h3,
.cabinetry-card h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
}

.service-options-intro,
.basement-challenges-head,
.whole-home-section-head,
.kitchen-section-head,
.service-process-head,
.services-hub-heading {
  margin-bottom: 40px;
}

.service-option-card {
  min-height: 230px;
  padding: clamp(25px, 3vw, 35px);
}

.service-option-card .service-option-number {
  margin-bottom: 30px;
}

.service-feature-band {
  padding-block: 48px;
}

.basement-challenge-list {
  gap: 19px;
}

.basement-challenge-issue,
.basement-solution {
  min-height: 330px;
  padding: clamp(27px, 3.4vw, 44px);
}

.basement-challenge-issue h3 {
  font-size: clamp(1.9rem, 3vw, 2.85rem);
}

.main-floor-timeline {
  min-height: 450px;
  padding: clamp(29px, 3.8vw, 48px);
}

.main-floor-timeline strong {
  font-size: clamp(3rem, 5.5vw, 5.25rem);
}

.main-floor-detail-grid article {
  min-height: 225px;
  padding: clamp(25px, 3vw, 38px);
}

.kitchen-feature-media img {
  height: 570px;
}

.kitchen-feature-story {
  min-height: 295px;
  padding: clamp(25px, 3vw, 35px);
}

.kitchen-feature-story > span {
  margin-bottom: 34px;
}

.kitchen-countertop-layout {
  gap: 45px clamp(40px, 6vw, 78px);
}

.kitchen-countertop-media img {
  height: 400px;
}

.countertop-material-grid article {
  min-height: 225px;
  padding-top: 25px;
  padding-bottom: 24px;
}

.cabinetry-card {
  min-height: 440px;
}

.kitchen-benefits,
.bathroom-benefits {
  padding-block: clamp(60px, 7vw, 86px);
}

.kitchen-benefit-grid article {
  padding-block: 22px;
}

.service-inline-cta {
  padding-block: clamp(48px, 5.5vw, 64px);
}

.service-inline-cta h2 {
  font-size: clamp(2.15rem, 3.6vw, 3.45rem);
}

.service-editorial,
.service-editorial-media {
  min-height: 570px;
}

.service-editorial-copy {
  padding-block: 64px;
}

.service-step {
  min-height: 255px;
  padding-top: 24px;
}

.service-step > span {
  margin-bottom: 42px;
}

.project-note-media,
.project-note-media img {
  min-height: 490px;
  height: 490px;
}

.project-note-copy {
  padding: 46px 43px;
}

.project-note-copy h2 {
  font-size: clamp(2.05rem, 3.35vw, 3.15rem);
}

.service-areas-layout,
.service-faq-layout {
  gap: 70px;
}

.area-name-grid div {
  min-height: 112px;
  padding: 20px;
}

.service-faq-list summary {
  padding-block: 21px;
  font-size: 1.38rem;
}

.service-conversion {
  min-height: 440px;
}

.service-conversion h2 {
  font-size: clamp(2.55rem, 5vw, 4.35rem);
}

.bathroom-specialty-card {
  min-height: 430px;
}

.bathroom-specialty-card:last-child {
  min-height: 370px;
}

.bathroom-specialty-card h3,
.bathroom-catalog-panel > h3,
.catalog-panel-copy > h3 {
  font-size: clamp(1.9rem, 3.2vw, 2.85rem);
}

.bathroom-detail-copy h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.bathroom-detail-list article {
  padding-block: 22px;
}

.bathroom-catalog-panel {
  min-height: 555px;
  padding: clamp(28px, 3.5vw, 45px);
}

.bathroom-shower-panel > img {
  height: 270px;
}

.catalog-list > div {
  padding-block: 18px;
}

.accessibility-media {
  height: 480px;
}

.safety-grid {
  margin-top: 50px;
}

.safety-grid article,
.benefit-grid article {
  min-height: 205px;
}

.services-hub-heading h2 {
  font-size: clamp(2.35rem, 4.3vw, 4.1rem);
}

.services-hub-grid {
  gap: 21px;
}

.services-hub-card {
  min-height: 440px;
}

.services-hub-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

@media (max-width: 680px) {
  .service-hero,
  .services-hub .service-hero {
    min-height: 560px;
  }

  .service-hero-content {
    gap: 28px;
    padding: 124px 0 46px;
  }

  .service-hero h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.25rem);
  }

  .service-hero-lead {
    font-size: 1rem;
  }

  .service-intro-copy h2,
  .service-editorial h2,
  .service-areas-block h2,
  .service-faq h2,
  .service-options-intro h2,
  .service-inline-cta h2,
  .basement-challenges-head h2,
  .whole-home-section-head h2,
  .whole-home-stair-copy h2,
  .kitchen-section-head h2,
  .kitchen-countertop-copy h2,
  .kitchen-benefits-intro h2,
  .service-process-head h2,
  .accessibility-copy h2,
  .bathroom-benefits h2,
  .services-hub-heading h2 {
    font-size: clamp(2.05rem, 9.5vw, 2.75rem);
  }

  .service-options-intro,
  .basement-challenges-head,
  .whole-home-section-head,
  .kitchen-section-head,
  .service-process-head,
  .services-hub-heading {
    margin-bottom: 31px;
  }

  .service-editorial-media,
  .service-editorial-media img,
  .project-note-media,
  .project-note-media img {
    min-height: 355px;
    height: 355px;
  }

  .service-editorial-copy {
    padding-block: 48px;
  }

  .kitchen-feature-media img,
  .kitchen-countertop-media img {
    height: 310px;
  }

  .bathroom-specialty-card,
  .bathroom-specialty-card:last-child,
  .services-hub-card {
    min-height: 385px;
  }

  .bathroom-catalog-panel {
    min-height: 0;
  }

  .bathroom-shower-panel > img {
    height: 240px;
  }

  .accessibility-media {
    height: 360px;
  }

  .service-conversion {
    min-height: 390px;
  }

  .service-conversion h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }
}

/* Bathroom pricing comparison */
.bathroom-pricing {
  border-block: 1px solid rgba(188, 149, 101, 0.28);
  background: #f1e9dd;
}

.bathroom-pricing-head {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.bathroom-pricing-head .eyebrow {
  justify-content: center;
}

.bathroom-pricing-head h2 {
  margin: 14px 0 18px;
  font-size: clamp(2.55rem, 4.8vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.bathroom-pricing-head > p:last-child {
  max-width: 700px;
  margin-inline: auto;
  color: var(--body);
  font-size: 17px;
}

.bathroom-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.bathroom-price-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(141, 106, 62, 0.22);
  border-top: 5px solid var(--gold);
  background: #fff;
  box-shadow: 0 18px 45px rgba(44, 31, 16, 0.08);
}

.bathroom-price-card-top {
  min-height: 220px;
  padding: 31px 30px 26px;
}

.bathroom-price-card-top > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: var(--ink);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.bathroom-price-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.04;
}

.bathroom-price-card-top p {
  margin: 0;
  color: var(--body);
  line-height: 1.65;
}

.bathroom-price {
  border-block: 1px solid var(--line);
  padding: 27px 30px 30px;
}

.bathroom-price small {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bathroom-price strong {
  display: flex;
  align-items: flex-start;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(4rem, 6vw, 5.85rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.bathroom-price strong span {
  margin: 7px 5px 0 0;
  color: var(--accent-text);
  font-family: var(--sans);
  font-size: 0.28em;
  font-weight: 800;
  letter-spacing: 0;
}

.bathroom-price-time {
  display: grid;
  gap: 4px;
  margin: 0;
  background: var(--ink);
  color: #fff;
  padding: 20px 30px;
}

.bathroom-price-time span {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bathroom-price-time strong {
  font-size: 17px;
}

.bathroom-price-card details {
  background: #fff;
}

.bathroom-price-card summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  padding: 20px 30px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bathroom-price-card summary::-webkit-details-marker {
  display: none;
}

.bathroom-price-card summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent-text);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.bathroom-price-card details[open] summary::after {
  content: "−";
}

.bathroom-price-card details[open] summary {
  border-bottom: 1px solid var(--line);
}

.bathroom-price-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 24px 30px 30px;
  list-style: none;
}

.bathroom-price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.5;
}

.bathroom-price-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent-text);
  font-weight: 900;
}

.bathroom-pricing-controls {
  display: none;
}

.bathroom-pricing-foot {
  display: grid;
  justify-items: center;
  max-width: 980px;
  margin: 36px auto 0;
  text-align: center;
}

.bathroom-pricing-foot p {
  margin: 0 0 23px;
  color: #615a50;
  font-size: 13px;
  line-height: 1.65;
}

.bathroom-pricing-foot strong {
  color: var(--ink);
}

@media (max-width: 960px) {
  .bathroom-pricing-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .bathroom-pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .bathroom-price-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .bathroom-pricing-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
  }

  .bathroom-pricing-controls > button {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 0;
    line-height: 1;
    padding: 0;
  }

  .bathroom-pricing-controls > button::before {
    width: 11px;
    height: 11px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
  }

  .bathroom-pricing-controls > button[data-pricing-prev]::before {
    transform: rotate(-135deg);
  }

  .bathroom-pricing-controls > button[data-pricing-next]::before {
    transform: rotate(45deg);
  }

  .bathroom-pricing-controls > button:hover,
  .bathroom-pricing-controls > button:focus-visible {
    border-color: var(--gold);
    background: var(--ink);
    color: var(--gold);
  }

  .bathroom-pricing-controls > button:disabled {
    cursor: default;
    opacity: 0.35;
  }

  .bathroom-pricing-dots {
    display: flex;
    gap: 9px;
  }

  .bathroom-pricing-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background: rgba(2, 1, 1, 0.25);
    cursor: pointer;
    padding: 0;
  }

  .bathroom-pricing-dots button[aria-current="true"] {
    background: var(--accent-text);
    transform: scale(1.25);
  }
}

@media (max-width: 680px) {
  .bathroom-pricing-head {
    margin-bottom: 34px;
    text-align: left;
  }

  .bathroom-pricing-head .eyebrow {
    justify-content: flex-start;
  }

  .bathroom-pricing-head h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .bathroom-pricing-head > p:last-child {
    font-size: 15px;
  }

  .bathroom-price-card {
    flex-basis: 100%;
  }

  .bathroom-price-card-top {
    min-height: 0;
    padding: 26px 24px 24px;
  }

  .bathroom-price-card-top > span {
    margin-bottom: 22px;
  }

  .bathroom-price,
  .bathroom-price-card summary,
  .bathroom-price-card ul {
    padding-inline: 24px;
  }

  .bathroom-price-time {
    padding-inline: 24px;
  }

  .bathroom-price strong {
    font-size: 4.75rem;
  }

  .bathroom-pricing-foot {
    margin-top: 29px;
    text-align: left;
  }

  .bathroom-pricing-foot .button {
    width: 100%;
  }
}
