:root {
  --black: #080b10;
  --charcoal: #111923;
  --ink: #12171d;
  --hamlet-blue: #010081;
  --hamlet-blue-deep: #00004d;
  --hamlet-blue-vivid: #1514a0;
  --hamlet-blue-soft: #e2e4ff;
  --hamlet-blue-line: rgba(1, 0, 129, 0.16);
  --hamlet-blue-wash: rgba(226, 228, 255, 0.28);
  --wood-tan: #c79a5b;
  --wood-deep: #8b6338;
  --field-green: #5f7348;
  --white: #ffffff;
  --paper: #fbf7ef;
  --paper-warm: #f4eadc;
  --muted: #a8b0b5;
  --muted-dark: #667179;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(12, 17, 23, 0.13);
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --box-radius: 8px;
  --box-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 247, 0.94));
  --box-border: rgba(1, 0, 129, 0.105);
  --box-border-strong: rgba(1, 0, 129, 0.2);
  --box-shadow-soft: 0 16px 34px rgba(62, 42, 25, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  --box-shadow: 0 22px 52px rgba(62, 42, 25, 0.105), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --box-shadow-hover: 0 28px 68px rgba(62, 42, 25, 0.145), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  --font-body: "Source Sans 3", Arial, sans-serif;
  --font-display: "Source Sans 3", Arial, sans-serif;
  --font-serif: "Source Sans 3", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  position: fixed;
  inset: 0;
  z-index: 24;
  background: rgba(7, 9, 12, 0.34);
  backdrop-filter: blur(6px);
  content: "";
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

section[id],
footer[id] {
  scroll-margin-top: 112px;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  min-height: 96px;
  color: var(--white);
  background: transparent;
  border-bottom: 0;
  transition: min-height 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.56) 18%, rgba(255, 255, 255, 0.22) 42%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, rgba(1, 0, 129, 0.14), rgba(255, 255, 255, 0.08) 56%, rgba(255, 255, 255, 0));
  pointer-events: none;
  content: "";
  transition: opacity 180ms ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(34px, 5vw, 78px);
  width: min(1420px, calc(100% - clamp(46px, 9vw, 150px)));
  min-height: 96px;
  margin: 0 auto;
  padding: 10px 0;
  transition: min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open,
.solid-header .site-header {
  min-height: 88px;
  color: var(--ink);
  background: #ffffff;
  border-bottom: 1px solid rgba(12, 17, 23, 0.1);
  box-shadow: 0 18px 44px rgba(7, 9, 12, 0.12);
}

.site-header.is-scrolled .header-inner,
.site-header.nav-open .header-inner,
.solid-header .header-inner {
  min-height: 88px;
}

.site-header.is-scrolled::before,
.site-header.nav-open::before,
.solid-header .site-header::before {
  opacity: 0;
}

.site-header.is-scrolled .site-nav,
.site-header.nav-open .site-nav,
.solid-header .site-nav {
  color: rgba(12, 17, 23, 0.84);
  text-shadow: none;
}

.site-header.is-scrolled .nav-phone,
.site-header.nav-open .nav-phone,
.solid-header .nav-phone {
  color: var(--hamlet-blue);
}

.site-header.is-scrolled .nav-actions::before,
.site-header.nav-open .nav-actions::before,
.solid-header .nav-actions::before {
  background: rgba(12, 17, 23, 0.16);
}

.site-header.is-scrolled .nav-cta,
.site-header.nav-open .nav-cta,
.solid-header .nav-cta {
  color: var(--white);
  background: var(--hamlet-blue);
  border-color: var(--hamlet-blue);
  box-shadow: 0 12px 26px rgba(1, 0, 129, 0.24);
  backdrop-filter: none;
}

.site-header.is-scrolled .menu-toggle,
.site-header.nav-open .menu-toggle,
.solid-header .menu-toggle {
  color: var(--ink);
  background: rgba(12, 17, 23, 0.04);
  border-color: rgba(12, 17, 23, 0.16);
  backdrop-filter: none;
}

.solid-header main {
  padding-top: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo-shell {
  display: grid;
  width: 148px;
  height: 66px;
  place-items: center;
}

.brand-logo-shell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.24));
}

.site-nav {
  z-index: 32;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 48px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: clamp(20px, 2.4vw, 34px);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--hamlet-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
  content: "";
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

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

.nav-actions {
  gap: 14px;
}

.nav-actions::before {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(180deg, var(--hamlet-blue-vivid), var(--hamlet-blue));
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 34px rgba(1, 0, 129, 0.24);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--hamlet-blue-vivid), var(--hamlet-blue-deep));
  box-shadow: 0 18px 38px rgba(1, 0, 129, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--hamlet-blue), #000044);
  box-shadow: 0 16px 34px rgba(1, 0, 129, 0.3);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.68);
}

.button-secondary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  position: relative;
  z-index: 34;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 84vh;
  padding: 148px clamp(22px, 5vw, 76px) 44px;
  overflow: hidden;
}

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

.hero-media {
  z-index: -3;
  overflow: hidden;
  background: #f7f1e7;
}

.hero-photo {
  opacity: 0;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(1.16) contrast(1.04) brightness(1.08);
  transform: translateZ(0);
  transition: opacity 1400ms ease;
  will-change: opacity, transform;
}

.hero-photo.is-active {
  opacity: 1;
  animation: heroKenBurns 12000ms ease-out forwards;
}

.hero-photo:nth-child(1) {
  object-position: center 54%;
}

.hero-photo:nth-child(2) {
  object-position: center 50%;
}

.hero-photo:nth-child(3) {
  object-position: center 54%;
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(ellipse at center, rgba(7, 9, 12, 0.36) 0%, rgba(7, 9, 12, 0.16) 42%, rgba(7, 9, 12, 0.02) 66%),
    linear-gradient(180deg, rgba(7, 9, 12, 0.42), rgba(7, 9, 12, 0.08) 42%, rgba(7, 9, 12, 0.58)),
    linear-gradient(90deg, rgba(7, 9, 12, 0.36), rgba(7, 9, 12, 0.05) 55%, rgba(7, 9, 12, 0.2)),
    linear-gradient(180deg, rgba(1, 0, 129, 0.14), rgba(199, 154, 91, 0.1) 64%, rgba(95, 115, 72, 0.1));
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.1) translate3d(-1.2%, -0.8%, 0);
  }

  100% {
    transform: scale(1.06) translate3d(1.1%, 0.7%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo {
    transition: none;
    animation: none;
  }

  .hero-photo.is-active {
    opacity: 0.88;
    transform: none;
  }
}

.hero-inner {
  display: flex;
  min-height: calc(84vh - 192px);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(980px, 100%);
  margin-top: 36px;
  text-shadow: 0 6px 34px rgba(0, 0, 0, 0.58);
}

.hero-content::before {
  position: absolute;
  inset: -34px -52px -40px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(4, 6, 10, 0.3), rgba(4, 6, 10, 0.12) 52%, rgba(4, 6, 10, 0) 76%);
  content: "";
  pointer-events: none;
}

.hero-kicker {
  margin: 0 0 16px;
  color: #f0c47f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  width: min(860px, 100%);
  margin-bottom: 24px;
  color: var(--white);
  font-size: 5.05rem;
}

.hero-content h1 {
  width: min(1000px, 100%);
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(3.65rem, 6.05vw, 5.55rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  text-shadow:
    0 2px 3px rgba(0, 0, 0, 0.34),
    0 12px 34px rgba(0, 0, 0, 0.58);
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-content h1 span + span {
  margin-top: 6px;
}

h2 {
  margin-bottom: 22px;
  font-size: 3.7rem;
}

h3 {
  margin-bottom: 9px;
  color: inherit;
  font-family: var(--font-serif);
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.25;
}

.hero-subline {
  width: min(620px, 100%);
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.62;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.68);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 7px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.32);
}

.hero-actions .button {
  min-height: 56px;
  padding: 0 30px;
  border-radius: 2px;
  font-size: 0.88rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  padding: 22px clamp(22px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(0, 0, 77, 0.96), rgba(1, 0, 129, 0.92) 42%, rgba(0, 0, 77, 0.98)),
    var(--hamlet-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(0, 0, 77, 0.58);
}

.trust-strip::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 44px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 196, 127, 0.94), rgba(255, 255, 255, 0.72), transparent);
  content: "";
  transform: translateX(-50%);
}

.trust-strip-inner {
  display: grid;
  gap: 14px;
  justify-items: center;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.trust-intro {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--font-serif);
  font-size: 1.36rem;
  font-weight: 500;
  line-height: 1.5;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
}

.trust-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.about-section {
  position: relative;
  padding: clamp(58px, 6.2vw, 88px) clamp(22px, 5vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--hamlet-blue-wash), transparent 26%, transparent 74%, rgba(226, 228, 255, 0.22)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 247, 239, 0.96)),
    var(--paper);
}

.about-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1240px, calc(100% - 44px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1, 0, 129, 0.2), rgba(199, 154, 91, 0.42), transparent);
  content: "";
  transform: translateX(-50%);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  width: min(1400px, 100%);
  margin: 0 auto;
}

.about-copy {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(12px, 1.8vw, 20px);
  align-items: start;
  text-align: center;
}

.about-copy .eyebrow {
  margin-bottom: 0;
  color: var(--hamlet-blue);
}

.about-copy h2 {
  width: min(1120px, 100%);
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.44rem, 3.35vw, 3.68rem);
  font-weight: 900;
  line-height: 1.02;
  text-wrap: balance;
}

.about-copy > p {
  width: min(850px, 100%);
  margin: 0;
  color: rgba(18, 23, 29, 0.72);
  font-size: 1.06rem;
  line-height: 1.64;
}

.about-copy .about-support {
  width: min(730px, 100%);
  color: rgba(18, 23, 29, 0.62);
  font-size: 1.02rem;
  line-height: 1.58;
}

.about-preview-link {
  justify-self: center;
  margin-top: 8px;
}

.build-types-section {
  position: relative;
  padding: clamp(58px, 6vw, 86px) clamp(22px, 5vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(1, 0, 129, 0.052), transparent 22%, transparent 78%, rgba(1, 0, 129, 0.044)),
    linear-gradient(180deg, #ffffff 0%, #fffaf2 44%, #fbf7ef 100%);
}

.build-types-section::before,
.build-types-section::after {
  position: absolute;
  left: 50%;
  width: min(1240px, calc(100% - 44px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1, 0, 129, 0.18), rgba(199, 154, 91, 0.34), transparent);
  content: "";
  transform: translateX(-50%);
}

.build-types-section::before {
  top: 0;
}

.build-types-section::after {
  bottom: 0;
}

.build-types-inner {
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
  width: min(1320px, 100%);
  margin: 0 auto;
}

.build-types-section .build-types-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(1080px, 100%);
  margin: 0 auto;
  text-align: center;
}

.build-types-section .build-types-heading .eyebrow {
  margin-bottom: 0;
  color: var(--hamlet-blue);
}

.build-types-section .build-types-heading h2 {
  width: min(980px, 100%);
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  text-wrap: balance;
}

.build-types-section .build-types-heading p:not(.eyebrow) {
  width: min(760px, 100%);
  margin: 0;
  color: rgba(18, 23, 29, 0.66);
  font-size: 1.1rem;
  line-height: 1.64;
}

.build-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.build-type-card {
  position: relative;
  display: grid;
  gap: 13px;
  min-height: 196px;
  align-content: start;
  padding: 28px 26px 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 252, 247, 0.76));
  border: 1px solid rgba(1, 0, 129, 0.095);
  border-radius: 6px;
  box-shadow: 0 20px 46px rgba(84, 54, 26, 0.075);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.build-type-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--hamlet-blue), rgba(199, 154, 91, 0.78));
  content: "";
}

.build-type-card:hover {
  border-color: rgba(1, 0, 129, 0.2);
  box-shadow: 0 26px 58px rgba(84, 54, 26, 0.13);
  transform: translateY(-3px);
}

.build-type-card span {
  color: var(--hamlet-blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.build-type-card h3 {
  width: min(350px, 100%);
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.78rem, 2.18vw, 2.22rem);
  font-weight: 600;
  line-height: 1.02;
  text-wrap: balance;
}

.build-type-card p {
  width: min(360px, 100%);
  margin: 0;
  color: rgba(18, 23, 29, 0.62);
  font-size: 0.98rem;
  line-height: 1.56;
}

.build-type-photo-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
  width: min(1200px, 100%);
  margin: 4px auto 2px;
}

.build-type-photo {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(1, 0, 129, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(84, 54, 26, 0.14);
}

.build-type-photo-large {
  min-height: 270px;
}

.build-type-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.012);
}

.build-type-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 56%;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0), rgba(7, 9, 12, 0.74));
  content: "";
}

.build-type-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.build-type-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.build-type-feature-photo {
  position: relative;
  min-height: clamp(360px, 30vw, 500px);
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(1, 0, 129, 0.12);
  border-radius: 8px;
  box-shadow: 0 26px 68px rgba(84, 54, 26, 0.15);
}

