:root {
  --ink: #1c2b31;
  --ink-soft: #586266;
  --forest: #22353d;
  --forest-deep: #14262d;
  --cream: #f2eee5;
  --paper: #fbf8f1;
  --orange: #b84f24;
  --orange-dark: #a74622;
  --gold: #d7ad5b;
  --sage: #cad1ca;
  --line: rgba(28, 43, 49, 0.18);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 18px 44px rgba(28, 43, 49, 0.14);
  --display: Rockwell, "Roboto Slab", "Avenir Next", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: white;
  background: var(--forest-deep);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  color: var(--ink);
  background: rgba(251, 248, 241, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(23, 37, 32, 0.07);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand-name strong {
  font-weight: 700;
}

.brand-location {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.primary-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-button-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-lines {
  display: grid;
  width: 25px;
  gap: 6px;
}

.menu-lines i {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] .menu-lines i:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines i:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(34, 53, 61, 0.025) 79px 80px),
    linear-gradient(180deg, var(--cream) 0%, #ede7dc 100%);
}

.hero::after {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 0.9fr);
  align-items: center;
  gap: 78px;
}

.hero-grid > * {
  min-width: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

h1 {
  max-width: 720px;
  margin-bottom: 27px;
  font-size: clamp(54px, 6.2vw, 84px);
}

h1 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

h2 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(40px, 4.4vw, 64px);
}

h3 {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.13;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

.hero-review-proof {
  display: grid;
  width: fit-content;
  max-width: 100%;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  gap: 9px;
  margin: -8px 0 27px;
  padding: 10px 12px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  font-size: 11px;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.hero-review-proof:hover {
  background: rgba(255, 255, 255, 0.76);
  transform: translateY(-2px);
}

.hero-review-stars {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 1px;
}

.hero-review-proof strong {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
}

.hero-review-proof > span:not(.hero-review-stars) {
  color: var(--ink-soft);
  font-weight: 700;
}

.hero-review-proof b {
  margin-left: 5px;
  color: var(--orange-dark);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  color: white;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(167, 70, 34, 0.18);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.text-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
}

.quick-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 32px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
  list-style: none;
}

.quick-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.quick-trust svg {
  width: 17px;
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-width: 2;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-static-card {
  overflow: hidden;
  position: relative;
  background: var(--sage);
  border: 5px solid var(--forest);
  box-shadow: var(--shadow);
}

.hero-static-card img {
  width: 100%;
  height: clamp(360px, 36vw, 470px);
  object-fit: cover;
  object-position: center 42%;
}

.hero-project-caption {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 3px 18px;
  padding: 19px 21px;
  color: white;
  background: var(--forest);
}

.hero-project-caption span {
  grid-row: 1 / 3;
  padding-right: 17px;
  color: var(--gold);
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-project-caption strong {
  font-size: 14px;
}

.hero-project-caption small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
}

.hero-visual > .project-carousel {
  display: none;
}

.visual-frame {
  overflow: hidden;
  position: relative;
  background: var(--sage);
  border: 5px solid var(--forest);
  border-radius: 0;
  box-shadow: var(--shadow);
  transform: none;
}

.room-illustration {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.98);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 240ms ease;
}

.hero-photo-button {
  display: block;
  position: relative;
  width: 100%;
  height: clamp(360px, 36vw, 470px);
  overflow: hidden;
  padding: 0;
  background: #d7d4cc;
  border: 0;
  cursor: zoom-in;
  text-align: left;
}

.hero-photo-button:hover .hero-photo,
.hero-photo-button:focus-visible .hero-photo {
  transform: scale(1.018);
}

.hero-photo-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.photo-expand-cue {
  display: flex;
  position: absolute;
  left: 14px;
  bottom: 14px;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: white;
  background: rgba(19, 47, 41, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.photo-expand-cue svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
}

.project-carousel {
  isolation: isolate;
}

.project-photo-set,
.carousel-slide {
  position: relative;
}

.project-photo-set .project-photo {
  display: none;
}

.project-photo-set .project-photo.is-active {
  display: block;
  animation: carousel-fade 220ms ease;
}

.photo-set-controls {
  display: flex;
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  align-items: center;
  color: white;
  background: rgba(19, 47, 41, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.photo-set-count {
  min-width: 86px;
  padding: 0 10px;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.photo-set-count strong {
  color: var(--gold);
}

.photo-set-controls button {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  color: white;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.photo-set-controls button:hover,
.photo-set-controls button:focus-visible {
  color: var(--forest);
  background: var(--gold);
}

.photo-set-controls svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.photo-review-overlay {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  width: min(280px, calc(100% - 28px));
  padding: 13px 15px 14px;
  color: white;
  background: rgba(10, 31, 27, 0.84);
  border-left: 3px solid var(--gold);
  backdrop-filter: blur(5px);
}

.photo-review-overlay div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.photo-review-overlay div > span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 1px;
}

.photo-review-overlay small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.photo-review-overlay p {
  margin: 9px 0 0;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.28;
}

.photo-review-overlay q {
  quotes: "“" "”";
}

.photo-review-overlay cite {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--body);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.photo-review-overlay > a {
  display: inline-block;
  margin-top: 9px;
  color: var(--gold);
  border-bottom: 1px solid rgba(226, 180, 86, 0.6);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.photo-review-overlay > a:hover,
.photo-review-overlay > a:focus-visible {
  color: white;
  border-bottom-color: white;
}

.carousel-viewport {
  position: relative;
}

.carousel-slide {
  display: none;
}

.carousel-slide.is-active {
  display: block;
  animation: carousel-fade 240ms ease;
}

.carousel-controls {
  display: flex;
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 85px;
  align-items: center;
  gap: 9px;
  padding: 6px;
  background: rgba(19, 47, 41, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.carousel-arrow {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  color: var(--forest);
  background: var(--gold);
  border-color: var(--gold);
}

.carousel-arrow svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  background: rgba(255, 255, 255, 0.38);
  border: 0;
  cursor: pointer;
}

.carousel-dots button[aria-current="true"] {
  width: 18px;
  background: var(--gold);
}

@keyframes carousel-fade {
  from { opacity: 0.45; }
  to { opacity: 1; }
}

.visual-caption {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  color: white;
  background: var(--forest);
  line-height: 1.25;
}

.caption-number {
  align-self: stretch;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--gold);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.visual-caption div {
  display: grid;
  gap: 4px;
}

.visual-caption strong {
  font-size: 13px;
}

.visual-caption div span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.floating-note {
  display: none;
  position: absolute;
  align-items: center;
  gap: 11px;
  min-width: 170px;
  padding: 13px 15px;
  color: var(--forest);
  background: var(--paper);
  border: 1px solid rgba(23, 61, 53, 0.12);
  box-shadow: 0 18px 44px rgba(23, 37, 32, 0.15);
}

.floating-note > span:last-child {
  display: grid;
  line-height: 1.15;
}

.floating-note strong {
  font-size: 11px;
}

.floating-note small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 9px;
}

.note-top {
  top: -24px;
  right: -28px;
}

.note-bottom {
  bottom: 64px;
  left: -45px;
}

.note-icon {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.stars {
  color: var(--orange);
  font-size: 8px;
  letter-spacing: 1px;
}

.hero-trust {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  margin-top: 42px;
  padding: 22px 24px;
  background: #e3dccf;
  border-top: 4px solid var(--forest);
}

.hero-trust p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.trust-facts {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 12px;
}

.trust-facts span + span {
  position: relative;
}

.trust-facts span + span::before {
  position: absolute;
  top: 50%;
  left: -15px;
  width: 3px;
  height: 3px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.profile-links {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.profile-links a {
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.profile-links a:hover {
  color: var(--orange-dark);
}

.lightbox {
  width: min(92vw, 1100px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  color: white;
  background: #0b201c;
  border: 4px solid var(--forest);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.lightbox::backdrop {
  background: rgba(6, 18, 15, 0.82);
  backdrop-filter: blur(3px);
}

.lightbox figure {
  display: grid;
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: calc(92vh - 58px);
  object-fit: contain;
  background: #071510;
}

.lightbox figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
  padding: 17px 68px 16px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
}

.lightbox figcaption strong {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lightbox-arrow {
  display: grid;
  position: absolute;
  z-index: 3;
  top: calc(50% - 27px);
  width: 48px;
  height: 62px;
  padding: 0;
  place-items: center;
  color: white;
  background: rgba(19, 47, 41, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(5px);
}

.lightbox-arrow-previous {
  left: 12px;
}

.lightbox-arrow-next {
  right: 12px;
}

.lightbox-arrow svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  color: var(--forest);
  background: var(--gold);
}

.lightbox-close {
  display: grid;
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 9px;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: white;
  background: var(--orange);
  border: 0;
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--orange-dark);
}

body.lightbox-open {
  overflow: hidden;
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 56px;
}

.section-heading h2,
.section-heading .eyebrow {
  margin-bottom: 0;
}

.section-heading .eyebrow {
  margin-bottom: 22px;
}

.section-heading > p {
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 16px;
}

.services {
  background: var(--paper);
}

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

.service-card {
  display: flex;
  position: relative;
  min-height: 340px;
  padding: 34px 32px;
  flex-direction: column;
  background: #f5efe4;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  color: var(--ink);
  background: #f5efe4;
  box-shadow: 0 12px 28px rgba(28, 43, 49, 0.1);
  transform: translateY(-3px);
}

.service-index {
  position: absolute;
  top: 20px;
  right: 23px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card:hover .service-index,
.service-card:hover p {
  color: var(--ink-soft);
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 44px;
  padding: 8px;
  color: var(--orange);
  background: rgba(220, 95, 48, 0.09);
  border-radius: 2px;
}

.service-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3 {
  margin-bottom: 14px;
}

.service-card p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
  transition: color 180ms ease;
}

.service-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 0;
  padding: 24px 0 0;
  list-style: none;
}

.service-examples li {
  padding: 5px 8px;
  color: var(--forest);
  background: rgba(34, 53, 61, 0.07);
  border: 1px solid rgba(34, 53, 61, 0.12);
  font-size: 9px;
  font-weight: 750;
}

.service-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  padding: 18px 23px;
  background: var(--cream);
  border-left: 4px solid var(--orange);
}

.callout-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-size: 27px;
  font-weight: 350;
}

.service-callout strong {
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
}

.service-callout p {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.electrical-feature {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 42%),
    var(--forest-deep);
}

.electrical-feature::before {
  position: absolute;
  top: 0;
  right: 7%;
  width: 280px;
  height: 100%;
  background: repeating-linear-gradient(90deg, transparent 0 69px, rgba(255, 255, 255, 0.035) 69px 70px);
  content: "";
  pointer-events: none;
}

.electrical-feature .shell {
  position: relative;
}

.electrical-heading {
  align-items: center;
}

.electrical-heading h2 {
  color: white;
}

.electrical-heading-copy > p {
  color: rgba(255, 255, 255, 0.68);
}

.button-light {
  min-height: 48px;
  color: var(--forest-deep);
  background: var(--gold);
}

.button-light:hover {
  background: #e2be74;
}

.electrical-project {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  align-items: stretch;
  gap: 28px;
}

.electrical-photos {
  display: grid;
  min-height: 620px;
  grid-template-columns: 1fr 0.62fr;
  gap: 12px;
}

.electrical-photo {
  display: block;
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  color: white;
  background: var(--forest);
  border: 0;
  cursor: zoom-in;
}

.electrical-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.electrical-photo:hover img,
.electrical-photo:focus-visible img {
  transform: scale(1.025);
}

.electrical-photo-detail {
  align-self: end;
  height: 72%;
}

.electrical-photo > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  background: rgba(20, 38, 45, 0.88);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

.electrical-copy {
  display: flex;
  padding: 44px 40px;
  color: var(--ink);
  flex-direction: column;
  background: var(--paper);
  border-top: 6px solid var(--orange);
}

.feature-number {
  width: fit-content;
  margin-bottom: 27px;
  padding: 7px 9px;
  color: var(--orange-dark);
  background: rgba(184, 79, 36, 0.09);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.electrical-copy h3 {
  max-width: 410px;
  margin-bottom: 18px;
  font-size: clamp(29px, 3vw, 43px);
}

.electrical-copy > p {
  color: var(--ink-soft);
  font-size: 13px;
}

.electrical-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  margin: 16px 0 32px;
  padding: 0;
  list-style: none;
}

.electrical-services li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 750;
}

.electrical-copy blockquote {
  margin: auto 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.electrical-copy blockquote p {
  margin: 0 0 20px;
  color: var(--forest);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.32;
}

.electrical-copy blockquote footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 14px;
  color: var(--ink-soft);
  font-size: 9px;
}

.electrical-copy blockquote footer strong {
  color: var(--forest);
  font-size: 11px;
}

.electrical-copy blockquote footer span {
  grid-column: 1;
}

.electrical-copy blockquote footer a {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.before-after {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  margin-top: 28px;
  color: var(--ink);
  background: #e9e1d5;
}

.before-after-photo {
  display: block;
  position: relative;
  min-height: 470px;
  padding: 0;
  overflow: hidden;
  background: #d9d1c6;
  border: 0;
  cursor: zoom-in;
}

.before-after-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-photo .before-label,
.before-after-photo .after-label {
  position: absolute;
  top: 18px;
  padding: 7px 10px;
  color: white;
  background: rgba(20, 38, 45, 0.88);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.before-after-photo .before-label {
  left: 18px;
}

.before-after-photo .after-label {
  right: 18px;
  background: rgba(184, 79, 36, 0.92);
}

.before-after-photo .photo-expand-cue {
  right: 18px;
  bottom: 18px;
  left: auto;
}

.before-after-copy {
  display: flex;
  padding: 48px 44px;
  flex-direction: column;
  justify-content: center;
}

.before-after-copy h3 {
  max-width: 500px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 44px);
}

.before-after-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 13px;
}

.before-after-copy blockquote {
  margin: 18px 0 25px;
  padding: 20px 0 0;
  color: var(--forest);
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.before-after-review {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 9px;
}

.before-after-review strong {
  color: var(--forest);
  font-size: 11px;
}

.before-after-review a {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.more-transformations {
  margin-top: 70px;
  padding-top: 58px;
  border-top: 1px solid var(--white-line);
}

.more-transformations-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 52px;
  margin-bottom: 27px;
}

.more-transformations-heading h3 {
  max-width: 720px;
  color: white;
  font-size: clamp(35px, 4.2vw, 58px);
}

.more-transformations-heading > p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.transformation-track {
  display: grid;
  grid-auto-columns: minmax(390px, 43%);
  grid-auto-flow: column;
  gap: 18px;
  padding: 0 0 15px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.12);
  scrollbar-width: thin;
}

.transformation-card {
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  scroll-snap-align: start;
}

.transformation-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--forest-deep);
}

.transformation-pair button {
  display: block;
  position: relative;
  min-width: 0;
  height: 285px;
  padding: 0;
  overflow: hidden;
  background: #d9d1c6;
  border: 0;
  cursor: zoom-in;
}

.transformation-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.transformation-pair button:hover img,
.transformation-pair button:focus-visible img {
  transform: scale(1.025);
}

.transformation-pair button > span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 7px 9px;
  color: white;
  background: rgba(20, 38, 45, 0.9);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.transformation-pair button:last-child > span {
  background: rgba(184, 79, 36, 0.94);
}

.transformation-card-copy {
  min-height: 173px;
  padding: 24px 25px 27px;
}

.transformation-card-copy > span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.transformation-card-copy h4 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.13;
  text-transform: uppercase;
}

.transformation-card-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.transformation-scroll-cue {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.transformation-scroll-cue span {
  margin-right: 6px;
  color: var(--gold);
  font-size: 14px;
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 88px;
}

.about-photo {
  position: relative;
  min-height: 560px;
  margin: 0;
  padding: 0 58px 58px 0;
}

.about-photo > img:first-child {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 50% 46%;
  border: 5px solid var(--forest);
}

.about-photo-inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 190px;
  height: 145px;
  object-fit: cover;
  border: 5px solid var(--paper);
  box-shadow: var(--shadow);
}

.about-photo figcaption {
  position: absolute;
  left: 5px;
  bottom: 63px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 14px;
  color: white;
  background: var(--forest);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-photo figcaption span {
  color: var(--gold);
}

.about-copy h2 {
  max-width: 760px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--ink-soft);
}

.about-copy .about-lede {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-facts span {
  display: grid;
  gap: 8px;
  min-height: 110px;
  align-content: center;
  padding: 19px;
  color: var(--ink-soft);
  background: var(--paper);
  font-size: 11px;
  line-height: 1.4;
}

.about-facts strong {
  color: var(--orange-dark);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.work {
  color: white;
  background: var(--forest-deep);
}

.work .section-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.work-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.45fr);
  align-items: stretch;
  gap: 24px;
}

.work-carousel-mount {
  min-width: 0;
}

.work-carousel-mount .project-carousel {
  width: 100%;
  height: 100%;
}

.work-carousel-mount .carousel-viewport {
  min-height: 100%;
}

.work-index {
  display: flex;
  padding: 34px 30px;
  color: var(--ink);
  flex-direction: column;
  background: var(--paper);
  border-top: 6px solid var(--orange);
}

.work-index-kicker {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-index h3 {
  margin-bottom: 24px;
}

.work-index ol {
  display: grid;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.work-index li {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 750;
}

.work-index li:last-child {
  border-bottom: 1px solid var(--line);
}

.work-index li span {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
}

.work-source-links {
  display: grid;
  gap: 9px;
  margin-top: auto;
}

.work-source-links a {
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.work-source-links a:hover {
  color: var(--orange-dark);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.project-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  background: #f7f0e4;
}

.project-card-large {
  grid-row: span 2;
}

.project-art {
  overflow: hidden;
  position: relative;
  height: 285px;
  flex: 0 0 auto;
}

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

.project-card-large .project-art {
  height: auto;
  min-height: 560px;
  flex: 1 1 auto;
}

.project-card-large .project-art img {
  object-position: center 42%;
}

.project-art-wide img {
  object-position: center 38%;
}

.placeholder-label {
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 7px 10px;
  color: white;
  background: rgba(15, 43, 37, 0.82);
  border-radius: 2px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.slat-art {
  background: linear-gradient(145deg, #d8dfd4, #a8b8aa);
}

.slat-wall {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 57%;
  gap: 9px;
  padding: 0 9%;
  background: #263d37;
  transform: skewX(-4deg) translateX(6%);
}

.slat-wall i {
  display: block;
  flex: 1;
  background: #b9683c;
}

.art-tv {
  position: absolute;
  top: 23%;
  left: 11%;
  width: 48%;
  height: 32%;
  background: #172520;
  border: 10px solid #e8dfd1;
  box-shadow: 0 20px 45px rgba(23, 37, 32, 0.25);
  transform: rotate(-1deg);
}

.art-tv::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 3px;
  background: rgba(255, 255, 255, 0.16);
  content: "";
  transform: translate(-50%, -50%);
}

.fan-art {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255, 250, 240, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.28) 1px, transparent 1px),
    #b7c8b8;
  background-size: 38px 38px;
}

.fan {
  position: relative;
  width: 34px;
  height: 34px;
  background: var(--orange);
  border: 8px solid var(--forest);
  border-radius: 50%;
  box-shadow: 0 17px 30px rgba(23, 61, 53, 0.22);
}

.fan i {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 108px;
  height: 25px;
  background: var(--forest);
  border-radius: 60% 8px 8px 60%;
  transform-origin: 8px 5px;
}

.fan i:nth-child(2) {
  transform: rotate(120deg);
}

.fan i:nth-child(3) {
  transform: rotate(240deg);
}

.gallery-art {
  background: #d9cbb8;
}

.frames {
  display: grid;
  position: absolute;
  inset: 18% 16%;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 13px;
}

.frames i {
  border: 9px solid var(--paper);
  box-shadow: 0 13px 26px rgba(23, 37, 32, 0.13);
}

.frames i:nth-child(1) {
  background: #d75f30;
}

.frames i:nth-child(2) {
  background: #173d35;
}

.frames i:nth-child(3) {
  background: #f1c568;
}

.frames i:nth-child(4) {
  background: #94ad9a;
}

.project-copy {
  padding: 25px 27px 28px;
  color: var(--ink);
}

.project-copy > span {
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-copy h3 {
  max-width: 560px;
  margin: 8px 0 12px;
}

.project-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.proof {
  padding-bottom: 0;
  background: var(--cream);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 84px;
}

.proof-intro {
  position: static;
  align-self: start;
}

.proof-intro h2 {
  font-size: clamp(44px, 4.3vw, 66px);
}

.proof-intro > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--ink-soft);
}

.review-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-source-links .button {
  padding-inline: 17px;
}

.button-quiet {
  color: var(--forest);
  border-color: var(--forest);
}

.button-quiet:hover {
  color: white;
  background: var(--forest);
}

.proof-cards {
  display: grid;
  gap: 17px;
}

.proof-card {
  display: flex;
  position: relative;
  min-height: 220px;
  padding: 30px 34px;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-stars {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 2px;
}

.proof-card blockquote,
.proof-card .review-quote-summary {
  max-width: 590px;
  margin: 20px 0 10px;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(23px, 2.1vw, 31px);
  font-weight: 750;
  line-height: 1.17;
}

.proof-card .review-context {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.review-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-person {
  display: grid;
  gap: 3px;
}

.review-person strong {
  color: var(--forest);
  font-size: 12px;
}

.review-person small {
  color: var(--ink-soft);
  font-size: 9px;
}

.review-footer a {
  color: var(--orange-dark);
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  color: white;
  background: var(--forest);
}

.stats-row > div {
  display: grid;
  min-height: 150px;
  align-content: center;
  justify-items: start;
  padding: 24px;
  border-right: 1px solid var(--white-line);
}

.stats-row strong {
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stats-row span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stats-row > p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 8px 15px;
  color: rgba(255, 255, 255, 0.55);
  background: var(--forest-deep);
  font-size: 8px;
  text-align: center;
  text-transform: uppercase;
}

.service-area {
  background: var(--paper);
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 90px;
}

.area-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
}

.area-card {
  padding: 36px 38px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 7px solid var(--orange);
  box-shadow: var(--shadow);
}

.draft-badge,
.answer-status {
  display: inline-flex;
  padding: 5px 8px;
  color: var(--orange-dark);
  background: rgba(200, 92, 45, 0.1);
  border: 1px solid rgba(200, 92, 45, 0.22);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.area-card > strong {
  display: block;
  margin: 20px 0 24px;
  font-family: var(--display);
  font-size: 29px;
}

.area-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-card li {
  display: grid;
  grid-template-columns: minmax(135px, 0.55fr) 1fr;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.area-card li:last-child {
  border-bottom: 1px solid var(--line);
}

.area-card li span {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.area-card li em {
  color: var(--ink-soft);
  font-size: 11px;
  font-style: normal;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 90px;
}

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

.faq-intro > p:not(.eyebrow) {
  max-width: 490px;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 4px solid var(--forest);
}

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

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 24px;
  color: var(--forest);
  cursor: pointer;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  color: white;
  background: var(--forest);
  content: "+";
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  color: var(--forest);
  background: var(--gold);
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 74px 24px 24px;
  color: var(--ink-soft);
  font-size: 13px;
}

.answer-status {
  margin-right: 7px;
  vertical-align: 1px;
}

.text-contact {
  padding-bottom: 98px;
  color: white;
  background:
    radial-gradient(circle at 8% 85%, rgba(241, 197, 104, 0.13), transparent 25%),
    var(--forest-deep);
}

.text-contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 80px;
}

.text-contact-copy h2 {
  font-size: clamp(48px, 5vw, 74px);
}

.text-contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
}

.text-contact-copy .text-contact-reassurance {
  margin-top: 30px;
  padding-top: 18px;
  color: var(--gold);
  border-top: 1px solid var(--white-line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-contact-card {
  padding: 38px 40px 34px;
  color: var(--ink);
  background: var(--paper);
  border-top: 7px solid var(--orange);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.text-contact-kicker {
  margin: 0 0 23px;
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-message-list {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.text-message-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 58px;
  gap: 15px;
  border-top: 1px solid var(--line);
}

.text-message-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.text-message-list span {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
}

.text-message-list strong {
  font-size: 14px;
}

.button-text {
  width: 100%;
  min-height: 56px;
  justify-content: center;
  color: white;
  background: var(--orange);
  border: 0;
}

.button-text:hover {
  background: var(--orange-dark);
}

.text-number-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 9px;
  text-align: center;
}

.site-footer {
  padding: 58px 0 20px;
  color: white;
  background: #0b201c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding-bottom: 47px;
}

.brand-footer .brand-location,
.footer-main > p {
  color: rgba(255, 255, 255, 0.76);
}

.footer-main > p {
  margin: 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 650;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-action {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 380ms ease, transform 380ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 40px, 920px);
  }

  .primary-nav {
    gap: 19px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 45px;
  }

  .floating-note {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .trust-facts {
    gap: 17px;
  }

  .trust-facts span + span::before {
    left: -10px;
  }

  .electrical-project {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.86fr);
  }

  .electrical-photos {
    min-height: 560px;
  }

  .electrical-copy {
    padding: 36px 30px;
  }

  .before-after-copy {
    padding: 40px 34px;
  }

  .about-grid,
  .work-showcase,
  .area-grid,
  .faq-grid,
  .proof-grid,
  .text-contact-shell {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 86px;
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-button {
    display: flex;
  }

  .primary-nav {
    display: grid;
    visibility: hidden;
    position: absolute;
    z-index: 2;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    align-content: start;
    gap: 0;
    padding: 42px 28px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #f2eee5;
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 18px 3px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(20px, 6vw, 25px);
    text-transform: uppercase;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .hero-copy {
    max-width: 670px;
  }

  h1 {
    font-size: clamp(57px, 13vw, 90px);
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
  }

  .hero-visual {
    width: min(600px, 90%);
    margin-inline: auto;
  }

  .hero-trust {
    grid-template-columns: 1fr auto;
    margin-top: 38px;
  }

  .hero-trust > p {
    display: none;
  }

  .trust-facts {
    justify-content: flex-start;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 590px;
  }

  .electrical-project,
  .before-after {
    grid-template-columns: 1fr;
  }

  .electrical-photos {
    min-height: 620px;
  }

  .electrical-copy {
    min-height: 520px;
  }

  .before-after-photo {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

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

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

  .project-card-large {
    grid-row: auto;
  }

  .project-card-large .project-art {
    min-height: 470px;
  }

  .about-grid,
  .work-showcase,
  .area-grid,
  .faq-grid,
  .proof-grid,
  .text-contact-shell {
    grid-template-columns: 1fr;
  }

  .about-photo {
    width: min(600px, 100%);
  }

  .work-index {
    min-height: 0;
  }

  .work-index ol {
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
  }

  .faq-intro {
    position: static;
  }

  .proof-intro {
    position: static;
  }

  .proof-cards {
    grid-template-columns: 1fr 1fr;
  }

  .proof-card:last-child {
    grid-column: 1 / -1;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row > div:nth-child(2) {
    border-right: 0;
  }

  .stats-row > div {
    border-bottom: 1px solid var(--white-line);
  }

  .text-contact-copy {
    max-width: 620px;
  }

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

  .footer-main > p {
    display: none;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    padding-bottom: 66px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-location {
    font-size: 8px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .menu-button-label {
    display: none;
  }

  .primary-nav {
    top: 100%;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-grid {
    gap: 56px;
  }

  h1 {
    font-size: clamp(52px, 16vw, 74px);
  }

  h1 em span {
    display: inline;
  }

  h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-review-proof {
    width: 100%;
    grid-template-columns: auto auto 1fr;
    margin-top: -4px;
  }

  .hero-review-proof b {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 7px;
    border-top: 1px solid var(--line);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-primary {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .quick-trust {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-photo-button {
    height: 330px;
  }

  .hero-static-card img {
    height: 330px;
  }

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

  .hero-project-caption span {
    grid-row: auto;
    padding: 0 0 6px;
    border-right: 0;
  }

  .visual-frame {
    border-width: 7px;
    transform: none;
  }

  .carousel-controls {
    right: 9px;
    bottom: 83px;
  }

  .photo-set-controls {
    top: 9px;
    right: 9px;
    bottom: auto;
  }

  .has-project-review .photo-set-controls {
    top: 132px;
  }

  .photo-review-overlay {
    top: 9px;
    left: 9px;
    width: calc(100% - 18px);
    padding: 10px 12px;
  }

  .photo-review-overlay div {
    justify-content: flex-start;
  }

  .photo-review-overlay p {
    max-width: 330px;
    margin-top: 6px;
    font-size: 13px;
  }

  .photo-review-overlay > a {
    margin-top: 6px;
  }

  .lightbox {
    width: 96vw;
  }

  .lightbox-arrow {
    width: 42px;
    height: 54px;
  }

  .lightbox-arrow-previous {
    left: 6px;
  }

  .lightbox-arrow-next {
    right: 6px;
  }

  .lightbox figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-right: 64px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }

  .trust-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 15px;
  }

  .trust-facts span + span::before {
    display: none;
  }

  .profile-links {
    justify-self: start;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

  .electrical-heading-copy .button {
    width: 100%;
  }

  .electrical-photos {
    min-height: 430px;
    grid-template-columns: 1.12fr 0.88fr;
  }

  .electrical-photo-detail {
    height: 78%;
  }

  .electrical-copy,
  .before-after-copy {
    min-height: 0;
    padding: 31px 24px;
  }

  .electrical-services {
    grid-template-columns: 1fr;
  }

  .electrical-copy blockquote footer {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .electrical-copy blockquote footer a {
    grid-column: 1;
    grid-row: auto;
    margin-top: 8px;
  }

  .before-after-copy blockquote {
    font-size: 18px;
  }

  .before-after-review {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .more-transformations {
    margin-top: 52px;
    padding-top: 45px;
  }

  .more-transformations-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .more-transformations-heading > p {
    max-width: 600px;
  }

  .transformation-track {
    grid-auto-columns: minmax(330px, 76vw);
  }

  .transformation-pair button {
    height: 260px;
  }

  .service-card {
    min-height: 255px;
  }

  .service-icon {
    margin-bottom: 31px;
  }

  .about-photo {
    min-height: 430px;
    padding: 0 34px 38px 0;
  }

  .about-photo > img:first-child {
    height: 430px;
  }

  .about-photo-inset {
    width: 140px;
    height: 108px;
  }

  .about-photo figcaption {
    bottom: 43px;
  }

  .about-facts,
  .work-index ol {
    grid-template-columns: 1fr;
  }

  .area-card {
    padding: 28px 22px;
  }

  .area-card li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .faq-list summary {
    min-height: 68px;
    padding: 17px 16px;
    font-size: 16px;
  }

  .faq-list details p {
    padding: 0 52px 22px 16px;
  }

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

  .service-callout .text-link {
    grid-column: 2;
    justify-self: start;
  }

  .project-card-large .project-art,
  .project-art {
    min-height: 310px;
  }

  .project-copy {
    padding: 21px 20px 24px;
  }

  .proof-cards {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .proof-card:last-child {
    grid-column: auto;
  }

  .proof-card {
    min-height: 0;
    padding: 26px 22px 24px;
  }

  .stats-row {
    width: 100%;
  }

  .stats-row > div {
    min-height: 125px;
  }

  .text-contact {
    padding-bottom: 72px;
  }

  .text-contact-shell {
    gap: 32px;
  }

  .text-contact-card {
    padding: 28px 22px 24px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .mobile-action {
    display: block;
    position: fixed;
    z-index: 19;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 8px 12px;
    background: rgba(15, 43, 37, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
  }

  body.menu-open .mobile-action {
    display: none;
  }

  .mobile-action a {
    display: grid;
    min-height: 49px;
    place-items: center;
    color: white;
    background: var(--orange);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