.build-type-feature-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.build-type-feature-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0), rgba(7, 9, 12, 0.76));
  content: "";
}

.build-type-feature-photo figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
  width: min(520px, calc(100% - 44px));
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.38;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.46);
}

.build-type-list-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.build-type-list-panel .eyebrow {
  margin: 0;
  color: var(--hamlet-blue);
}

.build-type-list {
  display: grid;
  border-top: 1px solid rgba(1, 0, 129, 0.14);
}

.build-type-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(1, 0, 129, 0.12);
}

.build-type-list span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--hamlet-blue);
  background: rgba(226, 228, 255, 0.48);
  border: 1px solid rgba(1, 0, 129, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
}

.build-type-list h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: clamp(1.24rem, 1.6vw, 1.56rem);
  font-weight: 900;
  line-height: 1.12;
}

.build-type-list p {
  width: min(470px, 100%);
  margin: 0;
  color: rgba(18, 23, 29, 0.64);
  font-size: 0.98rem;
  line-height: 1.5;
}

.build-service-strip {
  display: grid;
  grid-template-columns: auto repeat(4, minmax(0, 1fr));
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 10px;
  background:
    linear-gradient(90deg, rgba(1, 0, 129, 0.075), rgba(255, 255, 255, 0.54), rgba(199, 154, 91, 0.08));
  border: 1px solid rgba(1, 0, 129, 0.12);
  border-radius: 6px;
}

.build-service-strip strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--hamlet-blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.build-service-strip span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: rgba(18, 23, 29, 0.76);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(1, 0, 129, 0.09);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.build-next-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(14px, 2vw, 22px);
  align-items: center;
  justify-items: stretch;
  padding: clamp(15px, 1.8vw, 20px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(1, 0, 129, 0.92), rgba(0, 0, 78, 0.92)),
    var(--hamlet-blue);
  border: 1px solid rgba(226, 228, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(1, 0, 129, 0.18);
  text-align: left;
}

.build-next-step h3 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: clamp(1.18rem, 1.42vw, 1.42rem);
  line-height: 1.08;
  text-wrap: balance;
}

.build-next-step p {
  width: min(560px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.42;
}

.build-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.build-next-actions .button {
  min-width: 128px;
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.72rem;
}

.build-next-actions .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.build-next-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.subpage-hero.about-page-hero {
  min-height: 430px;
  align-items: center;
  padding: 118px clamp(22px, 5vw, 76px) 46px;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.18), rgba(7, 9, 12, 0.64)),
    linear-gradient(90deg, rgba(1, 0, 129, 0.28), rgba(7, 9, 12, 0.05) 58%),
    url("assets/black-barndominium-aerial.jpg") center 48% / cover;
}

.subpage-hero.about-page-hero div {
  width: min(1060px, 100%);
}

.subpage-hero.about-page-hero h1 {
  width: min(1080px, 100%);
  font-size: clamp(3.15rem, 5.5vw, 4.85rem);
  letter-spacing: 0;
  line-height: 0.98;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.48);
}

.subpage-hero.about-page-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  font-weight: 500;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.5);
}

.about-story-section,
.about-service-section,
.about-craft-section {
  padding: clamp(66px, 8vw, 104px) clamp(22px, 5vw, 76px);
}

.about-story-section {
  background:
    linear-gradient(90deg, rgba(1, 0, 129, 0.04), transparent 28%, transparent 72%, rgba(1, 0, 129, 0.035)),
    linear-gradient(180deg, #fffdf8 0%, #fbf7ef 100%);
}

.about-story-inner,
.about-craft-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.about-story-copy {
  display: grid;
  gap: 16px;
}

.about-story-copy h2,
.about-craft-copy h2 {
  width: min(620px, 100%);
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.03;
  text-wrap: balance;
}

.about-story-copy p,
.about-craft-list p {
  margin: 0;
  color: rgba(18, 23, 29, 0.68);
  font-size: 1.04rem;
  line-height: 1.64;
}

.about-story-photos {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 12px;
}

.about-story-single-photo,
.about-story-photos figure,
.about-craft-image {
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(1, 0, 129, 0.1);
  border-radius: 8px;
  box-shadow: 0 26px 72px rgba(84, 54, 26, 0.14);
}

.about-story-single-photo {
  min-height: clamp(360px, 38vw, 520px);
}

.about-story-photos figure {
  min-height: 235px;
}

.about-story-photo-large {
  grid-row: span 2;
  min-height: 486px;
}

.about-story-single-photo img,
.about-story-photos img,
.about-craft-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-service-section {
  background:
    linear-gradient(180deg, rgba(226, 228, 255, 0.28), rgba(255, 255, 255, 0) 32%),
    linear-gradient(90deg, rgba(1, 0, 129, 0.035), transparent 26%, transparent 74%, rgba(1, 0, 129, 0.03)),
    #ffffff;
}

.about-service-inner {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  width: min(1080px, 100%);
  margin: 0 auto;
}

.about-service-section .about-service-heading {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  text-align: center;
}

.about-service-section .about-service-heading .eyebrow {
  color: rgba(1, 0, 129, 0.62);
}

.about-service-section .about-service-heading h2 {
  width: min(760px, 100%);
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.08rem, 3.25vw, 3.15rem);
  line-height: 1.08;
  text-wrap: balance;
}

.about-service-section .about-service-heading p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 0;
  color: rgba(18, 23, 29, 0.66);
  font-size: 1.06rem;
  line-height: 1.62;
}

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

.about-service-grid article,
.about-craft-list article {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.92));
  border: 1px solid rgba(1, 0, 129, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(84, 54, 26, 0.1);
}

.about-service-grid article {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 190px;
  padding: 28px 24px 26px;
  text-align: center;
}

.about-service-grid article::before,
.about-craft-list article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--hamlet-blue), rgba(199, 154, 91, 0.82));
  content: "";
}

.about-service-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 0 13px;
  color: var(--hamlet-blue);
  background: rgba(1, 0, 129, 0.06);
  border: 1px solid rgba(1, 0, 129, 0.1);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-craft-list span {
  display: block;
  margin-bottom: 14px;
  color: var(--hamlet-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-service-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.36rem;
  line-height: 1.1;
  text-wrap: balance;
}

.about-craft-list h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.42rem;
  line-height: 1.1;
}

.about-service-grid p {
  width: min(260px, 100%);
  margin: 0;
  color: rgba(18, 23, 29, 0.64);
  font-size: 0.98rem;
  line-height: 1.52;
  text-wrap: pretty;
}

.about-craft-section {
  background:
    linear-gradient(180deg, #fffaf2 0%, #fbf7ef 100%);
}

.about-craft-inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.about-craft-image {
  height: clamp(420px, 45vw, 620px);
}

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

.about-craft-list {
  display: grid;
  gap: 12px;
}

.about-craft-list article {
  padding: 24px 24px 22px;
}

.seo-answer-section {
  position: relative;
  padding: clamp(56px, 6vw, 78px) clamp(22px, 5vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(1, 0, 129, 0.035), transparent 30%, transparent 70%, rgba(1, 0, 129, 0.025)),
    linear-gradient(180deg, #fffdf8 0%, #faf4eb 100%);
}

.seo-answer-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1240px, calc(100% - 44px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1, 0, 129, 0.2), rgba(199, 154, 91, 0.4), transparent);
  content: "";
  transform: translateX(-50%);
}

.seo-answer-inner {
  display: grid;
  gap: clamp(16px, 2.2vw, 26px);
  width: min(1320px, 100%);
  margin: 0 auto;
}

.seo-answer-section .seo-answer-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(1060px, 100%);
  margin: 0 auto;
  text-align: center;
}

.seo-answer-section .seo-answer-heading .eyebrow {
  margin-bottom: 0;
  color: var(--hamlet-blue);
}

.seo-answer-section .seo-answer-heading h2 {
  width: min(860px, 100%);
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.32rem, 3.25vw, 3.4rem);
  font-weight: 900;
  line-height: 1.06;
  text-wrap: balance;
}

.seo-answer-section .seo-answer-heading p:not(.eyebrow) {
  width: min(760px, 100%);
  margin: 0;
  color: rgba(18, 23, 29, 0.66);
  font-size: 1.08rem;
  line-height: 1.6;
}

.seo-answer-grid,
.seo-faq-grid {
  display: grid;
  gap: clamp(14px, 1.7vw, 22px);
}

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

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

.seo-answer-grid article,
.seo-faq-grid article {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 198px;
  padding: 24px 22px 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(1, 0, 129, 0.1);
  border-radius: 6px;
  box-shadow: 0 14px 32px rgba(84, 54, 26, 0.06);
}

.seo-answer-grid article::before,
.seo-faq-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--hamlet-blue), rgba(199, 154, 91, 0.74));
  content: "";
}

.seo-answer-grid span {
  color: var(--hamlet-blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.seo-answer-grid h3,
.seo-faq-grid h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.58rem, 1.9vw, 2.02rem);
  font-weight: 600;
  line-height: 1.04;
}

.testimonial-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 252, 247, 0.82));
}

.testimonial-line {
  color: rgba(18, 23, 29, 0.82) !important;
  font-size: 1.04rem !important;
  font-weight: 800;
  line-height: 1.34 !important;
}

.local-trust-section {
  padding: clamp(58px, 6.2vw, 84px) clamp(22px, 5vw, 76px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(1, 0, 129, 0.22), transparent 28%, rgba(199, 154, 91, 0.08)),
    linear-gradient(180deg, #101720 0%, #07090c 100%);
}

.local-trust-section::before {
  background: linear-gradient(90deg, transparent, rgba(226, 228, 255, 0.36), rgba(199, 154, 91, 0.66), transparent);
}

.local-trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.86fr);
  gap: clamp(28px, 4.2vw, 58px);
  align-items: center;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.local-trust-copy {
  display: grid;
  gap: 14px;
}

.local-trust-copy .eyebrow {
  margin: 0;
  color: rgba(240, 196, 127, 0.94);
}

.local-trust-copy h2 {
  width: min(700px, 100%);
  margin: 0;
  color: var(--white);
  font-size: clamp(2.28rem, 3.55vw, 3.9rem);
  font-weight: 900;
  line-height: 1;
  text-wrap: balance;
}

.local-trust-copy > p {
  width: min(610px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.54;
}

.local-trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.local-trust-tags span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(226, 228, 255, 0.16);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.local-trust-proof {
  display: grid;
  gap: 16px;
  padding-left: clamp(20px, 2.4vw, 34px);
  border-left: 1px solid rgba(226, 228, 255, 0.16);
}

.local-trust-location {
  display: grid;
  gap: 6px;
}

.local-trust-location span,
.local-trust-list span {
  color: rgba(240, 196, 127, 0.9);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.local-trust-location strong {
  color: var(--white);
  font-size: clamp(1.72rem, 2.45vw, 2.44rem);
  font-weight: 900;
  line-height: 1;
}

.local-trust-location p {
  width: min(430px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.48;
}

.local-trust-list {
  display: grid;
  border-top: 1px solid rgba(226, 228, 255, 0.13);
}

.local-trust-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(226, 228, 255, 0.13);
}

.local-trust-list h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.08;
}

.local-trust-list p {
  width: min(430px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.98rem;
  line-height: 1.5;
}

.seo-answer-grid p,
.seo-faq-grid p {
  margin: 0;
  color: rgba(18, 23, 29, 0.64);
  font-size: 0.98rem;
  line-height: 1.52;
}

.section {
  padding: clamp(74px, 9vw, 132px) clamp(22px, 5vw, 76px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: end;
  background: var(--black);
}

.intro-body {
  display: grid;
  gap: 22px;
}

.intro-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.14rem;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--hamlet-blue-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2 {
  width: min(760px, 100%);
}

.project-section {
  background:
    linear-gradient(180deg, #fffdf8 0%, #fbf7ef 54%, #f1e5d5 100%);
  color: var(--ink);
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(82px, 9vw, 124px);
}

.project-section .section-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(1040px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.project-section .section-heading h2 {
  width: min(940px, 100%);
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 4.15vw, 4.35rem);
  line-height: 0.99;
  text-wrap: balance;
}

.project-section .section-heading p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 0;
  color: rgba(18, 23, 29, 0.64);
  font-size: 1.08rem;
  line-height: 1.56;
}

.project-section .eyebrow,
.text-link,
.recent-project-card span,
.project-card span {
  color: var(--hamlet-blue);
}

.project-section .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--hamlet-blue);
  border: 1px solid rgba(1, 0, 129, 0.22);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(1, 0, 129, 0.16);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.project-section .text-link:hover {
  background: var(--hamlet-blue-vivid);
  box-shadow: 0 18px 36px rgba(1, 0, 129, 0.22);
  transform: translateY(-1px);
}

.recent-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
  width: min(1320px, 100%);
  margin: 0 auto;
}

.recent-project-card,
.project-card,
.reason-grid article,
.process-list article {
  overflow: hidden;
  border-radius: 6px;
}

.recent-project-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border: 1px solid rgba(1, 0, 129, 0.08);
  box-shadow: 0 24px 62px rgba(78, 52, 27, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.recent-project-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, var(--hamlet-blue), rgba(199, 154, 91, 0.7));
  content: "";
}

.recent-project-card:hover {
  border-color: rgba(1, 0, 129, 0.2);
  box-shadow: 0 32px 76px rgba(78, 52, 27, 0.18);
  transform: translateY(-4px);
}

.recent-project-card img {
  width: 100%;
  height: 350px;
  filter: saturate(1.08) contrast(1.02) brightness(1.04);
  object-fit: cover;
}

.recent-project-card img.image-position-top {
  object-position: center 36%;
}

.recent-project-content,
.project-card div {
  padding: 26px;
}

.recent-project-photo-scroll {
  display: flex;
  gap: 0;
  height: clamp(285px, 26vw, 370px);
  padding: 0;
  overflow: hidden;
  background: #07090c;
  overscroll-behavior: contain;
  scroll-padding: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-y;
}

.recent-project-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #07090c;
}

.recent-project-photo-scroll::-webkit-scrollbar {
  display: none;
}

.recent-project-photo-scroll img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 0;
  border-radius: 0;
  filter: saturate(1.12) contrast(1.02) brightness(1.04);
  object-fit: cover;
  scroll-snap-align: start;
  transition: transform 520ms ease, filter 520ms ease;
}

.recent-project-card:hover .recent-project-photo-scroll img {
  filter: saturate(1.18) contrast(1.04) brightness(1.08);
  transform: scale(1.035);
}

.recent-project-media::after {
  position: absolute;
  inset: 52% 0 0;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0), rgba(7, 9, 12, 0.56));
  content: "";
  pointer-events: none;
}

.recent-project-gallery-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 9, 12, 0.12);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(7, 9, 12, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.recent-project-gallery-button::before {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--hamlet-blue);
  border-left: 2px solid var(--hamlet-blue);
  content: "";
}

.recent-project-gallery-button-prev {
  left: 14px;
}

.recent-project-gallery-button-prev::before {
  transform: translateX(2px) rotate(-45deg);
}

.recent-project-gallery-button-next {
  right: 14px;
}

.recent-project-gallery-button-next::before {
  transform: translateX(-2px) rotate(135deg);
}

.recent-project-gallery-button:hover,
.recent-project-gallery-button:focus-visible {
  background: var(--white);
  box-shadow: 0 18px 36px rgba(7, 9, 12, 0.28);
  transform: translateY(-50%) scale(1.04);
}

.recent-project-gallery-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.recent-project-photo-note {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(7, 9, 12, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.recent-project-content {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 12px;
  padding: 26px 26px 28px;
  text-align: left;
}

.recent-project-type,
.project-card span {
  display: block;
  margin: 0;
  color: var(--hamlet-blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.recent-project-card p,
.project-card p,
.reason-grid p,
.process-list p {
  color: rgba(18, 23, 29, 0.68);
}

.recent-project-card h3 {
  width: min(360px, 100%);
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.48rem, 1.8vw, 1.82rem);
  line-height: 1.06;
}

.recent-project-card p {
  margin-bottom: 0;
  color: rgba(18, 23, 29, 0.66);
  font-size: 0.98rem;
  line-height: 1.55;
}

.recent-project-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.recent-project-specs span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--hamlet-blue);
  background: rgba(226, 228, 255, 0.54);
  border: 1px solid rgba(1, 0, 129, 0.1);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.subpage-hero {
  position: relative;
  display: grid;
  min-height: 360px;
  align-items: end;
  padding: 92px clamp(22px, 5vw, 76px) 58px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.22), rgba(7, 9, 12, 0.6)),
    url("assets/blue-barndominium-exterior.jpg") center 52% / cover;
}

.subpage-hero div {
  width: min(940px, 100%);
  margin: 0 auto;
  text-align: center;
}

.subpage-hero h1 {
  width: min(820px, 100%);
  margin-right: auto;
  margin-left: auto;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6.4vw, 6.4rem);
  font-weight: 900;
  line-height: 0.98;
}

.subpage-hero p:not(.eyebrow) {
  width: min(660px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.13rem;
}

.subpage-hero.hero-with-actions {
  min-height: 500px;
  align-items: center;
  padding: 118px clamp(22px, 5vw, 76px) 46px;
}

.subpage-hero.hero-with-actions div {
  width: min(1060px, 100%);
}

.subpage-hero.hero-with-actions h1 {
  width: min(1080px, 100%);
  font-size: clamp(3.15rem, 5.5vw, 4.85rem);
  letter-spacing: 0;
  line-height: 0.98;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.48);
}

.subpage-hero.hero-with-actions p:not(.eyebrow) {
  width: min(720px, 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  font-weight: 500;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.5);
}

.subpage-hero.hero-with-actions .subpage-hero-actions {
  margin-top: 24px;
}

.project-portfolio {
  background:
    linear-gradient(90deg, var(--hamlet-blue-wash), transparent 24%, transparent 76%, rgba(226, 228, 255, 0.2)),
    linear-gradient(180deg, #fffaf2 0%, var(--paper) 48%, #f5eddf 100%);
  color: var(--ink);
  padding-top: 58px;
}

.project-detail-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 0;
  overflow: hidden;
  width: min(1240px, 100%);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(1, 0, 129, 0.09);
  border-radius: 6px;
  box-shadow: 0 22px 58px rgba(84, 54, 26, 0.11);
}

.project-detail-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, var(--hamlet-blue), rgba(199, 154, 91, 0.68));
  content: "";
}

.project-detail-card + .project-detail-card {
  margin-top: 22px;
}

.project-detail-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  filter: saturate(1.08) contrast(1.02) brightness(1.03);
  object-fit: cover;
}

.project-gallery-stack {
  --gallery-main-height: 420px;
  position: relative;
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto;
  min-height: 720px;
  overflow: hidden;
  background: #05070a;
}

.project-gallery-main {
  height: 100%;
  min-height: 420px;
  object-position: center 56%;
}

.project-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
}

.project-gallery-thumbs img {
  height: 134px;
  min-height: 0;
  object-fit: cover;
}

.project-gallery-thumbs img:nth-child(3) {
  object-position: center 58%;
}

.project-detail-grid .compact-gallery {
  --gallery-main-height: 320px;
  grid-template-rows: 320px auto;
  min-height: 0;
}

.project-detail-grid .compact-gallery .project-gallery-main {
  height: 320px;
  min-height: 0;
  object-position: center 54%;
}

.project-detail-grid .compact-gallery .project-gallery-thumbs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-detail-grid .compact-gallery .project-gallery-thumbs img {
  height: 92px;
  min-height: 0;
}

.project-detail-grid .compact-gallery .project-gallery-thumbs img:nth-child(2) {
  object-position: center 34%;
}

.project-detail-grid .compact-gallery .project-gallery-thumbs img:nth-child(5) {
  object-position: center 45%;
}

.project-image-pair {
  display: grid;
  grid-template-rows: minmax(350px, 1fr) minmax(240px, 0.72fr);
  min-height: 620px;
}

.project-image-pair img {
  min-height: 0;
}

.project-image-pair img:first-child {
  object-position: center 58%;
}

.project-image-pair img:last-child {
  object-position: center 50%;
}

.project-detail-card img.image-position-top {
  object-position: center 36%;
}

.project-detail-card > div {
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 62px);
}

.project-detail-card > .project-image-pair,
.project-detail-card > .project-gallery-stack {
  align-content: stretch;
  padding: 0;
}

.project-detail-card span {
  margin-bottom: 12px;
  color: var(--hamlet-blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-detail-card h2 {
  width: min(520px, 100%);
  margin-bottom: 20px;
  font-size: 3.12rem;
}

.project-detail-card p {
  color: rgba(18, 23, 29, 0.66);
  font-size: 1.04rem;
}

.project-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1240px, 100%);
  margin: 22px auto 0;
}

.project-detail-grid .project-detail-card {
  grid-template-columns: 1fr;
  margin: 0;
}

.project-detail-grid .project-detail-card img {
  height: 360px;
  min-height: 0;
}

.project-detail-grid .project-detail-card > div {
  padding: 34px;
}

.project-detail-grid .project-detail-card > .project-image-pair,
.project-detail-grid .project-detail-card > .project-gallery-stack {
  padding: 0;
}

.project-detail-grid .project-detail-card h2 {
  font-size: 2.2rem;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

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

.project-meta div {
  padding-top: 14px;
  border-top: 1px solid rgba(1, 0, 129, 0.18);
}

.project-meta dt {
  color: var(--hamlet-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-meta dd {
  margin: 4px 0 0;
  color: rgba(18, 23, 29, 0.78);
  font-size: 0.96rem;
}

.refined-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.refined-project-grid .project-detail-card {
  min-height: 0;
  background: #ffffff;
  border-color: rgba(1, 0, 129, 0.09);
  box-shadow: 0 18px 42px rgba(84, 54, 26, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.refined-project-grid .project-detail-card:hover {
  border-color: rgba(1, 0, 129, 0.2);
  box-shadow: 0 24px 52px rgba(84, 54, 26, 0.16);
  transform: translateY(-3px);
}

.refined-project-grid .project-detail-card img,
.refined-project-grid .compact-gallery .project-gallery-main {
  height: 240px;
  min-height: 0;
}

.refined-project-grid .project-gallery-stack {
  --gallery-main-height: 240px;
  position: relative;
  grid-template-rows: 240px auto;
  min-height: 0;
  background: #05070a;
}

.refined-project-grid .project-gallery-main {
  transition: opacity 180ms ease;
}

.refined-project-grid .project-gallery-thumbs {
  display: flex;
  grid-template-columns: none;
  gap: 5px;
  padding: 6px;
  overflow-x: auto;
  background: #05070a;
  scrollbar-width: thin;
}

.refined-project-grid .project-gallery-thumbs img {
  flex: 0 0 58px;
  width: 58px;
  height: 46px;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  opacity: 0.64;
  transition: opacity 160ms ease, border-color 160ms ease;
}

.refined-project-grid .project-gallery-thumbs img.is-current,
.refined-project-grid .project-gallery-thumbs img:hover {
  border-color: rgba(255, 255, 255, 0.82);
  opacity: 1;
}

.project-gallery-control {
  position: absolute;
  z-index: 2;
  top: calc(var(--gallery-main-height) / 2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(7, 9, 12, 0.26);
  cursor: pointer;
  line-height: 1;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.project-gallery-control::before {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.project-gallery-control:hover {
  color: var(--white);
  background: var(--hamlet-blue);
  border-color: rgba(255, 255, 255, 0.92);
  transform: translateY(-50%) scale(1.04);
}

.project-gallery-control.prev {
  left: 14px;
}

.project-gallery-control.prev::before {
  margin-left: 4px;
  transform: rotate(-135deg);
}

.project-gallery-control.next {
  right: 14px;
}

.project-gallery-control.next::before {
  margin-right: 4px;
  transform: rotate(45deg);
}

.project-video-button {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  display: inline-grid;
  grid-template-columns: 24px auto;
  min-width: 132px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  padding: 0 12px 0 7px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(1, 0, 129, 0.9), rgba(21, 20, 160, 0.74)),
    var(--hamlet-blue);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  box-shadow: 0 11px 24px rgba(7, 9, 12, 0.26);
  cursor: pointer;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.project-video-button::after {
  position: absolute;
  inset: -3px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: inherit;
  content: "";
  opacity: 0.24;
  animation: projectVideoPulse 2600ms ease-in-out infinite;
}

.project-video-icon {
  position: relative;
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(226, 228, 255, 0.88));
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(1, 0, 129, 0.08),
    0 5px 12px rgba(0, 0, 0, 0.16);
}

.project-video-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--hamlet-blue);
  content: "";
  transform: translate(-38%, -50%);
}

.project-video-button span:not(.project-video-icon) {
  display: inline-flex;
  height: 1em;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: 1;
  transform: translateY(0.5px);
}

.project-video-button:hover,
.project-video-button:focus-visible {
  color: var(--hamlet-blue);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(1, 0, 129, 0.22);
  box-shadow: 0 14px 32px rgba(7, 9, 12, 0.24);
  transform: translateY(-1px);
}

.project-video-button:hover .project-video-icon,
.project-video-button:focus-visible .project-video-icon {
  background: var(--hamlet-blue);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 5px 12px rgba(0, 0, 0, 0.12);
}

.project-video-button:hover .project-video-icon::before,
.project-video-button:focus-visible .project-video-icon::before {
  border-left-color: var(--white);
}

@keyframes projectVideoPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.98);
  }

  55% {
    opacity: 0.12;
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-video-button::after {
    animation: none;
  }
}

.refined-project-grid .project-detail-card > div:not(.project-gallery-stack) {
  align-content: start;
  padding: 20px 22px 22px;
}

.refined-project-grid .project-detail-card span {
  margin-bottom: 8px;
  font-size: 0.7rem;
}

.refined-project-grid .project-detail-card h2 {
  width: 100%;
  margin-bottom: 10px;
  font-size: 1.46rem;
  line-height: 1.12;
}

.refined-project-grid .project-detail-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.46;
}

.refined-project-grid .project-meta {
  display: none;
}

.visual-project-page .subpage-hero {
  min-height: 430px;
  padding-top: 138px;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.02), rgba(7, 9, 12, 0.18) 34%, rgba(7, 9, 12, 0.62)),
    url("assets/richard-smith-white-garage-front.jpg") center 58% / cover;
}

.visual-project-page .subpage-hero h1 {
  font-size: clamp(3.6rem, 7vw, 6.6rem);
  letter-spacing: 0;
}

.visual-project-page .subpage-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.visual-project-page .project-portfolio {
  padding: clamp(42px, 5vw, 64px) clamp(14px, 3vw, 30px) clamp(70px, 8vw, 118px);
  background:
    linear-gradient(180deg, #fffdf8 0%, #fbf7ef 48%, #f2e6d6 100%);
}

.visual-project-page .refined-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: clamp(10px, 1vw, 14px);
  width: min(1500px, 100%);
  margin: 0 auto;
}

.visual-project-page .refined-project-grid .project-detail-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  grid-column: auto;
  grid-row: auto;
  min-height: 0;
  overflow: hidden;
  color: var(--white);
  background: #07090c;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(45, 31, 18, 0.16);
  cursor: pointer;
  isolation: isolate;
  transform: translateY(0);
}

.visual-project-page .refined-project-grid .project-detail-card:nth-child(1) {
  grid-column: auto;
  grid-row: auto;
}

.visual-project-page .refined-project-grid .project-detail-card:nth-child(2),
.visual-project-page .refined-project-grid .project-detail-card:nth-child(3) {
  grid-column: auto;
  grid-row: auto;
}

.visual-project-page .refined-project-grid .project-detail-card:nth-child(7) {
  grid-column: auto;
}

.visual-project-page .refined-project-grid .project-detail-card:focus-visible {
  outline: 3px solid var(--wood-tan);
  outline-offset: 4px;
}

.visual-project-page .refined-project-grid .project-detail-card:hover {
  box-shadow: 0 30px 82px rgba(45, 31, 18, 0.24);
  transform: translateY(-2px);
}

.visual-project-page .refined-project-grid .project-detail-card::after {
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0), rgba(7, 9, 12, 0.78));
  content: "";
  pointer-events: none;
}

.visual-project-page .project-gallery-stack,
.visual-project-page .project-detail-card > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #07090c;
}

.visual-project-page .project-gallery-thumbs,
.visual-project-page .project-gallery-control {
  display: none;
}

.visual-project-page .refined-project-grid .project-detail-card img,
.visual-project-page .refined-project-grid .compact-gallery .project-gallery-main,
.visual-project-page .project-gallery-main {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.02) brightness(1.04);
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

.visual-project-page .refined-project-grid .project-detail-card:hover img,
.visual-project-page .refined-project-grid .project-detail-card:hover .project-gallery-main {
  filter: saturate(1.2) contrast(1.04) brightness(1.08);
  transform: scale(1.045);
}

.visual-project-page .project-detail-card > div:not(.project-gallery-stack) {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: block;
  padding: clamp(16px, 1.7vw, 24px);
  pointer-events: none;
}

.visual-project-page .project-detail-card p,
.visual-project-page .project-meta {
  display: none;
}

.visual-project-page .refined-project-grid .project-detail-card span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.visual-project-page .refined-project-grid .project-detail-card h2 {
  width: min(360px, 100%);
  margin: 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 1.45vw, 1.9rem);
  font-weight: 600;
  line-height: 0.98;
  text-wrap: balance;
}

.showcase-lightbox[hidden] {
  display: none;
}

.showcase-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 74px;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 78px clamp(16px, 4vw, 54px) 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(1, 0, 129, 0.26), transparent 38%),
    rgba(3, 5, 8, 0.96);
}

.showcase-lightbox-frame {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.showcase-lightbox-frame img {
  width: 100%;
  max-height: calc(100vh - 245px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.54);
}

.showcase-lightbox-frame figcaption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 18px;
  align-items: end;
}

.showcase-lightbox-frame span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-lightbox-frame strong {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 0.98;
}

.showcase-lightbox-frame small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.showcase-lightbox-close,
.showcase-lightbox-arrow,
.showcase-lightbox-thumb {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.showcase-lightbox-close,
.showcase-lightbox-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.showcase-lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
}

.showcase-lightbox-close::before,
.showcase-lightbox-close::after {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.showcase-lightbox-close::before {
  transform: rotate(45deg);
}

.showcase-lightbox-close::after {
  transform: rotate(-45deg);
}

.showcase-lightbox-arrow::before {
  display: block;
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.showcase-lightbox-prev {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
}

.showcase-lightbox-prev::before {
  margin-left: 5px;
  transform: rotate(-135deg);
}

.showcase-lightbox-next {
  grid-column: 3;
  grid-row: 1;
  justify-self: center;
}

.showcase-lightbox-next::before {
  margin-right: 5px;
  transform: rotate(45deg);
}

.showcase-lightbox-close:hover,
.showcase-lightbox-arrow:hover {
  background: var(--hamlet-blue);
  border-color: rgba(255, 255, 255, 0.46);
  transform: scale(1.04);
}

.showcase-lightbox-thumbs {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  gap: 9px;
  max-width: min(900px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  padding: 2px 0 6px;
  scrollbar-width: thin;
}

.showcase-lightbox-thumb {
  flex: 0 0 78px;
  width: 78px;
  height: 58px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 5px;
  opacity: 0.54;
  transition: opacity 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.showcase-lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-lightbox-thumb.is-active,
.showcase-lightbox-thumb:hover {
  border-color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  transform: translateY(-2px);
}

.project-video-modal[hidden] {
  display: none;
}

.project-video-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 78px clamp(16px, 4vw, 54px) 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(1, 0, 129, 0.32), transparent 38%),
    rgba(3, 5, 8, 0.96);
}

.project-video-dialog {
  display: grid;
  gap: 18px;
  width: min(1120px, 100%);
}

.project-video-frame {
  overflow: hidden;
  background: #020305;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.54);
}

.project-video-frame video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 230px);
  aspect-ratio: 16 / 9;
  background: #020305;
  object-fit: contain;
}

.project-video-caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 18px;
  align-items: end;
}

.project-video-caption span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-video-caption strong {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 3.35rem);
  font-weight: 600;
  line-height: 0.98;
}

.project-video-caption small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: right;
}

.project-video-close {
  position: absolute;
  top: 22px;
  right: 24px;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.project-video-close::before,
.project-video-close::after {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.project-video-close::before {
  transform: rotate(45deg);
}

.project-video-close::after {
  transform: rotate(-45deg);
}

.project-video-close:hover,
.project-video-close:focus-visible {
  background: var(--hamlet-blue);
  border-color: rgba(255, 255, 255, 0.46);
  transform: scale(1.04);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  background: var(--black);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05) brightness(0.82);
}

.feature-copy {
  display: grid;
  align-content: center;
  padding: clamp(66px, 8vw, 122px) clamp(28px, 6vw, 92px);
}

.feature-copy h2 {
  width: min(640px, 100%);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.reason-grid article {
  padding: 23px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.reason-grid p,
.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.process-section .process-list p {
  color: rgba(18, 23, 29, 0.66);
}

.process-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffaf2 0%, #fbf4e9 48%, #f4eadc 100%);
  text-align: center;
}

.process-preview-section {
  display: grid;
  justify-items: center;
  padding-top: clamp(50px, 5.4vw, 74px);
  padding-bottom: clamp(52px, 5.6vw, 78px);
}

.process-preview-section > .section-heading,
.process-preview-section > .process-lede,
.process-preview-section > .process-photo-pair,
.process-preview-section > .process-list,
.process-preview-section > .process-preview-link {
  justify-self: center;
}

.process-preview-section,
.process-preview-section .section-heading,
.process-preview-section .process-lede,
.process-preview-section .process-photo-pair figcaption,
.process-preview-section .process-list article,
.process-preview-section .process-list h3,
.process-preview-section .process-list p {
  text-align: center;
}

.process-preview-section .process-list article {
  justify-items: center;
}

.process-preview-section .process-list h3,
.process-preview-section .process-list p {
  margin-right: auto;
  margin-left: auto;
}

.process-section::before {
  position: absolute;
  top: 0;
  right: clamp(22px, 5vw, 76px);
  left: clamp(22px, 5vw, 76px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1, 0, 129, 0.28), rgba(199, 154, 91, 0.45), transparent);
  content: "";
}

.process-section .section-heading {
  display: grid;
  justify-items: center;
  width: min(920px, 100%);
  margin-right: auto;
  margin-bottom: 12px;
  margin-left: auto;
  text-align: center;
}

.process-section .section-heading h2 {
  width: min(820px, 100%);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.process-section .eyebrow {
  color: var(--hamlet-blue);
}

.process-lede {
  width: min(680px, 100%);
  margin: 0 auto 22px;
  color: rgba(18, 23, 29, 0.68);
  font-size: 1rem;
  line-height: 1.52;
  text-align: center;
}

.process-photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.7vw, 20px);
  width: min(960px, 100%);
  justify-content: center;
  margin: 0 auto 30px;
}

.process-photo-pair figure {
  position: relative;
  height: clamp(220px, 24vw, 300px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(1, 0, 129, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(84, 54, 26, 0.13);
}

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

.process-photo-pair figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0), rgba(7, 9, 12, 0.74));
  content: "";
}

.process-photo-pair figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
  width: min(420px, calc(100% - 44px));
  margin: 0 auto;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.32;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.44);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.process-list::before {
  position: absolute;
  top: 62px;
  right: 15%;
  left: 15%;
  height: 1px;
  background: linear-gradient(90deg, rgba(1, 0, 129, 0.08), rgba(1, 0, 129, 0.34), rgba(199, 154, 91, 0.42), rgba(1, 0, 129, 0.08));
  content: "";
}

.process-list article {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 232px;
  align-content: start;
  justify-items: center;
  padding: 30px 26px 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.96));
  border: 1px solid rgba(1, 0, 129, 0.09);
  box-shadow: 0 22px 58px rgba(84, 54, 26, 0.11);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.process-list article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hamlet-blue), var(--wood-tan));
  content: "";
}

.process-list article:hover {
  border-color: rgba(1, 0, 129, 0.2);
  box-shadow: 0 28px 66px rgba(84, 54, 26, 0.16);
  transform: translateY(-3px);
}

.process-list span {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--hamlet-blue);
  background: #ffffff;
  border: 1px solid rgba(1, 0, 129, 0.18);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(1, 0, 129, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-list h3 {
  width: min(260px, 100%);
  margin-right: auto;
  margin-bottom: 12px;
  margin-left: auto;
  font-size: 1.34rem;
  line-height: 1.18;
}

.process-list p {
  width: min(292px, 100%);
  margin-right: auto;
  margin-left: auto;
  line-height: 1.55;
}

.process-preview-link,
.subpage-hero-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-preview-link {
  display: flex;
  width: max-content;
  min-height: 46px;
  margin: 24px auto 0;
  padding: 0 18px;
  color: var(--white);
  background: var(--hamlet-blue);
  border: 1px solid rgba(1, 0, 129, 0.2);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(1, 0, 129, 0.16);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.process-preview-link:hover {
  background: var(--hamlet-blue-vivid);
  box-shadow: 0 20px 42px rgba(1, 0, 129, 0.22);
  transform: translateY(-1px);
}

.subpage-hero-actions {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.process-page-hero {
  min-height: 430px;
  align-items: center;
  padding: 118px clamp(22px, 5vw, 76px) 46px;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.08), rgba(7, 9, 12, 0.2) 34%, rgba(7, 9, 12, 0.64)),
    radial-gradient(circle at 50% 42%, rgba(1, 0, 129, 0.1), rgba(7, 9, 12, 0.4) 56%, rgba(7, 9, 12, 0.78)),
    url("assets/process-exterior-wrap.jpg") center 45% / cover;
}

.process-page-hero div {
  width: min(1060px, 100%);
  margin: 0 auto;
  text-align: center;
}

.process-page-hero h1 {
  width: min(1080px, 100%);
  margin-right: auto;
  margin-left: auto;
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 5.5vw, 4.85rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.48);
}

.process-page-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  font-weight: 500;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.5);
}

.process-intro-section,
.process-detail-section,
.process-craft-section,
.process-expect-section {
  padding: clamp(76px, 9vw, 128px) clamp(22px, 5vw, 76px);
}

.process-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  background:
    linear-gradient(180deg, #fffdf8 0%, #fbf7ef 100%),
    var(--paper);
}

.process-intro-copy,
.process-craft-copy {
  display: grid;
  gap: 24px;
}

.process-intro-copy .eyebrow,
.process-craft-copy .eyebrow,
.process-expect-heading .eyebrow {
  margin-bottom: 0;
  color: var(--hamlet-blue);
}

.process-intro-copy h2,
.process-craft-copy h2,
.process-expect-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.96;
  text-wrap: balance;
}

.process-intro-copy p:not(.eyebrow),
.process-craft-copy > p {
  width: min(610px, 100%);
  margin: 0;
  color: rgba(18, 23, 29, 0.7);
  font-size: 1.1rem;
  line-height: 1.72;
}

.process-intro-media,
.process-craft-media {
  margin: 0;
}

.process-intro-media img {
  width: 100%;
  height: clamp(480px, 52vw, 720px);
  object-fit: cover;
  object-position: center 42%;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(62, 42, 25, 0.18);
}

.process-intro-media figcaption {
  width: min(560px, 100%);
  margin: 14px 0 0 auto;
  color: rgba(18, 23, 29, 0.58);
  font-size: 0.94rem;
  line-height: 1.58;
}

.process-detail-section {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 16%, rgba(21, 20, 160, 0.38), transparent 34%),
    linear-gradient(135deg, #080b18 0%, #00004d 48%, #07090c 100%);
}

.process-detail-heading {
  display: grid;
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.process-detail-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 5.6vw, 5.7rem);
  font-weight: 500;
  line-height: 0.94;
  text-wrap: balance;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.process-timeline article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  min-height: 212px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.process-timeline span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: var(--hamlet-blue);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(1, 0, 129, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-timeline h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.48rem;
  line-height: 1.12;
}

.process-timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.58;
}

.process-craft-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  background:
    linear-gradient(180deg, #fffaf2 0%, #fbf7ef 100%),
    var(--paper);
}

.process-craft-media img {
  width: 100%;
  height: clamp(520px, 56vw, 760px);
  object-fit: cover;
  object-position: center 48%;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(62, 42, 25, 0.18);
}

.process-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(720px, 100%);
  margin-top: 10px;
}

.process-proof-grid div {
  display: grid;
  gap: 9px;
  min-height: 148px;
  align-content: end;
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(1, 0, 129, 0.1);
  border-radius: 7px;
  box-shadow: 0 18px 42px rgba(84, 54, 26, 0.08);
}

.process-proof-grid span {
  color: var(--hamlet-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-proof-grid strong {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.28;
}

.process-expect-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
  text-align: center;
}

.process-expect-heading {
  display: grid;
  gap: 12px;
  width: min(840px, 100%);
  margin: 0 auto 38px;
}

.process-expect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.process-expect-grid article {
  display: grid;
  align-content: start;
  min-height: 244px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid rgba(1, 0, 129, 0.09);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(84, 54, 26, 0.1);
}

.process-expect-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.46rem;
  line-height: 1.12;
}

.process-expect-grid p {
  margin: 0;
  color: rgba(18, 23, 29, 0.66);
  line-height: 1.58;
}

.process-simple-hero {
  min-height: 430px;
  align-items: center;
  padding: 118px clamp(22px, 5vw, 76px) 46px;
  background:
    linear-gradient(90deg, rgba(7, 9, 12, 0.36), rgba(7, 9, 12, 0.28) 42%, rgba(7, 9, 12, 0.2)),
    linear-gradient(180deg, rgba(7, 9, 12, 0.08), rgba(7, 9, 12, 0.52)),
    url("assets/process-exterior-wrap.jpg") center 42% / cover;
}

.process-simple-hero div {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.process-simple-hero h1 {
  width: min(1080px, 100%);
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(3.15rem, 5.5vw, 4.85rem);
}

.process-simple-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.process-simple-hero .subpage-hero-actions {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  justify-content: center;
  width: max-content;
  margin: 0 auto;
}

.process-scroll-scene {
  position: relative;
  height: 500px;
  min-height: 500px;
  background: #07090c;
}

.process-page-hero.process-scroll-hero,
.process-simple-hero.process-scroll-hero {
  --process-after-opacity: 0;
  --process-before-scale: 1;
  --process-after-scale: 1.045;
  --process-reveal-inset: 100%;
  position: relative;
  top: auto;
  min-height: 500px;
  isolation: isolate;
  background: #07090c;
}

.process-scroll-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 9, 12, 0.66), rgba(7, 9, 12, 0.34) 42%, rgba(7, 9, 12, 0.14)),
    linear-gradient(180deg, rgba(7, 9, 12, 0.08), rgba(7, 9, 12, 0.58));
  content: "";
  pointer-events: none;
}

.process-scroll-hero::after {
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  bottom: 28px;
  left: clamp(22px, 5vw, 76px);
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, var(--hamlet-blue-vivid), rgba(255, 255, 255, 0.72), rgba(199, 154, 91, 0.86));
  content: "";
  opacity: 0.72;
  transform: scaleX(var(--process-after-opacity));
  transform-origin: left center;
}

.process-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  background: #07090c;
  pointer-events: none;
}

.process-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(1.05) contrast(1.04) brightness(0.96);
  object-fit: cover;
  transition: transform 120ms linear, opacity 120ms linear, clip-path 120ms linear;
  will-change: transform, opacity, clip-path;
}

.process-hero-image-before {
  object-position: center 42%;
  transform: scale(var(--process-before-scale));
}

.process-hero-image-after {
  clip-path: inset(0 0 0 var(--process-reveal-inset));
  filter: saturate(1.04) contrast(1.03) brightness(0.94);
  object-position: center 37%;
  opacity: var(--process-after-opacity);
  transform: scale(var(--process-after-scale));
}

.process-scroll-hero > div {
  position: static;
  z-index: auto;
}

.process-scroll-hero > div > .eyebrow,
.process-scroll-hero > div > h1,
.process-scroll-hero > div > p {
  position: relative;
  z-index: 3;
}

.process-scroll-hero > div > .subpage-hero-actions {
  z-index: 3;
}

.process-simple-intro,
.process-simple-steps,
.process-simple-showcase {
  padding: clamp(78px, 9vw, 124px) clamp(22px, 5vw, 76px);
}

.process-simple-intro {
  display: grid;
  justify-items: center;
  background: #fffdf8;
  text-align: center;
}

.process-simple-copy {
  display: grid;
  gap: 24px;
  justify-items: center;
  width: min(900px, 100%);
}

.process-simple-copy .eyebrow,
.process-simple-heading .eyebrow {
  margin-bottom: 0;
  color: var(--hamlet-blue);
}

.process-simple-copy h2,
.process-simple-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.96;
  text-wrap: balance;
}

.process-simple-copy p:not(.eyebrow) {
  width: min(560px, 100%);
  margin: 0;
  color: rgba(18, 23, 29, 0.68);
  font-size: 1.08rem;
  line-height: 1.7;
}

.process-simple-steps {
  background:
    linear-gradient(180deg, #fffaf2 0%, #f4eadc 100%),
    var(--paper);
}

.process-simple-heading {
  display: grid;
  gap: 12px;
  width: min(860px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.process-step-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  width: min(1240px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: rgba(1, 0, 129, 0.12);
  border: 1px solid rgba(1, 0, 129, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 74px rgba(84, 54, 26, 0.1);
}

.process-step-row article {
  position: relative;
  display: grid;
  min-height: 300px;
  align-content: start;
  padding: 28px 24px 30px;
  background: rgba(255, 255, 255, 0.84);
  overflow: hidden;
}

.process-step-row article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--hamlet-blue), rgba(199, 154, 91, 0.56));
  content: "";
}

.process-step-row span {
  margin-bottom: 34px;
  color: var(--hamlet-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-step-row h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.44rem;
  line-height: 1.08;
}

.process-step-row p {
  margin: 0;
  color: rgba(18, 23, 29, 0.64);
  font-size: 0.96rem;
  line-height: 1.5;
}

.process-simple-showcase {
  background:
    linear-gradient(180deg, rgba(226, 228, 255, 0.18), rgba(255, 255, 255, 0) 26%),
    #ffffff;
}

.process-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.process-showcase-grid figure {
  display: grid;
  gap: 14px;
  margin: 0;
}

.process-showcase-grid img {
  width: 100%;
  height: clamp(420px, 44vw, 620px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 26px 72px rgba(64, 44, 25, 0.15);
}

.process-showcase-grid figure:first-child img {
  object-position: center 42%;
}

.process-showcase-grid figure:last-child img {
  object-position: center 50%;
}

.process-showcase-grid figcaption {
  width: min(520px, 100%);
  color: rgba(18, 23, 29, 0.58);
  font-size: 0.94rem;
  line-height: 1.55;
}

.build-questions-section {
  padding: clamp(72px, 8vw, 118px) clamp(22px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(1, 0, 129, 0.035), transparent 28%, transparent 72%, rgba(1, 0, 129, 0.025)),
    linear-gradient(180deg, #fffdf8 0%, #f8efe3 100%);
}

.build-questions-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 5vw, 70px);
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 247, 0.86));
  border: 1px solid rgba(1, 0, 129, 0.1);
  border-radius: 8px;
  box-shadow: 0 28px 76px rgba(84, 54, 26, 0.1);
}

.build-questions-heading {
  display: grid;
  align-content: start;
  gap: 14px;
}

.build-questions-heading .eyebrow {
  margin-bottom: 0;
  color: var(--hamlet-blue);
}

.build-questions-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 3.8vw, 4.1rem);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.build-questions-heading p:not(.eyebrow) {
  width: min(460px, 100%);
  margin: 0;
  color: rgba(18, 23, 29, 0.66);
  font-size: 1.04rem;
  line-height: 1.66;
}

.build-questions-list {
  display: grid;
  border-top: 1px solid rgba(1, 0, 129, 0.12);
}

.build-question {
  display: grid;
  grid-template-columns: minmax(170px, 0.48fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: 24px 0;
  border-bottom: 1px solid rgba(1, 0, 129, 0.12);
}

.build-question h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.36rem, 2vw, 1.82rem);
  font-weight: 600;
  line-height: 1.08;
}

.build-question p {
  margin: 0;
  color: rgba(18, 23, 29, 0.68);
  font-size: 1rem;
  line-height: 1.62;
}

.gallery-section {
  background: var(--paper);
  color: var(--ink);
}

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

.text-link {
  font-size: 0.83rem;
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.project-card {
  display: grid;
  background: var(--white);
  border: 1px solid rgba(1, 0, 129, 0.11);
  box-shadow: 0 20px 60px rgba(84, 54, 26, 0.1);
}

.project-card img {
  width: 100%;
  height: 255px;
  object-fit: cover;
}

.hero-project {
  grid-row: span 3;
}

.hero-project img {
  height: 520px;
}

.project-card p {
  margin-bottom: 10px;
}

.quote-section {
  padding: clamp(58px, 6.5vw, 92px) clamp(22px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(7, 9, 12, 0.5), rgba(7, 9, 12, 0.12) 54%, rgba(1, 0, 129, 0.16)),
    url("assets/terwilliger-white-barndo-wide-aerial.jpg") center 44% / cover;
}

.quote-card {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4.2vw, 46px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-top: 5px solid var(--hamlet-blue);
  border-radius: 8px;
  box-shadow: 0 28px 84px rgba(7, 9, 12, 0.22);
  text-align: center;
}

.quote-card-form {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(20px, 3vw, 38px);
  align-items: center;
  text-align: left;
}

.quote-card-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

.quote-card .eyebrow {
  color: var(--hamlet-blue);
}

.quote-card h2 {
  color: var(--ink);
}

.quote-card-copy > p {
  width: min(640px, 100%);
  margin: 0;
  color: rgba(18, 23, 29, 0.72);
  font-size: 1rem;
  line-height: 1.5;
}

.quote-call-link {
  display: inline-flex;
  width: max-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 0 14px;
  color: var(--hamlet-blue);
  background: rgba(226, 228, 255, 0.48);
  border: 1px solid rgba(1, 0, 129, 0.13);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.quote-form {
  display: grid;
  gap: 10px;
}

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

.quote-form label {
  display: grid;
  gap: 5px;
  color: var(--hamlet-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(1, 0, 129, 0.16);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font: 600 1rem/1.35 var(--font-body);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.quote-form select {
  appearance: auto;
}

.quote-form textarea {
  min-height: 86px;
  padding-top: 11px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(18, 23, 29, 0.42);
  font-weight: 600;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  background: var(--white);
  border-color: rgba(1, 0, 129, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 4px rgba(226, 228, 255, 0.72);
}

.quote-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.quote-form .button {
  min-height: 46px;
  margin-top: 0;
}

.quote-form-note {
  flex: 1 1 220px;
  margin: 0;
  color: rgba(18, 23, 29, 0.62);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer {
  position: relative;
  padding: clamp(62px, 7vw, 90px) clamp(22px, 5vw, 76px) 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(1, 0, 129, 0.3), rgba(7, 9, 12, 0) 46%),
    linear-gradient(135deg, rgba(226, 228, 255, 0.08), transparent 42%, rgba(199, 154, 91, 0.08)),
    #07090c;
  border-top: 1px solid rgba(226, 228, 255, 0.18);
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1240px, calc(100% - 44px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1, 0, 129, 0.96), rgba(240, 196, 127, 0.72), transparent);
  content: "";
  transform: translateX(-50%);
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(140px, 0.42fr) minmax(250px, 0.7fr) minmax(290px, 0.78fr);
  gap: clamp(24px, 3vw, 48px);
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 3.5vw, 42px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(226, 228, 255, 0.14);
  border-radius: var(--box-radius);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.22);
}

.footer-main::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--hamlet-blue-vivid), rgba(199, 154, 91, 0.86));
  content: "";
}

.footer-brand,
.footer-links,
.footer-info,
.footer-cta {
  display: grid;
  align-content: start;
}

.footer-brand {
  justify-items: center;
  gap: 16px;
  padding-right: 0;
  text-align: center;
}

.footer-brand::before {
  display: inline-flex;
  width: max-content;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  color: rgba(226, 228, 255, 0.86);
  background: rgba(1, 0, 129, 0.28);
  border: 1px solid rgba(226, 228, 255, 0.18);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  content: "Locally owned in Kerhonkson, NY";
}

.footer-logo {
  display: grid;
  width: min(218px, 100%);
  min-height: 76px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.34));
  transition: filter 160ms ease, transform 160ms ease;
}

.footer-logo:hover,
.footer-logo:focus-visible {
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.42));
  transform: translateY(-1px);
}

.footer-logo img {
  width: min(214px, 100%);
  height: auto;
  max-height: 78px;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.78))
    drop-shadow(0 4px 10px rgba(255, 255, 255, 0.12));
  object-fit: contain;
}

.footer-brand strong {
  width: min(520px, 100%);
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.48;
}

.footer-brand p,
.footer-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.98rem;
  line-height: 1.65;
}

.footer-brand p {
  width: min(540px, 100%);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}

.footer-phone {
  display: inline-flex;
  min-height: 42px;
  width: max-content;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--white);
  background: rgba(1, 0, 129, 0.64);
  border: 1px solid rgba(226, 228, 255, 0.34);
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 12px 30px rgba(1, 0, 129, 0.26);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.footer-contact-row span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-links,
.footer-info {
  gap: 11px;
}

.footer-links strong,
.footer-info strong,
.footer-cta strong {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-info span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.96rem;
  line-height: 1.35;
}

.footer-links a {
  position: relative;
  width: max-content;
  padding-bottom: 3px;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(226, 228, 255, 0.64);
  content: "";
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: left;
  transition: opacity 160ms ease, transform 160ms ease;
}

.footer-links a:hover,
.footer-phone:hover {
  color: var(--white);
}

.footer-links a:hover {
  transform: translateX(2px);
}

.footer-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.footer-phone:hover {
  background: rgba(21, 20, 160, 0.88);
  border-color: rgba(226, 228, 255, 0.56);
  box-shadow: 0 16px 36px rgba(1, 0, 129, 0.34);
  transform: translateY(-1px);
}

.footer-info {
  gap: 22px;
}

.footer-info div {
  display: grid;
  gap: 8px;
  padding: 4px 0 4px 16px;
  border-left: 1px solid rgba(226, 228, 255, 0.16);
}

.footer-cta {
  position: relative;
  gap: 14px;
  align-content: center;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.058)),
    linear-gradient(135deg, rgba(1, 0, 129, 0.34), rgba(199, 154, 91, 0.09));
  border: 1px solid rgba(226, 228, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.22);
}

.footer-cta::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--hamlet-blue-vivid), rgba(199, 154, 91, 0.86));
  content: "";
}

.footer-cta .button {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  border-radius: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1320px, 100%);
  margin: 22px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p,
.footer-bottom span {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
}

.build-type-list-panel,
.build-service-strip,
.about-service-grid article,
.about-craft-list article,
.seo-answer-grid article,
.seo-faq-grid article,
.recent-project-card,
.process-list article,
.quote-card,
body:not(.visual-project-page) .project-detail-card {
  background: var(--box-bg);
  border: 1px solid var(--box-border);
  border-radius: var(--box-radius);
  box-shadow: var(--box-shadow);
}

.build-type-list-panel {
  position: relative;
  gap: 20px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
}

.build-type-list-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--hamlet-blue), rgba(199, 154, 91, 0.78));
  content: "";
}

.build-service-strip {
  box-shadow: var(--box-shadow-soft);
}

.about-service-grid article,
.about-craft-list article,
.recent-project-card,
.process-list article,
body:not(.visual-project-page) .project-detail-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-service-grid article:hover,
.about-craft-list article:hover,
.recent-project-card:hover,
.process-list article:hover,
body:not(.visual-project-page) .project-detail-card:hover {
  border-color: var(--box-border-strong);
  box-shadow: var(--box-shadow-hover);
  transform: translateY(-3px);
}

.about-service-grid span,
.build-type-list span,
.process-list span,
.recent-project-specs span,
.quote-call-link {
  background: rgba(226, 228, 255, 0.56);
  border-color: rgba(1, 0, 129, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.quote-card {
  border-top: 4px solid var(--hamlet-blue);
  box-shadow: 0 30px 86px rgba(7, 9, 12, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.visual-project-page .refined-project-grid .project-detail-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--box-radius);
  box-shadow: 0 22px 58px rgba(45, 31, 18, 0.18);
}

.visual-project-page .refined-project-grid .project-detail-card:hover {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 30px 82px rgba(45, 31, 18, 0.25);
}

.footer-main {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-cta {
  border-radius: var(--box-radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.process-preview-section .process-list {
  gap: clamp(14px, 1.6vw, 18px);
  width: min(1060px, 100%);
}

.process-preview-section .process-list::before {
  top: 42px;
  right: 12%;
  left: 12%;
  height: 2px;
  opacity: 0.58;
}

.process-preview-section .process-list article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 24px 24px;
  background:
    linear-gradient(180deg, rgba(226, 228, 255, 0.42), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 252, 247, 0.95));
  border-color: rgba(1, 0, 129, 0.14);
  box-shadow:
    0 26px 72px rgba(62, 42, 25, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.process-preview-section .process-list article::before {
  height: 5px;
  background: linear-gradient(90deg, var(--hamlet-blue), var(--hamlet-blue-vivid), rgba(199, 154, 91, 0.86));
}

.process-preview-section .process-list article::after {
  content: none;
}

.process-preview-section .process-list span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: auto;
  height: 34px;
  min-width: 82px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 auto 18px;
  padding: 0 13px;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--hamlet-blue), var(--hamlet-blue-vivid));
  border-color: rgba(1, 0, 129, 0.18);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(1, 0, 129, 0.2);
  font-size: 0.7rem;
  font-weight: 900;
}

.process-preview-section .process-list span::before {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  content: "Step";
}

.process-preview-section .process-list h3,
.process-preview-section .process-list p {
  position: relative;
  z-index: 1;
}

.process-preview-section .process-list h3 {
  margin-bottom: 8px;
  font-size: clamp(1.32rem, 1.58vw, 1.52rem);
  line-height: 1.08;
}

.process-preview-section .process-list p {
  width: min(270px, 100%);
  color: rgba(18, 23, 29, 0.66);
  font-size: 0.94rem;
  line-height: 1.46;
}

.process-preview-section .process-list article:hover {
  border-color: rgba(1, 0, 129, 0.24);
  box-shadow:
    0 34px 84px rgba(62, 42, 25, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.build-type-list,
.build-questions-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  border-top: 0;
  justify-content: center;
}

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

.build-types-section .build-types-heading {
  gap: 10px;
}

.build-types-section .build-types-heading h2 {
  font-size: clamp(2.46rem, 3.2vw, 3.44rem);
}

.build-types-section .build-types-heading p:not(.eyebrow) {
  width: min(680px, 100%);
  font-size: 1.02rem;
  line-height: 1.54;
}

.build-types-section .build-type-list-panel {
  gap: 14px;
  padding: clamp(20px, 2.2vw, 26px);
}

.local-trust-list {
  gap: 14px;
  border-top: 0;
  justify-content: center;
}

.process-step-row {
  gap: clamp(14px, 1.6vw, 20px);
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  justify-content: center;
}

.build-type-list article,
.local-trust-list article,
.about-service-grid article,
.about-craft-list article,
.seo-answer-grid article,
.seo-faq-grid article,
.build-question,
.process-step-row article {
  position: relative;
  display: grid;
  min-height: 238px;
  align-content: start;
  gap: 10px;
  padding: 30px 26px 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(226, 228, 255, 0.4), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 247, 0.94));
  border: 1px solid rgba(1, 0, 129, 0.14);
  border-radius: var(--box-radius);
  box-shadow:
    0 24px 68px rgba(62, 42, 25, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.build-type-list article::before,
.local-trust-list article::before,
.about-service-grid article::before,
.about-craft-list article::before,
.seo-answer-grid article::before,
.seo-faq-grid article::before,
.build-question::before,
.process-step-row article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--hamlet-blue), var(--hamlet-blue-vivid), rgba(199, 154, 91, 0.82));
  content: "";
}

.build-type-list article::after,
.local-trust-list article::after,
.about-service-grid article::after,
.about-craft-list article::after,
.seo-answer-grid article::after,
.seo-faq-grid article::after,
.build-question::after,
.process-step-row article::after {
  content: none;
}

.build-type-list article:hover,
.local-trust-list article:hover,
.about-service-grid article:hover,
.about-craft-list article:hover,
.seo-answer-grid article:hover,
.seo-faq-grid article:hover,
.build-question:hover,
.process-step-row article:hover {
  border-color: rgba(1, 0, 129, 0.24);
  box-shadow:
    0 32px 78px rgba(62, 42, 25, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translateY(-3px);
}

.build-type-list article,
.local-trust-list article,
.about-service-grid article,
.about-craft-list article,
.seo-answer-grid article,
.seo-faq-grid article,
.build-question,
.process-step-row article {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.build-type-list article > *,
.local-trust-list article > *,
.about-service-grid article > *,
.about-craft-list article > *,
.seo-answer-grid article > *,
.seo-faq-grid article > *,
.build-question > *,
.process-step-row article > * {
  position: relative;
  z-index: 1;
}

.build-type-list span,
.local-trust-list span,
.about-service-grid span,
.about-craft-list span,
.seo-answer-grid span,
.process-step-row span {
  display: inline-flex;
  width: auto;
  height: 38px;
  min-width: 64px;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 0 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--hamlet-blue), var(--hamlet-blue-vivid));
  border: 1px solid rgba(1, 0, 129, 0.18);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(1, 0, 129, 0.18);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.process-step-row span {
  min-width: 88px;
  gap: 7px;
  margin-right: auto;
  margin-left: auto;
}

.process-step-row span::before {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  content: "Step";
}

.build-type-list h3,
.local-trust-list h3,
.about-service-grid h3,
.about-craft-list h3,
.seo-answer-grid h3,
.seo-faq-grid h3,
.build-question h3,
.process-step-row h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.38rem, 1.8vw, 1.72rem);
  line-height: 1.08;
  text-wrap: balance;
}

.build-type-list p,
.local-trust-list p,
.about-service-grid p,
.about-craft-list p,
.seo-answer-grid p,
.seo-faq-grid p,
.build-question p,
.process-step-row p {
  width: min(320px, 100%);
  margin: 0 auto;
  color: rgba(18, 23, 29, 0.66);
  font-size: 1rem;
  line-height: 1.58;
}

.build-types-section .build-type-list article {
  min-height: 142px;
  align-content: center;
  padding: 20px 18px 18px;
}

.build-types-section .build-type-list h3 {
  margin-bottom: 7px;
  font-size: clamp(1.06rem, 1.12vw, 1.22rem);
  line-height: 1.12;
}

.build-types-section .build-type-list p {
  width: min(250px, 100%);
  font-size: 0.88rem;
  line-height: 1.42;
}

.local-trust-list article {
  min-height: 0;
  padding: 22px 18px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    linear-gradient(135deg, rgba(1, 0, 129, 0.18), rgba(199, 154, 91, 0.06));
  border-color: rgba(226, 228, 255, 0.18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.local-trust-list article::before {
  background: linear-gradient(90deg, var(--hamlet-blue-vivid), rgba(226, 228, 255, 0.72), rgba(199, 154, 91, 0.88));
}

.local-trust-list article::after {
  content: none;
}

.local-trust-list article:hover {
  border-color: rgba(226, 228, 255, 0.3);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.local-trust-list span {
  min-width: 56px;
  height: 34px;
  margin-bottom: 12px;
  color: #111315;
  background: linear-gradient(135deg, rgba(240, 196, 127, 0.94), rgba(226, 228, 255, 0.88));
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.local-trust-list h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.18rem;
}

.local-trust-list p {
  width: min(300px, 100%);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.42;
}

.build-type-list article {
  min-height: 0;
  padding: 24px;
}

.build-type-list span {
  margin: 0 0 16px;
}

.build-type-list h3 {
  margin-bottom: 7px;
}

.build-type-list p {
  width: min(520px, 100%);
  margin: 0 auto;
}

.local-trust-list article {
  justify-items: center;
  text-align: center;
}

.build-question {
  border-bottom: 0;
}

@media (max-width: 1240px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand,
  .footer-cta {
    grid-column: 1 / -1;
  }

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

@media (max-width: 1120px) {
  .menu-toggle {
    display: inline-flex;
    width: auto;
    min-width: 92px;
    padding: 0 14px;
    align-items: center;
    justify-content: flex-start;
    border-radius: 999px;
  }

  .menu-toggle::before {
    display: block;
    padding-right: 28px;
    color: currentColor;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    content: "Menu";
  }

  .menu-toggle span {
    position: absolute;
    right: 15px;
    left: auto;
    width: 18px;
    height: 2px;
    margin: 0;
  }

  .menu-toggle span:nth-child(1) {
    top: calc(50% - 6px);
  }

  .menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-toggle span:nth-child(3) {
    top: calc(50% + 4px);
  }

  .site-header.nav-open .menu-toggle::before {
    content: "Close";
  }

  .site-header.nav-open .menu-toggle span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .site-header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .menu-toggle span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 104px;
    right: clamp(18px, 5vw, 48px);
    left: clamp(18px, 5vw, 48px);
    display: grid;
    gap: 14px;
    max-height: calc(100vh - 96px);
    padding: 18px;
    overflow: auto;
    color: rgba(12, 17, 23, 0.86);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 247, 241, 0.98)),
      #ffffff;
    border: 1px solid rgba(1, 0, 129, 0.12);
    border-radius: 12px;
    box-shadow:
      0 30px 80px rgba(7, 9, 12, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
    text-shadow: none;
    backdrop-filter: blur(18px);
    transform: translateY(-10px) scale(0.985);
    transform-origin: top center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .site-header.nav-open .site-nav {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav::before {
    display: block;
    color: rgba(12, 17, 23, 0.48);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
    content: "Menu";
  }

  .nav-links,
  .nav-actions {
    display: grid;
    gap: 8px;
  }

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

  .nav-actions::before {
    display: none;
  }

  .nav-links a,
  .nav-phone,
  .nav-cta {
    justify-content: center;
    min-height: 52px;
    padding: 0 14px;
    border-radius: 8px;
  }

  .nav-links a,
  .nav-phone {
    color: rgba(12, 17, 23, 0.82);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(12, 17, 23, 0.08);
    font-weight: 800;
    text-align: center;
    text-shadow: none;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    color: var(--hamlet-blue);
    background: rgba(226, 228, 255, 0.52);
    border-color: rgba(1, 0, 129, 0.16);
  }

  .nav-actions {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .hero-inner,
  .intro-section,
  .feature-band,
  .about-inner,
  .process-intro-section,
  .process-craft-section {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .about-copy h2,
  .about-copy > p {
    width: 100%;
  }

  .about-copy {
    grid-template-columns: 1fr;
  }

  .about-story-inner,
  .about-craft-inner {
    grid-template-columns: 1fr;
  }

  .local-trust-panel {
    grid-template-columns: 1fr;
    width: min(760px, 100%);
  }

  .local-trust-copy,
  .local-trust-copy h2,
  .local-trust-copy > p,
  .local-trust-location,
  .local-trust-location p,
  .local-trust-list p {
    width: 100%;
  }

  .local-trust-copy,
  .local-trust-location {
    justify-items: center;
    text-align: center;
  }

  .local-trust-tags {
    justify-content: center;
  }

  .local-trust-proof {
    padding-top: 30px;
    padding-left: 0;
    border-top: 1px solid rgba(226, 228, 255, 0.16);
    border-left: 0;
  }

  .build-type-feature {
    grid-template-columns: 1fr;
    width: min(760px, 100%);
  }

  .about-craft-image {
    order: 2;
    height: 420px;
  }

  .about-craft-copy {
    order: 1;
  }

  .recent-project-grid,
  .build-type-photo-strip,
  .build-type-grid,
  .about-service-grid,
  .seo-answer-grid,
  .process-photo-pair,
  .process-list,
  .gallery-grid,
  .process-timeline,
  .process-expect-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-craft-media {
    order: 2;
  }

  .process-craft-copy {
    order: 1;
  }

  .recent-project-card,
  .recent-project-card:nth-child(n + 4) {
    grid-column: auto;
  }

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

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

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

  .project-detail-card img {
    height: 430px;
    min-height: 0;
  }

  .refined-project-grid .project-detail-card img,
  .refined-project-grid .compact-gallery .project-gallery-main {
    height: 265px;
  }

  .project-image-pair {
    min-height: 520px;
  }

  .project-gallery-stack {
    min-height: 620px;
  }

  .project-gallery-main {
    min-height: 360px;
  }

  .process-list article {
    min-height: 238px;
  }

  .process-list::before {
    display: none;
  }

  .hero-project {
    grid-row: auto;
  }

  .hero-project img {
    height: 250px;
  }

  .visual-project-page .refined-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .visual-project-page .refined-project-grid .project-detail-card,
  .visual-project-page .refined-project-grid .project-detail-card:nth-child(1),
  .visual-project-page .refined-project-grid .project-detail-card:nth-child(2),
  .visual-project-page .refined-project-grid .project-detail-card:nth-child(3),
  .visual-project-page .refined-project-grid .project-detail-card:nth-child(7) {
    aspect-ratio: 4 / 3;
    grid-column: auto;
    grid-row: auto;
  }

  .showcase-lightbox {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .project-video-modal {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .header-inner {
    min-height: 82px;
  }

  .site-header.is-scrolled,
  .site-header.nav-open,
  .solid-header .site-header,
  .site-header.is-scrolled .header-inner,
  .site-header.nav-open .header-inner,
  .solid-header .header-inner {
    min-height: 82px;
  }

  .solid-header main {
    padding-top: 82px;
  }

  .header-inner {
    width: calc(100% - 28px);
    padding: 8px 0;
  }

  .site-nav {
    top: 82px;
    right: 12px;
    left: 12px;
    gap: 16px;
    align-items: stretch;
    justify-content: stretch;
    max-height: calc(100svh - 102px);
    padding: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 238, 0.96)),
      #ffffff;
    border-color: rgba(1, 0, 129, 0.12);
    border-radius: 10px;
    box-shadow:
      0 30px 80px rgba(7, 9, 12, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .site-header.nav-open .site-nav {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto;
  }

  .site-nav::before {
    display: block;
    color: rgba(12, 17, 23, 0.46);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
    content: "Menu";
  }

  .nav-links {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(12, 17, 23, 0.09);
    border-radius: 8px;
  }

  .nav-links a {
    justify-content: flex-start;
    min-height: 58px;
    padding: 0 16px;
    color: rgba(12, 17, 23, 0.86);
    background: rgba(255, 255, 255, 0.58);
    border-radius: 0;
    border-bottom: 1px solid rgba(12, 17, 23, 0.08);
    font-size: 1.04rem;
    font-weight: 700;
    letter-spacing: 0;
    text-align: left;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a::after,
  .nav-links a[aria-current="page"]::after {
    display: block;
    position: static;
    width: 7px;
    height: 7px;
    margin-left: auto;
    background: transparent;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    opacity: 0.38;
    transform: rotate(45deg);
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    color: var(--hamlet-blue);
    background: rgba(226, 228, 255, 0.5);
  }

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

  .nav-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav-actions::before {
    display: block;
    width: auto;
    height: auto;
    color: rgba(12, 17, 23, 0.45);
    background: transparent;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
    content: "Plan a project";
  }

  .site-header.is-scrolled .nav-actions::before,
  .site-header.nav-open .nav-actions::before,
  .solid-header .nav-actions::before {
    background: transparent;
  }

  .nav-phone,
  .nav-cta {
    justify-content: center;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 0.98rem;
  }

  .nav-phone {
    color: var(--hamlet-blue);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(1, 0, 129, 0.15);
    font-weight: 800;
  }

  .nav-cta {
    color: var(--white);
    background: linear-gradient(135deg, var(--hamlet-blue-vivid), var(--hamlet-blue-deep));
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 34px rgba(1, 0, 129, 0.26);
  }

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

  .menu-toggle {
    width: auto;
    min-width: 88px;
    height: 44px;
    padding: 0 13px;
  }

  .hero {
    display: flex;
    min-height: 88svh;
    padding: 126px 18px 34px;
  }

  .hero-inner {
    flex: 1;
    min-height: auto;
    align-items: center;
  }

  .hero-content {
    margin-top: 0;
  }

  .hero-content::before {
    inset: -24px -14px -28px;
    background: radial-gradient(ellipse at center, rgba(4, 6, 10, 0.46), rgba(4, 6, 10, 0.2) 52%, rgba(4, 6, 10, 0) 78%);
  }

  .hero-content h1 {
    width: min(398px, 100%);
    margin-bottom: 18px;
    font-size: clamp(1.86rem, 7.6vw, 2.46rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .hero-content h1 span {
    white-space: nowrap;
  }

  .hero-content h1 span + span {
    margin-top: 2px;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  h2 {
    font-size: 2.32rem;
  }

  .subpage-hero {
    min-height: 360px;
    padding: 76px 20px 58px;
  }

  .subpage-hero h1 {
    font-size: 2.84rem;
  }

  .subpage-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-subline {
    width: min(340px, 100%);
    margin-bottom: 22px;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    gap: 7px;
    width: min(350px, 100%);
    margin-inline: auto;
    padding: 7px;
  }

  .hero-actions .button {
    min-height: 50px;
    padding: 0 18px;
  }

  .trust-strip {
    padding: 18px;
  }

  .trust-intro {
    font-size: 1.16rem;
    line-height: 1.38;
  }

  .trust-points {
    gap: 7px;
  }

  .trust-points span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .about-section {
    padding: 58px 18px;
  }

  .about-inner {
    gap: 32px;
    text-align: center;
  }

  .about-copy {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }

  .about-copy h2 {
    font-size: 2.42rem;
    line-height: 1.02;
  }

  .about-copy > p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .about-copy .about-support {
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .about-story-section,
  .about-service-section,
  .about-craft-section {
    padding: 62px 18px;
  }

  .about-story-copy,
  .about-craft-copy,
  .about-story-copy h2,
  .about-craft-copy h2 {
    width: 100%;
  }

  .about-story-copy,
  .about-craft-copy {
    justify-items: center;
    text-align: center;
  }

  .about-service-inner {
    padding: 28px 16px;
  }

  .about-story-photos,
  .about-service-grid {
    grid-template-columns: 1fr;
  }

  .about-story-photo-large,
  .about-story-photos figure {
    min-height: 246px;
  }

  .about-service-heading h2,
  .about-craft-copy h2 {
    font-size: 2.16rem;
    line-height: 1.04;
  }

  .about-service-section .about-service-heading h2 {
    font-size: 2.08rem;
  }

  .about-craft-image {
    height: 300px;
  }

  .build-types-section {
    padding: 62px 18px;
  }

  .build-types-inner {
    gap: 22px;
  }

  .build-types-section .build-types-heading h2 {
    font-size: 2.22rem;
    line-height: 1.04;
  }

  .build-types-section .build-types-heading p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .build-type-photo-strip {
    grid-template-columns: 1fr;
  }

  .build-type-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .build-type-feature {
    gap: 20px;
  }

  .build-type-feature-photo {
    min-height: 300px;
  }

  .build-type-feature-photo figcaption {
    right: 18px;
    bottom: 16px;
    left: 18px;
    width: auto;
    font-size: 0.94rem;
  }

  .build-type-list-panel {
    justify-items: center;
    text-align: center;
  }

  .build-type-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .build-type-list article {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 24px 20px;
  }

  .build-type-list p {
    margin-right: auto;
    margin-left: auto;
  }

  .build-type-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .build-type-card h3 {
    font-size: 1.68rem;
  }

  .build-type-photo,
  .build-type-photo-large {
    min-height: 238px;
  }

  .build-service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    padding: 12px;
  }

  .build-service-strip strong {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 30px;
    padding: 0;
    font-size: 0.66rem;
  }

  .build-service-strip span {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .build-next-step {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 24px 20px;
    text-align: center;
  }

  .build-next-step p {
    margin-right: auto;
    margin-left: auto;
  }

  .build-next-actions {
    justify-content: center;
    width: 100%;
  }

  .build-next-actions .button {
    width: min(220px, 100%);
  }

  .seo-answer-section {
    padding: 62px 18px;
  }

  .local-trust-section {
    padding: 64px 18px;
  }

  .local-trust-panel {
    gap: 30px;
  }

  .local-trust-copy h2 {
    font-size: 2.36rem;
    line-height: 1.02;
  }

  .local-trust-copy > p,
  .local-trust-location p,
  .local-trust-list p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .local-trust-list article {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 24px 20px;
    text-align: center;
  }

  .seo-answer-inner {
    gap: 22px;
  }

  .seo-answer-section .seo-answer-heading h2 {
    font-size: 2.16rem;
    line-height: 1.04;
  }

  .seo-answer-section .seo-answer-heading p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .seo-answer-grid,
  .seo-faq-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .seo-answer-grid article,
  .seo-faq-grid article {
    min-height: 0;
    padding: 24px 20px;
  }

  .process-lede {
    margin-bottom: 28px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .process-photo-pair {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
  }

  .process-photo-pair figure {
    height: 260px;
  }

  .process-section .section-heading {
    margin-bottom: 14px;
  }

  .process-section .section-heading h2 {
    font-size: 2.18rem;
    line-height: 1.04;
  }

  .process-list article {
    min-height: 0;
    padding: 28px 22px 26px;
  }

  .process-list span {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .process-list h3 {
    font-size: 1.22rem;
  }

  .process-list p {
    font-size: 0.96rem;
  }

  .process-simple-hero {
    min-height: 430px;
    align-items: center;
    padding: 118px 18px 46px;
    background:
      linear-gradient(180deg, rgba(7, 9, 12, 0.12), rgba(7, 9, 12, 0.62)),
      url("assets/process-exterior-wrap.jpg") center 48% / cover;
  }

  .process-simple-hero div {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .process-simple-hero h1 {
    width: min(390px, 100%);
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.6rem, 11vw, 3.7rem);
    line-height: 0.98;
  }

  .process-simple-hero p:not(.eyebrow) {
    width: min(350px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .process-simple-hero .subpage-hero-actions {
    position: static;
    transform: none;
    width: min(350px, 100%);
    margin-top: 24px;
    justify-content: center;
  }

  .process-simple-intro,
  .process-simple-steps,
  .process-simple-showcase,
  .build-questions-section {
    padding: 64px 18px;
  }

  .process-simple-intro,
  .process-showcase-grid,
  .process-step-row,
  .build-questions-panel,
  .build-question {
    grid-template-columns: 1fr;
  }

  .process-simple-copy,
  .process-simple-heading,
  .build-questions-heading {
    justify-items: center;
    text-align: center;
  }

  .process-simple-copy h2,
  .process-simple-heading h2,
  .build-questions-heading h2 {
    font-size: 2.42rem;
    line-height: 1.02;
  }

  .process-simple-copy p:not(.eyebrow),
  .build-questions-heading p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .build-questions-panel {
    gap: 24px;
    padding: 26px 22px;
  }

  .build-question {
    gap: 8px;
    padding: 22px 0;
    text-align: center;
  }

  .process-simple-media img,
  .process-showcase-grid img {
    height: 390px;
    border-radius: 7px;
  }

  .process-step-row {
    width: min(430px, 100%);
  }

  .process-step-row article {
    min-height: 0;
    padding: 24px 22px;
  }

  .process-step-row span {
    margin-bottom: 18px;
  }

  .process-showcase-grid figcaption {
    margin: 0 auto;
    text-align: center;
  }

  .process-page-hero {
    min-height: 430px;
    padding: 118px 18px 46px;
    background-position: center 48%;
  }

  .process-scroll-scene,
  .process-page-hero.process-scroll-hero,
  .process-simple-hero.process-scroll-hero {
    height: auto;
    min-height: 430px;
  }

  .process-page-hero h1 {
    width: min(410px, 100%);
    font-size: clamp(2.5rem, 11vw, 3.55rem);
    line-height: 0.98;
  }

  .process-page-hero p:not(.eyebrow) {
    width: min(360px, 100%);
    font-size: 0.98rem;
    line-height: 1.54;
  }

  .subpage-hero.about-page-hero {
    min-height: 430px;
    padding: 118px 18px 46px;
    background-position: center 48%;
  }

  .subpage-hero.about-page-hero h1 {
    width: min(410px, 100%);
    font-size: clamp(2.5rem, 11vw, 3.55rem);
    line-height: 0.98;
  }

  .subpage-hero.about-page-hero p:not(.eyebrow) {
    width: min(360px, 100%);
    font-size: 0.98rem;
    line-height: 1.54;
  }

  .subpage-hero.hero-with-actions {
    min-height: 430px;
    padding: 118px 18px 46px;
  }

  .subpage-hero.hero-with-actions h1 {
    width: min(410px, 100%);
    font-size: clamp(2.5rem, 11vw, 3.55rem);
    line-height: 0.98;
  }

  .subpage-hero.hero-with-actions p:not(.eyebrow) {
    width: min(360px, 100%);
    font-size: 0.98rem;
    line-height: 1.54;
  }

  .subpage-hero.hero-with-actions .subpage-hero-actions {
    margin-top: 24px;
  }

  .subpage-hero-actions {
    display: grid;
    width: min(350px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .process-intro-section,
  .process-detail-section,
  .process-craft-section,
  .process-expect-section {
    padding: 64px 18px;
  }

  .process-intro-copy,
  .process-craft-copy,
  .process-expect-heading,
  .process-detail-heading {
    justify-items: center;
    text-align: center;
  }

  .process-intro-copy h2,
  .process-craft-copy h2,
  .process-expect-heading h2,
  .process-detail-heading h2 {
    font-size: 2.42rem;
    line-height: 1.02;
  }

  .process-intro-copy p:not(.eyebrow),
  .process-craft-copy > p,
  .process-intro-media figcaption {
    font-size: 0.98rem;
    line-height: 1.62;
    text-align: center;
  }

  .process-intro-media img,
  .process-craft-media img {
    height: 420px;
    border-radius: 7px;
  }

  .process-intro-media figcaption {
    margin: 12px auto 0;
  }

  .process-timeline,
  .process-proof-grid,
  .process-expect-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline article {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 26px 22px;
    text-align: center;
  }

  .process-proof-grid div,
  .process-expect-grid article {
    min-height: 0;
    padding: 22px;
  }

  .recent-project-grid,
  .reason-grid,
  .process-list,
  .gallery-grid,
  .refined-project-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 50px 18px 24px;
  }

  .footer-main {
    gap: 26px;
    padding-bottom: 30px;
  }

  .footer-brand,
  .footer-cta {
    grid-column: auto;
  }

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

  .footer-info div {
    padding-top: 16px;
    padding-left: 0;
    border-top: 1px solid rgba(226, 228, 255, 0.14);
    border-left: 0;
  }

  .footer-cta {
    padding: 20px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .quote-section {
    padding: 64px 18px;
  }

  .quote-card {
    padding: 30px 20px;
  }

  .quote-card-form,
  .quote-form-row {
    grid-template-columns: 1fr;
  }

  .quote-card-copy {
    justify-items: center;
    text-align: center;
  }

  .quote-card h2 {
    font-size: 2.18rem;
    line-height: 1.04;
  }

  .quote-card-copy > p {
    font-size: 0.98rem;
    line-height: 1.58;
    text-align: center;
  }

  .quote-form {
    width: 100%;
  }

  .quote-form label {
    text-align: left;
  }

  .quote-form-actions {
    display: grid;
    justify-items: center;
  }

  .quote-form .button {
    width: 100%;
  }

  .quote-form-note {
    text-align: center;
  }

  .section-heading {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  .section-heading h2,
  .section-heading p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .build-type-card,
  .recent-project-content,
  .seo-answer-grid article,
  .seo-faq-grid article,
  .project-detail-card > div:not(.project-gallery-stack),
  .project-detail-grid .project-detail-card > div:not(.project-gallery-stack),
  .visual-project-page .project-detail-card > div:not(.project-gallery-stack),
  .footer-brand,
  .footer-links,
  .footer-info,
  .footer-info div,
  .footer-cta,
  .footer-bottom {
    justify-items: center;
    text-align: center;
  }

  .build-type-card h3,
  .build-type-card p,
  .recent-project-card h3,
  .recent-project-card p,
  .seo-answer-grid h3,
  .seo-answer-grid p,
  .seo-faq-grid h3,
  .seo-faq-grid p,
  .project-detail-card h2,
  .project-detail-card p,
  .project-detail-grid .project-detail-card h2,
  .project-detail-grid .project-detail-card p,
  .visual-project-page .project-detail-card h2,
  .visual-project-page .project-detail-card p,
  .footer-brand strong,
  .footer-brand p,
  .footer-cta p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .recent-project-specs,
  .footer-contact-row {
    justify-content: center;
  }

  .project-meta,
  .project-detail-grid .project-meta {
    justify-items: center;
  }

  .project-meta div {
    width: 100%;
    text-align: center;
  }

  .footer-links a {
    width: max-content;
  }

  .section,
  .feature-band {
    padding: 58px 18px;
  }

  .project-section {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .project-section .section-heading {
    gap: 8px;
    margin-bottom: 28px;
  }

  .project-section .section-heading h2 {
    width: min(430px, 100%);
    font-size: 2.08rem;
    line-height: 1.04;
  }

  .text-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
  }

  .recent-project-card {
    grid-template-rows: auto 1fr;
  }

  .recent-project-card img,
  .project-card img,
  .hero-project img {
    height: 232px;
  }

  .recent-project-photo-scroll {
    gap: 0;
    height: clamp(250px, 62vw, 330px);
    padding: 0;
    scroll-padding: 0;
  }

  .recent-project-photo-scroll img {
    flex-basis: 100%;
    width: 100%;
    height: 100%;
  }

  .recent-project-gallery-button {
    width: 38px;
    height: 38px;
  }

  .recent-project-gallery-button-prev {
    left: 10px;
  }

  .recent-project-gallery-button-next {
    right: 10px;
  }

  .recent-project-content {
    padding: 24px 20px 26px;
  }

  .recent-project-card h3 {
    font-size: 1.22rem;
  }

  .recent-project-card p {
    font-size: 0.96rem;
  }

  .project-detail-card img,
  .project-detail-grid .project-detail-card img {
    height: 260px;
  }

  .refined-project-grid .project-detail-card img,
  .refined-project-grid .compact-gallery .project-gallery-main {
    height: 230px;
  }

  .refined-project-grid .project-gallery-stack {
    --gallery-main-height: 230px;
    grid-template-rows: 230px auto;
  }

  .project-image-pair {
    grid-template-rows: 240px 210px;
    min-height: 450px;
  }

  .project-image-pair img {
    height: 100%;
  }

  .project-gallery-stack {
    --gallery-main-height: 260px;
    grid-template-rows: 260px auto;
    min-height: 0;
  }

  .project-gallery-main {
    height: 260px;
    min-height: 0;
  }

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

  .project-gallery-thumbs img {
    height: 112px;
  }

  .project-detail-grid .compact-gallery {
    --gallery-main-height: 240px;
    grid-template-rows: 240px auto;
  }

  .project-detail-grid .compact-gallery .project-gallery-main {
    height: 240px;
  }

  .project-detail-grid .compact-gallery .project-gallery-thumbs img {
    height: 96px;
  }

  .project-detail-card > div,
  .project-detail-grid .project-detail-card > div {
    padding: 28px 22px;
  }

  .project-detail-card h2,
  .project-detail-grid .project-detail-card h2 {
    font-size: 2.15rem;
  }

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

  .feature-image img {
    min-height: 360px;
  }

  .visual-project-page .subpage-hero {
    min-height: 370px;
    padding: 112px 18px 44px;
  }

  .visual-project-page .project-portfolio {
    padding: 12px 12px 66px;
  }

  .visual-project-page .refined-project-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .visual-project-page .refined-project-grid .project-detail-card,
  .visual-project-page .refined-project-grid .project-detail-card:nth-child(1),
  .visual-project-page .refined-project-grid .project-detail-card:nth-child(2),
  .visual-project-page .refined-project-grid .project-detail-card:nth-child(3),
  .visual-project-page .refined-project-grid .project-detail-card:nth-child(7) {
    aspect-ratio: auto;
    grid-column: auto;
    grid-row: auto;
    height: clamp(250px, 64vw, 360px);
  }

  .visual-project-page .project-detail-card > div:not(.project-gallery-stack) {
    padding: 22px;
  }

  .visual-project-page .refined-project-grid .project-detail-card h2 {
    font-size: 1.75rem;
  }

  .project-video-button {
    top: 12px;
    right: 12px;
    grid-template-columns: 24px auto;
    min-width: 132px;
    min-height: 38px;
    padding: 0 12px 0 7px;
    column-gap: 8px;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }

  .project-video-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .showcase-lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    padding: 70px 12px 18px;
  }

  .showcase-lightbox-frame {
    grid-column: 1;
    grid-row: 1;
    gap: 12px;
  }

  .showcase-lightbox-frame img {
    max-height: calc(100vh - 260px);
  }

  .showcase-lightbox-frame figcaption {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .showcase-lightbox-frame small {
    font-size: 0.8rem;
  }

  .project-video-modal {
    padding: 70px 12px 18px;
  }

  .project-video-dialog {
    gap: 12px;
  }

  .project-video-frame video {
    max-height: calc(100vh - 190px);
  }

  .project-video-caption {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .project-video-caption small {
    font-size: 0.8rem;
    text-align: left;
  }

  .showcase-lightbox-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 46px;
    height: 46px;
  }

  .showcase-lightbox-prev {
    left: 12px;
  }

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

  .showcase-lightbox-thumbs {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    width: 100%;
  }

  .showcase-lightbox-thumb {
    flex-basis: 70px;
    width: 70px;
    height: 52px;
  }
}
