:root {
  --lake-950: #102a47;
  --lake-900: #183b63;
  --lake-800: #204a77;
  --ketron-blue: #2e578f;
  --sky-100: #dfeaf5;
  --sky-50: #edf3f8;
  --copper: #df713c;
  --copper-dark: #b94d23;
  --copper-pale: #f7e3d8;
  --ink: #14212e;
  --slate: #526170;
  --line: #cfd8e2;
  --cold-white: #f5f7fa;
  --white: #ffffff;
  --success: #2f6b52;
  --shadow: 0 20px 55px rgba(16, 42, 71, 0.14);
  --shadow-small: 0 9px 24px rgba(16, 42, 71, 0.11);
  --radius-small: 0.35rem;
  --radius-medium: 0.8rem;
  --radius-large: 1.35rem;
  --container: 76rem;
  --z-header: 30;
  --z-mobile: 40;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--cold-white);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

:focus-visible {
  outline: 3px solid #f3a27a;
  outline-offset: 3px;
}

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

h1,
h2,
h3,
.display {
  font-family: "Avenir Next Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.25rem, 7.4vw, 5.9rem);
}

h2 {
  font-size: clamp(2.35rem, 4.7vw, 4.4rem);
}

h3 {
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  line-height: 1.05;
}

p,
li {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--lake-950);
  font-weight: 800;
}

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

.container,
.wrap {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.narrow {
  width: min(47rem, 100%);
}

.section {
  padding-block: clamp(4.75rem, 9vw, 8.25rem);
}

.section-tight {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section-tint {
  background: var(--sky-50);
}

.section-dark {
  background: var(--lake-950);
  color: var(--white);
}

.section-dark p,
.section-dark li {
  color: #d9e3ec;
}

.section-heading {
  display: grid;
  max-width: 49rem;
  gap: 0.85rem;
  margin-bottom: clamp(2.1rem, 5vw, 4rem);
}

.section-heading p {
  max-width: 66ch;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 1.08rem;
}

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

.eyebrow,
.micro-label {
  margin-bottom: 0.65rem;
  color: var(--copper-dark);
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-dark .micro-label,
.final-cta .eyebrow {
  color: #ffb18c;
}

.lede {
  max-width: 63ch;
  color: var(--slate);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.text-link {
  color: var(--lake-800);
  font-weight: 800;
}

.text-link:hover {
  color: var(--copper-dark);
}

.btn,
.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 2px solid transparent;
  border-radius: var(--radius-small);
  padding: 0.82rem 1.2rem;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.btn:active,
.button:active {
  transform: translateY(0);
}

.btn-primary,
.button-primary {
  border-color: var(--copper);
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(185, 77, 35, 0.22);
}

.btn-primary:hover,
.button-primary:hover {
  border-color: var(--copper-dark);
  background: var(--copper-dark);
}

.btn-secondary,
.button-secondary {
  border-color: var(--lake-900);
  background: transparent;
  color: var(--lake-900);
}

.btn-secondary:hover,
.button-secondary:hover {
  background: var(--lake-900);
  color: var(--white);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.68);
  background: var(--white);
  color: var(--lake-950);
}

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

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
  color: var(--white);
}

.btn-ghost-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--lake-950);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions .btn-primary {
  min-height: 3.8rem;
  padding-inline: 1.55rem;
  font-size: 1.05rem;
}

.utility-bar {
  background: var(--lake-950);
  color: #e3ebf2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.utility-inner {
  display: flex;
  min-height: 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-inner p {
  margin: 0;
}

.utility-inner a {
  color: var(--white);
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  border-bottom: 1px solid rgba(16, 42, 71, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 18px rgba(16, 42, 71, 0.06);
}

.nav-wrap {
  display: flex;
  min-height: 5.15rem;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.65rem;
  color: var(--lake-900);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.55rem;
  aspect-ratio: 1;
  place-items: center;
  transform: skewX(-9deg);
  border-radius: 0.2rem;
  background: var(--lake-900);
  color: var(--white);
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
}

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

.brand-copy strong {
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 1.42rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 0.28rem;
  color: var(--copper-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 1.5vw, 1.4rem);
}

.desktop-nav a {
  color: #263a4e;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--copper-dark);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.55rem;
}

.header-phone {
  color: var(--lake-950);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.header-actions .btn {
  min-height: 2.8rem;
  padding: 0.68rem 0.85rem;
  font-size: 0.84rem;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
  color: var(--lake-950);
  cursor: pointer;
  font-size: 1.35rem;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding-block: 0.65rem 1rem;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: block;
  padding: 0.65rem 0;
  color: var(--lake-950);
  font-weight: 800;
  text-decoration: none;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--lake-900);
  color: var(--white);
}

.home-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -18rem;
  width: min(52vw, 44rem);
  aspect-ratio: 1;
  transform: rotate(18deg);
  border: 5rem solid rgba(255, 255, 255, 0.035);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: clamp(38rem, 77vh, 47rem);
  grid-template-columns: minmax(0, 1.04fr) minmax(24rem, 0.96fr);
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.5rem, 8vw, 7.25rem) clamp(1.5rem, 6vw, 5.75rem) clamp(4.5rem, 8vw, 6.25rem) max(1.25rem, calc((100vw - var(--container)) / 2));
}

.home-hero .eyebrow {
  color: #ffc0a1;
}

.home-hero h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-size: clamp(3.15rem, 6.3vw, 5.35rem);
}

.hero-copy .lede {
  max-width: 39rem;
  margin-bottom: 1.6rem;
  color: #e3ebf3;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.15rem;
  margin: 1.65rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.hero-facts li {
  position: relative;
  padding-left: 1rem;
  color: #eaf1f7;
  font-size: 0.84rem;
  font-weight: 750;
}

.hero-facts li::before {
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.hero-media {
  position: relative;
  min-height: 36rem;
  background: #c6d2de;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(1.03);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(24, 59, 99, 0.18), transparent 35%), linear-gradient(0deg, rgba(16, 42, 71, 0.42), transparent 42%);
  content: "";
  pointer-events: none;
}

.photo-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  max-width: 17rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-small);
  background: rgba(16, 42, 71, 0.91);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.4;
}

.hero-review {
  position: absolute;
  bottom: 1.25rem;
  left: -3.5rem;
  z-index: 4;
  display: grid;
  width: min(15.5rem, 45%);
  padding: 0.48rem;
  transform: rotate(-2deg);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 0.9rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-review img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.55rem;
  object-fit: cover;
}

.hero-review span {
  padding: 0.55rem 0.45rem 0.35rem;
  color: var(--lake-950);
  font-size: 0.7rem;
  font-weight: 800;
}

.trust-ledger,
.proof-rail {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-ledger-inner,
.proof-rail-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  align-items: stretch;
}

.trust-ledger-item {
  display: flex;
  min-height: 6.1rem;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem clamp(0.75rem, 2vw, 1.5rem);
  border-right: 1px solid var(--line);
}

.trust-ledger-item:first-child {
  padding-left: 0;
}

.trust-ledger-item:last-child {
  border-right: 0;
}

.trust-ledger-item strong,
.trust-ledger-item span {
  display: block;
}

.trust-ledger-item strong {
  color: var(--lake-950);
  font-size: 0.92rem;
  line-height: 1.25;
}

.trust-ledger-item span {
  margin-top: 0.18rem;
  color: var(--slate);
  font-size: 0.72rem;
  line-height: 1.35;
}

.trust-symbol {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--lake-900);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
}

.review-stage {
  overflow: hidden;
  background: var(--sky-50);
}

.review-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.review-intro {
  position: sticky;
  top: 8rem;
}

.review-intro h2 {
  margin-bottom: 1.1rem;
}

.review-intro p {
  color: var(--slate);
}

.review-source-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--lake-900);
  font-size: 0.92rem;
  font-weight: 850;
}

.review-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.9rem;
}

.review-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.review-card:nth-child(1) {
  grid-column: 1 / span 7;
}

.review-card:nth-child(2) {
  grid-column: 8 / span 5;
  margin-top: 3.5rem;
}

.review-card:nth-child(3) {
  grid-column: 1 / span 5;
}

.review-card:nth-child(4) {
  grid-column: 6 / span 7;
  margin-top: -1.5rem;
}

.review-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.review-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem;
  color: var(--lake-950);
  font-size: 0.76rem;
  font-weight: 850;
}

.review-card-meta span:last-child {
  color: #8c5d00;
  letter-spacing: 0.03em;
}

.video-slot {
  grid-column: 2 / span 10;
  display: grid;
  min-height: 12rem;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 1.15rem;
  margin-top: 0.4rem;
  border: 1px dashed var(--ketron-blue);
  border-radius: var(--radius-medium);
  padding: 1.2rem;
  background: var(--white);
}

.video-slot-visual {
  position: relative;
  min-height: 9rem;
  overflow: hidden;
  border-radius: var(--radius-small);
  background: var(--lake-900);
}

.video-slot-visual img {
  width: 100%;
  height: 100%;
  min-height: 9rem;
  object-fit: cover;
  filter: grayscale(0.25) brightness(0.72);
}

.video-slot-visual span {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 3.25rem;
  aspect-ratio: 1;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
}

.video-slot h3 {
  margin-bottom: 0.6rem;
  font-size: 1.45rem;
}

.video-slot p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.88rem;
}

.service-rail,
.decision-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.service-panel,
.service-card {
  position: relative;
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--lake-900);
  color: var(--white);
  box-shadow: var(--shadow-small);
  text-decoration: none;
}

.service-panel:nth-child(1) {
  grid-column: 1 / span 7;
  min-height: 30rem;
}

.service-panel:nth-child(2) {
  grid-column: 8 / span 5;
  min-height: 30rem;
}

.service-panel:nth-child(3) {
  grid-column: 1 / span 4;
}

.service-panel:nth-child(4) {
  grid-column: 5 / span 4;
}

.service-panel:nth-child(5) {
  grid-column: 9 / span 4;
}

.service-panel > img,
.service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-panel::after,
.service-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 42, 71, 0.02) 20%, rgba(16, 42, 71, 0.95) 100%);
  content: "";
}

.service-panel:hover > img,
.service-card:hover > img {
  transform: scale(1.035);
}

.service-panel-content,
.service-card-content {
  position: relative;
  z-index: 1;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.service-panel h3,
.service-card h3 {
  max-width: 13ch;
  margin-bottom: 0.55rem;
  color: var(--white);
}

.service-panel p,
.service-card p {
  max-width: 39ch;
  margin-bottom: 0.75rem;
  color: #e2eaf1;
  font-size: 0.92rem;
  line-height: 1.5;
}

.service-panel-label {
  display: inline-block;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  font-weight: 850;
}

.proof-note {
  margin-top: 1rem;
  color: var(--slate);
  font-size: 0.78rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.85fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.split.reverse > :first-child {
  order: 2;
}

.split-copy h2 {
  margin-bottom: 1rem;
}

.split-copy p {
  max-width: 62ch;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  min-height: 28rem;
  border-radius: var(--radius-large) var(--radius-small) var(--radius-large) var(--radius-small);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-caption {
  margin: 0.75rem 0 0;
  color: var(--slate);
  font-size: 0.75rem;
}

.promise-points {
  display: grid;
  gap: 0;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  list-style: none;
}

.promise-points li {
  padding: 0.78rem 0;
  border-top: 1px solid rgba(16, 42, 71, 0.15);
  color: #30465b;
  font-weight: 750;
}

.standard-section {
  position: relative;
  overflow: hidden;
  background: var(--lake-950);
  color: var(--white);
}

.standard-section::after {
  position: absolute;
  right: -10%;
  bottom: 10%;
  left: 36%;
  height: 3px;
  transform: rotate(-8deg);
  background: var(--copper);
  box-shadow: 0 16px 0 rgba(223, 113, 60, 0.22);
  content: "";
  transform-origin: center;
}

.standard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.standard-intro h2 {
  color: var(--white);
}

.standard-intro p {
  color: #d7e2eb;
}

.standard-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.standard-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.standard-step-number {
  color: #ffad84;
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
}

.standard-step h3 {
  margin-bottom: 0.45rem;
  color: var(--white);
  font-size: 1.55rem;
}

.standard-step p {
  margin-bottom: 0;
  color: #d7e2eb;
  font-size: 0.94rem;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(23rem, 0.65fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.process-list,
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.process-item > strong {
  color: var(--copper-dark);
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 1.4rem;
}

.process-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
}

.process-item p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.process-proof {
  position: sticky;
  top: 8rem;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--lake-900);
  color: var(--white);
  box-shadow: var(--shadow);
}

.process-proof img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.process-proof-copy {
  padding: 1.4rem;
}

.process-proof-copy p {
  color: #e0e9f1;
}

.honesty-band {
  background: var(--white);
}

.honesty-statement {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-block: 1px solid var(--line);
}

.honesty-statement h2 {
  margin-bottom: 0;
  color: var(--lake-950);
}

.honesty-statement p {
  max-width: 62ch;
  margin-bottom: 1rem;
  color: var(--slate);
}

.local-grid,
.related-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.location-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.location-links a {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--lake-900);
  font-weight: 800;
}

.location-links a:nth-child(odd) {
  margin-right: 1.25rem;
}

.capacity-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  padding: clamp(1.4rem, 4vw, 2.3rem);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.capacity-note strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--lake-950);
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1;
}

.capacity-note p {
  margin-bottom: 0;
  color: var(--slate);
}

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

.faq-list summary {
  position: relative;
  padding: 1.15rem 2.5rem 1.15rem 0;
  cursor: pointer;
  color: var(--lake-950);
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 1.12rem;
  right: 0.3rem;
  color: var(--copper-dark);
  content: "+";
  font-size: 1.35rem;
  font-weight: 800;
}

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

.faq-list details p {
  max-width: 67ch;
  padding: 0 2.5rem 1.35rem 0;
  margin: 0;
  color: var(--slate);
}

.resource-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.resource-row {
  display: grid;
  grid-template-columns: 10rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.resource-row small {
  color: var(--copper-dark);
  font-size: 0.75rem;
  font-weight: 850;
}

.resource-row strong {
  color: var(--lake-950);
}

.resource-row span {
  color: var(--lake-800);
  font-size: 0.83rem;
  font-weight: 850;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--lake-900);
  color: var(--white);
}

.final-cta::before {
  position: absolute;
  top: -8rem;
  right: -6rem;
  width: 30rem;
  height: 18rem;
  transform: rotate(-13deg);
  border: 2.2rem solid rgba(255, 255, 255, 0.05);
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 2rem;
  align-items: end;
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.final-cta h2 {
  max-width: 13ch;
  margin-bottom: 0.85rem;
  color: var(--white);
}

.final-cta p {
  max-width: 53ch;
  margin-bottom: 0;
  color: #dce7f0;
}

.final-cta .hero-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 4rem 0 6.2rem;
  background: var(--lake-950);
  color: #d0dce6;
  font-size: 0.87rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand p {
  max-width: 31ch;
}

.footer-title {
  margin-bottom: 0.75rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.footer-links a,
.site-footer a {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  color: #d7e1ea;
  text-decoration: none;
}

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

.social-links {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-small);
  padding: 0.55rem 0.7rem;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 850;
  text-decoration: none;
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #aebdca;
  font-size: 0.76rem;
}

.mobile-sticky {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--z-mobile);
  grid-template-columns: 0.8fr 1.2fr 1fr;
  gap: 0.35rem;
  border-top: 1px solid var(--line);
  padding: 0.5rem;
  background: var(--white);
  box-shadow: 0 -10px 24px rgba(16, 42, 71, 0.14);
}

.mobile-sticky a {
  display: grid;
  min-height: 3rem;
  place-items: center;
  border: 2px solid var(--lake-900);
  border-radius: var(--radius-small);
  color: var(--lake-900);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.mobile-sticky .sticky-schedule {
  border-color: var(--copper);
  background: var(--copper);
  color: var(--white);
}

.mobile-sticky .sticky-price {
  background: var(--lake-900);
  color: var(--white);
}

/* Interior-page system */
.page-hero,
.interior-hero {
  position: relative;
  overflow: hidden;
  background: var(--sky-50);
}

.page-hero::after,
.interior-hero::after {
  position: absolute;
  top: -18rem;
  right: -13rem;
  width: 43rem;
  aspect-ratio: 1;
  transform: rotate(21deg);
  border: 6rem solid rgba(46, 87, 143, 0.06);
  content: "";
  pointer-events: none;
}

.page-hero .hero-grid,
.interior-hero .hero-grid {
  min-height: clamp(28rem, 58vh, 38rem);
  grid-template-columns: 1fr 0.82fr;
}

.page-hero .hero-copy,
.interior-hero .hero-copy {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  color: var(--ink);
}

.page-hero h1,
.interior-hero h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  color: var(--lake-950);
}

.page-hero .lede,
.interior-hero .lede {
  margin-bottom: 1.4rem;
}

.page-hero .hero-media,
.interior-hero .hero-media {
  min-height: 28rem;
  margin: 2rem 0 2rem 2rem;
  border-radius: var(--radius-large) 0 0 var(--radius-small);
}

.page-hero.hero-metal {
  background: #e9eef1;
}

.page-hero.hero-repair {
  background: #eef3f8;
}

.page-hero.hero-inspection {
  background: #e4edf4;
}

.page-hero.hero-care {
  background: #edf1f5;
}

.content-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.35fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.prose {
  max-width: 72ch;
}

.prose h2,
.prose h3 {
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
}

.prose p,
.prose li {
  color: #33495e;
}

.prose a {
  color: var(--lake-800);
  font-weight: 800;
}

.sidebar-note {
  position: sticky;
  top: 8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  padding: 1.4rem;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.sidebar-note h3 {
  font-size: 1.45rem;
}

.sidebar-note p,
.sidebar-note li {
  color: var(--slate);
  font-size: 0.9rem;
}

.sidebar-note .btn {
  width: 100%;
  margin-top: 0.55rem;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
}

.check-list li::before {
  position: absolute;
  top: 0.12rem;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

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

.decision-card,
.related-card {
  border-top: 3px solid var(--lake-900);
  padding: 1.45rem;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.decision-card h3,
.related-card h3 {
  font-size: 1.45rem;
}

.decision-card p,
.related-card p {
  color: var(--slate);
  font-size: 0.92rem;
}

.related-card a {
  color: var(--lake-800);
  font-weight: 850;
}

.contact-options {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.contact-option {
  border-radius: var(--radius-medium);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.contact-option.primary {
  background: var(--lake-900);
  color: var(--white);
}

.contact-option.primary p {
  color: #dce7ef;
}

.location-card-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.location-card {
  min-height: 14rem;
  border-radius: var(--radius-medium);
  padding: 1.5rem;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.location-card h3 {
  font-size: 1.7rem;
}

.location-card a {
  color: var(--lake-800);
  font-weight: 850;
}

.local-route-section,
.service-city-guides {
  background: var(--brand-paper);
}

.local-route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12.5rem), 1fr));
  gap: 0.85rem;
}

.local-route-grid > a {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.45rem;
  min-height: 10.5rem;
  border-top: 3px solid var(--brand-navy-deep);
  border-radius: 0 0 var(--radius-medium) var(--radius-medium);
  padding: 1.15rem;
  background: var(--brand-white);
  color: var(--brand-ink);
  box-shadow: var(--shadow-small);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.local-route-grid > a:hover,
.local-route-grid > a:focus-visible {
  transform: translateY(-0.2rem);
  box-shadow: var(--shadow-medium);
}

.local-route-grid > a > span {
  color: #53677d;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.local-route-grid > a > strong,
.local-route-grid > a > h3 {
  margin: 0;
  color: var(--brand-navy-deep);
  font-family: var(--display-font);
  font-size: 1.18rem;
  line-height: 1.15;
}

.local-route-grid > a > small,
.local-route-grid > a > p {
  margin: 0;
  color: #455b70;
  font-size: 0.8rem;
  line-height: 1.5;
}

.board-hero {
  padding: 4rem 0 3rem;
  background: var(--lake-950);
  color: var(--white);
}

.board-hero h1 {
  margin-bottom: 1rem;
  color: var(--white);
}

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

.board-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  padding: 1.4rem;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.board-card h2 {
  font-size: 1.8rem;
}

.board-card a {
  color: var(--lake-800);
  font-weight: 850;
}

/* Shared interior compatibility layer */
.site-header > .nav-wrap {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.brand > span:last-child:not(.brand-mark) {
  display: grid;
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 0.95;
}

.brand > span:last-child:not(.brand-mark) small {
  display: block;
  margin-top: 0.28rem;
  color: var(--copper-dark);
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-link {
  color: var(--lake-950);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.btn-large,
.button-large {
  min-height: 3.65rem;
  padding-inline: 1.45rem;
  font-size: 1.02rem;
}

.proof-rail > .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-rail > .container > span {
  display: grid;
  min-height: 6.1rem;
  align-content: center;
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--line);
  color: var(--slate);
  font-size: 0.73rem;
  line-height: 1.35;
}

.proof-rail > .container > span:first-child {
  padding-left: 0;
}

.proof-rail > .container > span:last-child {
  border-right: 0;
}

.proof-rail > .container strong {
  display: block;
  margin-bottom: 0.16rem;
  color: var(--lake-950);
  font-size: 0.88rem;
}

.page-hero .hero-copy,
.interior-hero .hero-copy {
  padding-inline: 0;
}

.page-hero .hero-lede,
.interior-hero .hero-lede {
  max-width: 63ch;
  margin-bottom: 1.4rem;
  color: var(--slate);
  font-size: clamp(1.08rem, 2vw, 1.23rem);
}

.breadcrumbs,
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  color: var(--slate);
  font-size: 0.75rem;
  font-weight: 750;
}

.breadcrumbs a,
.breadcrumb a {
  color: var(--lake-800);
}

.hero-note {
  margin: 1rem 0 0;
  color: var(--slate);
  font-size: 0.76rem;
  font-weight: 750;
}

.page-hero .hero-media figcaption,
.interior-hero .hero-media figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-small);
  background: rgba(16, 42, 71, 0.92);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 750;
}

.decision-grid > article,
.decision-panel {
  border-top: 3px solid var(--lake-900);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.decision-panel h3 {
  font-size: 1.5rem;
}

.decision-panel p {
  color: var(--slate);
}

.related-grid > a {
  display: block;
  border-top: 3px solid var(--lake-900);
  padding: 1.35rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-small);
  text-decoration: none;
}

.related-grid > a > span {
  color: var(--copper-dark);
  font-size: 0.75rem;
  font-weight: 850;
}

.related-grid > a h3 {
  margin: 0.45rem 0;
  font-size: 1.4rem;
}

.related-grid > a p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.9rem;
}

.review-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.review-gallery figure,
.review-feature {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.review-gallery img,
.review-feature img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: center;
  margin-top: 1.25rem;
  color: var(--slate);
  font-size: 0.8rem;
}

.social-row a {
  color: var(--lake-800);
  font-weight: 850;
}

.process-list > li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.2rem 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  grid-row: 1 / span 2;
  color: var(--copper-dark);
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.process-list > li h3,
.process-list > li p {
  grid-column: 2;
}

.process-list > li h3 {
  margin-bottom: 0.25rem;
  font-size: 1.35rem;
}

.process-list > li p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.services-hub .service-card {
  display: grid;
  min-height: 0;
  grid-column: span 5;
  justify-content: initial;
  overflow: hidden;
  border-top: 3px solid var(--lake-900);
  border-radius: var(--radius-medium);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-small);
}

.services-hub .service-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.services-hub .service-card:nth-child(4),
.services-hub .service-card:nth-child(5) {
  grid-column: span 6;
}

.services-hub .service-card::after {
  display: none;
}

.services-hub .service-card > div {
  position: relative;
  z-index: 1;
}

.services-hub .service-card > img {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 1.4;
  margin-top: 1.25rem;
  border-radius: var(--radius-small);
  object-fit: cover;
}

.services-hub .service-card h3 {
  color: var(--lake-950);
}

.services-hub .service-card p {
  color: var(--slate);
}

.service-number {
  color: var(--copper-dark);
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.card-kicker,
.note-label {
  margin: 0.45rem 0;
  color: var(--copper-dark) !important;
  font-size: 0.75rem !important;
  font-weight: 850;
}

.section-dark .standard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.section-dark .standard-grid .standard-step {
  display: block;
  padding: 1.5rem;
  border: 0;
  background: var(--lake-950);
}

.section-dark .standard-grid .standard-step > span {
  color: #ffb18c;
  font-size: 0.78rem;
  font-weight: 850;
}

.section-dark .standard-grid .standard-step h3 {
  margin-top: 0.5rem;
}

.final-cta > .container:not(.final-cta-inner) {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 2rem;
  align-items: end;
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.final-cta > .container > div:first-child h2 {
  max-width: 14ch;
  margin-bottom: 0.85rem;
  color: var(--white);
}

.final-cta > .container > div:first-child p:last-child {
  max-width: 54ch;
  margin-bottom: 0;
  color: #dce7f0;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 0.32rem;
}

.site-footer nav h2,
.site-footer nav .footer-heading {
  margin-bottom: 0.45rem;
  color: var(--white);
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.brand-footer {
  margin-bottom: 0.8rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-sticky .sticky-schedule,
.mobile-sticky .sticky-primary,
.mobile-sticky .primary {
  border-color: var(--copper);
  background: var(--copper);
  color: var(--white);
}

.mobile-sticky .sticky-price {
  background: var(--lake-900);
  color: var(--white);
}

@media (max-width: 69rem) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .btn-secondary,
  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav:not([hidden]) {
    display: block;
  }

  .trust-ledger-inner,
  .proof-rail-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-ledger-item:nth-child(2) {
    border-right: 0;
  }

  .trust-ledger-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-ledger-item:first-child {
    padding-left: clamp(0.75rem, 2vw, 1.5rem);
  }
}

@media (max-width: 52rem) {
  body {
    padding-bottom: 4.15rem;
    font-size: 1rem;
  }

  .container,
  .wrap {
    width: min(100% - 1.5rem, var(--container));
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-inner p:last-child {
    display: none;
  }

  .nav-wrap {
    min-height: 4.55rem;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .hero-grid,
  .page-hero .hero-grid,
  .interior-hero .hero-grid,
  .review-layout,
  .split,
  .standard-grid,
  .process-layout,
  .honesty-statement,
  .local-grid,
  .related-grid,
  .final-cta-inner,
  .footer-grid,
  .content-columns,
  .contact-options,
  .location-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy,
  .page-hero .hero-copy,
  .interior-hero .hero-copy {
    padding: 4rem 0 3.25rem;
  }

  .home-hero .hero-copy {
    width: min(100% - 1.5rem, var(--container));
    margin-inline: auto;
  }

  .home-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.85rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-media,
  .page-hero .hero-media,
  .interior-hero .hero-media {
    min-height: 26rem;
    margin: 0;
    border-radius: 0;
  }

  .hero-review {
    bottom: 1rem;
    left: 0.75rem;
    width: min(13rem, 45%);
  }

  .photo-note {
    right: 0.75rem;
    max-width: 48%;
  }

  .review-intro,
  .process-proof,
  .sidebar-note {
    position: static;
  }

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

  .review-card:nth-child(n) {
    grid-column: auto;
    margin-top: 0;
  }

  .video-slot {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .service-rail,
  .decision-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .service-panel:nth-child(n),
  .service-card:nth-child(n) {
    grid-column: auto;
    min-height: 22rem;
  }

  .split.reverse > :first-child {
    order: initial;
  }

  .split-media img {
    min-height: 22rem;
  }

  .standard-section::after {
    right: -30%;
    left: 25%;
  }

  .location-links {
    grid-template-columns: 1fr;
  }

  .location-links a:nth-child(odd) {
    margin-right: 0;
  }

  .resource-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .final-cta .hero-actions {
    justify-content: flex-start;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-sticky {
    display: grid;
  }

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

@media (max-width: 34rem) {
  .brand-copy small {
    display: none;
  }

  .trust-ledger-inner,
  .proof-rail-inner,
  .review-mosaic,
  .footer-grid,
  .decision-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .trust-ledger-item {
    min-height: 5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-ledger-item:last-child {
    border-bottom: 0;
  }

  .review-card:nth-child(n) {
    grid-column: 1;
  }

  .hero-facts {
    display: grid;
  }

  .footer-brand,
  .video-slot {
    grid-column: 1;
  }
}

@media (max-width: 69rem) {
  .desktop-nav.nav-open {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0.65rem 1rem 1rem;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-small);
  }

  .desktop-nav.nav-open a {
    padding: 0.45rem 0;
  }

  .phone-link {
    display: none;
  }

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

  .proof-rail > .container > span:nth-child(2) {
    border-right: 0;
  }

  .proof-rail > .container > span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 52rem) {
  .final-cta > .container:not(.final-cta-inner) {
    grid-template-columns: 1fr;
  }

  .services-hub .service-card:nth-child(n) {
    min-height: 0;
    grid-column: auto;
    grid-row: auto;
  }

  .section-dark .standard-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 34rem) {
  .proof-rail > .container,
  .review-gallery {
    grid-template-columns: 1fr;
  }

  .proof-rail > .container > span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .mobile-sticky,
  .site-footer {
    display: none !important;
  }

  body {
    padding: 0;
    background: var(--white);
  }
}

/* ======================================================================
   CONFIRMED FABLE 5 CUSTOMER-SITE DIRECTION
   Source: Chronos rebrand/site-v2 craft pass, adapted to the current
   Hook brief. This is intentionally not the KETRON OS application UI.
   ====================================================================== */

@font-face {
  font-family: "Alfa Slab One";
  src: url("../fonts/alfa-slab-one-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --brand-navy: #275388;
  --brand-navy-deep: #233d5d;
  --brand-ink: #162a42;
  --brand-orange: #f98a49;
  --brand-orange-dark: #b24f20;
  --brand-sky: #9db2d1;
  --brand-sky-light: #c2cee8;
  --brand-paper: #f5f7fa;
  --brand-white: #ffffff;
  --display-font: "Alfa Slab One", "Rockwell Extra Bold", Rockwell, "Arial Black", sans-serif;
  --body-font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  --hard-shadow: 0 5px 0 var(--brand-navy-deep);
  --soft-shadow: 0 18px 44px rgba(22, 42, 66, 0.18);
}

body {
  background: var(--brand-paper);
  color: var(--brand-ink);
  font-family: var(--body-font);
}

h1,
h2,
h3,
.display {
  font-family: var(--display-font);
  font-weight: 400;
  letter-spacing: 0;
}

.fable-customer-site {
  padding-bottom: 4.5rem;
}

.fable-customer-site .container {
  width: min(76rem, calc(100% - 2.5rem));
}

.fable-customer-site .utility-bar {
  background: var(--brand-navy-deep);
  color: var(--brand-white);
}

.fable-customer-site .utility-inner {
  min-height: 2.25rem;
}

.fable-customer-site .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--brand-orange);
  background: var(--brand-white);
  box-shadow: 0 4px 18px rgba(22, 42, 66, 0.08);
}

.fable-customer-site .nav-wrap {
  min-height: 5.2rem;
  gap: 1rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo img {
  width: auto;
  height: 4rem;
  object-fit: contain;
}

.fable-customer-site .desktop-nav {
  margin-left: auto;
}

.fable-customer-site .desktop-nav a {
  border-bottom: 3px solid transparent;
  color: var(--brand-ink);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.fable-customer-site .desktop-nav a:hover {
  border-bottom-color: var(--brand-orange);
}

.fable-customer-site .header-actions {
  gap: 0.55rem;
}

.fable-customer-site .header-phone {
  font-size: 0.84rem;
}

.fable-customer-site .btn {
  border-radius: 0.5rem;
  font-family: var(--display-font);
  font-weight: 400;
}

.fable-customer-site .btn-primary {
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  color: var(--brand-ink);
  box-shadow: var(--hard-shadow);
}

.fable-customer-site .btn-primary:hover {
  border-color: var(--brand-orange-dark);
  background: var(--brand-orange-dark);
  color: var(--brand-white);
}

.fable-customer-site .btn-secondary {
  border-color: var(--brand-navy);
  color: var(--brand-navy);
}

.btn-outline-light {
  border: 3px solid var(--brand-sky-light);
  background: transparent;
  color: var(--brand-white);
  box-shadow: none;
}

.btn-outline-light:hover {
  border-color: var(--brand-orange);
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-white);
}

.btn-large {
  min-height: 3.7rem;
  padding: 0.95rem 1.45rem;
  font-size: 1.05rem;
}

.nav-toggle {
  width: 3rem;
  height: 3rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  border: 2px solid var(--brand-navy);
  border-radius: 0.45rem;
  background: var(--brand-white);
}

.nav-toggle.menu-bars span {
  width: 1.35rem;
  height: 3px;
  background: var(--brand-navy);
}

.mobile-nav {
  padding-bottom: 1rem;
}

.mobile-nav a {
  border-radius: 0.35rem;
  color: var(--brand-ink);
  text-decoration: none;
}

.mobile-nav a.mobile-primary {
  background: var(--brand-orange);
  color: var(--brand-ink);
  font-family: var(--display-font);
  text-align: center;
}

.hero-home {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5.5vw, 5rem) 0 7rem;
  background: var(--brand-navy);
  color: var(--brand-white);
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.075) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.075) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,0.58) 75%, transparent);
}

.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero-home .hero-copy {
  display: block;
  padding: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--brand-orange-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 0.72rem;
  height: 0.72rem;
  flex: 0 0 auto;
  background: var(--brand-orange);
}

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

.hero-home .hero-copy h1 {
  max-width: 12.5ch;
  margin-bottom: 1.35rem;
  color: var(--brand-white);
  font-size: clamp(3.15rem, 5.4vw, 5.25rem);
  line-height: 0.96;
}

.hero-home .hero-copy h1 strong {
  color: var(--brand-orange);
  font-weight: inherit;
}

.hero-home .hero-sub {
  max-width: 52ch;
  margin-bottom: 1.75rem;
  color: var(--brand-sky-light);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
}

.neighbor-proof {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.neighbor-proof p {
  margin: 0;
  color: var(--brand-sky-light);
  font-size: 0.83rem;
  line-height: 1.35;
}

.neighbor-proof p strong {
  color: var(--brand-white);
}

.neighbor-proof p span {
  color: var(--brand-orange);
  letter-spacing: 0.08em;
}

.neighbor-faces {
  display: flex;
  align-items: center;
}

.neighbor-faces img {
  width: 3rem;
  height: 3rem;
  margin-left: -0.55rem;
  border: 3px solid var(--brand-white);
  border-radius: 50%;
  background: var(--brand-white);
  object-fit: cover;
}

.neighbor-faces img:first-child {
  margin-left: 0;
}

.problem-launcher {
  position: relative;
  border-top: 6px solid var(--brand-orange);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--brand-white);
  color: var(--brand-ink);
  box-shadow: 0 10px 0 var(--brand-navy-deep), var(--soft-shadow);
}

.launcher-kicker {
  margin-bottom: 0.45rem;
  color: var(--brand-orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.problem-launcher h2 {
  margin-bottom: 0.45rem;
  color: var(--brand-ink);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.15;
}

.problem-launcher > p:not(.launcher-kicker):not(.launcher-note) {
  margin-bottom: 1rem;
  color: #5d7188;
  font-size: 0.92rem;
}

.option-links {
  display: grid;
  gap: 0.65rem;
}

.option-links a {
  display: grid;
  grid-template-columns: 2.35rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  border: 2px solid #ccd7e3;
  border-radius: 0.55rem;
  padding: 0.7rem 0.8rem;
  background: var(--brand-paper);
  color: var(--brand-ink);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.option-links a:hover,
.option-links .option-urgent {
  border-color: var(--brand-orange-dark);
  background: #fff8f4;
}

.option-icon {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 0.4rem;
  background: #feefe6;
  color: var(--brand-orange-dark);
  font-family: var(--display-font);
}

.option-urgent .option-icon {
  background: var(--brand-orange);
  color: var(--brand-ink);
}

.option-links b {
  color: var(--brand-orange-dark);
  font-size: 1.25rem;
}

.launcher-note {
  margin: 1rem 0 0;
  color: #61748a;
  font-size: 0.74rem;
  text-align: center;
}

.roofline {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  line-height: 0;
}

.roofline svg {
  width: 100%;
  height: auto;
}

.hero-home .ridge { fill: rgba(245, 247, 250, 0.2); }
.hero-home .pines { fill: rgba(245, 247, 250, 0.48); }
.hero-home .street { fill: var(--brand-paper); }

.proof-ledger {
  padding: 2.5rem 0 3.5rem;
  background: var(--brand-paper);
}

.proof-ledger-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.proof-ledger article {
  display: flex;
  gap: 0.8rem;
  min-width: 0;
  border-top: 4px solid var(--brand-orange);
  border-radius: 0 0 0.75rem 0.75rem;
  padding: 1.1rem;
  background: var(--brand-white);
  box-shadow: 0 5px 18px rgba(22, 42, 66, 0.08);
}

.proof-ledger article > span {
  color: var(--brand-orange-dark);
  font-family: var(--display-font);
}

.proof-ledger h2 {
  margin: 0 0 0.25rem;
  color: var(--brand-ink);
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
}

.proof-ledger p {
  margin: 0;
  color: #5a6d83;
  font-size: 0.82rem;
  line-height: 1.45;
}

.section-heading {
  max-width: none;
}

.section-heading h2,
.story-copy h2,
.video-plan h2,
.final-cta h2,
.standard-grid h2 {
  color: var(--brand-ink);
  font-size: clamp(2.25rem, 4.5vw, 4.2rem);
  line-height: 1.08;
}

.visual-reviews {
  position: relative;
  overflow: hidden;
  padding-bottom: 9rem;
  background: var(--brand-navy);
  color: var(--brand-white);
}

.review-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: end;
}

.review-heading h2 {
  max-width: 14ch;
  color: var(--brand-white);
}

.review-heading > p {
  color: var(--brand-sky-light);
}

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

.visual-review-card {
  overflow: hidden;
  border-top: 5px solid var(--brand-orange);
  border-radius: 0.85rem;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  background: var(--brand-white);
  box-shadow: 0 7px 0 var(--brand-navy-deep);
}

.review-person {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.visual-review-card .review-person img {
  width: 4.75rem;
  height: 4.75rem;
  flex: 0 0 auto;
  border: 3px solid var(--brand-navy);
  border-radius: 50%;
  object-fit: cover;
}

.visual-review-card .review-person p {
  display: grid;
  gap: 0.05rem;
  margin: 0;
  padding: 0;
  color: var(--brand-ink);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
}

.visual-review-card .review-person p span {
  color: var(--brand-orange-dark);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.visual-review-card .review-person small {
  color: #607287;
  font-size: 0.7rem;
  font-weight: 750;
}

.visual-review-card blockquote {
  margin: 1.15rem 0 0;
  color: var(--brand-ink);
  font-family: var(--display-font);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.45;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.visual-reviews .pitch path {
  fill: var(--brand-white);
}

.family-story {
  background: var(--brand-white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(19rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.logo-stage {
  position: relative;
  transform: rotate(-1.5deg);
  border: 3px solid var(--brand-navy-deep);
  border-radius: 0.9rem;
  padding: clamp(2rem, 5vw, 4rem) 1.5rem;
  background: var(--brand-white);
  box-shadow: 10px 10px 0 var(--brand-navy-deep);
}

.logo-stage img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-stage span {
  position: absolute;
  right: 1rem;
  bottom: 0.7rem;
  color: #65778c;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brothers-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  transform: rotate(-1deg);
  border: 3px solid var(--brand-navy-deep);
  border-radius: 0.9rem;
  padding: 0.7rem;
  background: var(--brand-paper);
  box-shadow: 10px 10px 0 var(--brand-navy-deep);
}

.brother-card,
.founder-pair figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 0.55rem;
  background: var(--brand-navy-deep);
}

.brother-card > img,
.founder-pair figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
}

.brother-card figcaption {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  left: 0.45rem;
  display: grid;
  gap: 0.05rem;
  border-radius: 0.35rem;
  padding: 0.55rem 0.65rem;
  background: rgba(8, 31, 56, 0.9);
  color: var(--brand-white);
  line-height: 1.15;
}

.brother-card figcaption strong {
  font-family: var(--display-font);
  font-size: 1rem;
}

.brother-card figcaption span {
  color: #dce7ef;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brothers-mark {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  min-height: 4.3rem;
  border-radius: 0.55rem;
  padding: 0.55rem 0.8rem;
  background: var(--brand-white);
}

.brothers-mark img {
  width: min(42%, 8.5rem);
  height: auto;
  object-fit: contain;
}

.brothers-mark span {
  color: #53677d;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-align: right;
  text-transform: uppercase;
}

.founder-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: -0.25rem -0.25rem 1.35rem;
}

.founder-pair figure {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-pair figure img {
  aspect-ratio: 4 / 4.6;
}

.founder-pair figcaption {
  position: absolute;
  right: 0.35rem;
  bottom: 0.35rem;
  left: 0.35rem;
  border-radius: 0.3rem;
  padding: 0.45rem 0.5rem;
  background: rgba(8, 31, 56, 0.88);
  color: var(--brand-white);
  font-family: var(--display-font);
  font-size: 0.82rem;
  text-align: center;
}

.people-proof-panel {
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-medium);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: var(--brand-navy-deep);
  color: var(--brand-white);
  box-shadow: var(--shadow-medium);
}

.people-proof-panel h3,
.people-proof-panel .callout-kicker {
  color: var(--brand-white);
}

.people-proof-panel .check-list {
  color: #dce7ef;
}

.story-copy .lede {
  color: var(--brand-navy);
}

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

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

.service-path {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  min-height: 12.5rem;
  border: 1px solid #d4dee8;
  border-radius: 0.8rem;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  background: var(--brand-white);
  color: var(--brand-ink);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-path:hover {
  transform: translateY(-4px);
  border-color: var(--brand-orange);
  box-shadow: 0 12px 30px rgba(22, 42, 66, 0.12);
}

.service-path.featured {
  grid-row: span 2;
  min-height: 26rem;
  align-content: end;
  background: var(--brand-navy);
  color: var(--brand-white);
}

.service-num {
  color: var(--brand-orange-dark);
  font-family: var(--display-font);
  font-size: 1.25rem;
}

.featured .service-num {
  color: var(--brand-orange);
}

.service-path p {
  margin: 0 0 0.45rem;
  color: #66788c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-path.featured p {
  color: var(--brand-sky-light);
}

.service-path h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.service-path div > span {
  color: var(--brand-orange-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

.service-path.featured div > span {
  color: var(--brand-orange);
}

.offer-poster-wrap {
  background: var(--brand-white);
}

.real-work {
  background: var(--brand-navy-deep);
  color: var(--brand-white);
}

.work-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}

.work-heading h2 {
  max-width: 13ch;
  color: var(--brand-white);
}

.work-heading > p {
  color: var(--brand-sky-light);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.work-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  margin: 0;
  border: 3px solid var(--brand-sky-light);
  border-radius: 0.7rem;
  background: var(--brand-navy);
}

.work-grid .work-feature {
  grid-row: span 2;
  min-height: 37rem;
}

.work-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-grid figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  background: rgba(21, 35, 53, 0.92);
  color: var(--brand-white);
  line-height: 1.35;
}

.work-grid figcaption strong {
  font-family: var(--display-font);
  font-weight: 400;
}

.work-grid figcaption span {
  color: var(--brand-sky-light);
  font-size: 0.7rem;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.shoot-gap {
  max-width: 78ch;
  margin: 1.25rem 0 0;
  color: var(--brand-sky-light);
  font-size: 0.82rem;
}

.shoot-gap strong {
  color: var(--brand-orange);
}

.offer-poster {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.75fr);
  overflow: hidden;
  border: 3px solid var(--brand-navy-deep);
  border-radius: 1.15rem;
  background: var(--brand-navy);
  box-shadow: 11px 11px 0 var(--brand-navy-deep);
}

.free-ribbon {
  position: absolute;
  top: 1.1rem;
  right: -2.4rem;
  z-index: 2;
  width: 9rem;
  transform: rotate(45deg);
  background: var(--brand-orange);
  color: var(--brand-ink);
  font-family: var(--display-font);
  font-size: 0.75rem;
  line-height: 2rem;
  text-align: center;
  text-transform: uppercase;
}

.offer-copy {
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--brand-white);
}

.offer-copy h2 {
  max-width: 13ch;
  color: var(--brand-white);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.08;
}

.offer-copy ul {
  display: grid;
  gap: 0.45rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  color: var(--brand-sky-light);
  list-style: none;
}

.offer-copy li::before {
  margin-right: 0.6rem;
  color: var(--brand-orange);
  content: "✓";
  font-weight: 900;
}

.offer-price {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 22rem;
  border-left: 1px dashed var(--brand-sky);
  padding: 2rem;
  background: var(--brand-navy-deep);
  color: var(--brand-white);
  text-align: center;
}

.offer-price strong {
  color: var(--brand-orange);
  font-family: var(--display-font);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  text-wrap: balance;
}

.offer-price p {
  margin: 0.5rem 0;
  color: var(--brand-sky-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ketron-standard {
  background: var(--brand-navy-deep);
  color: var(--brand-white);
}

.standard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.standard-grid h2 {
  color: var(--brand-white);
}

.standard-grid > div > p:not(.eyebrow) {
  color: var(--brand-sky-light);
}

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

.standard-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(194, 206, 232, 0.3);
  padding: 1.15rem 0 1.45rem;
}

.standard-list li > span {
  color: var(--brand-orange);
  font-family: var(--display-font);
  font-size: 1.25rem;
}

.standard-list h3 {
  margin: 0 0 0.35rem;
  color: var(--brand-white);
  font-size: 1.45rem;
}

.standard-list p {
  margin: 0;
  color: var(--brand-sky-light);
}

.process-section {
  background: var(--brand-paper);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 3.75rem 1fr;
  gap: 1rem;
  border-top: 1px solid #cfd9e4;
  padding: 1.3rem 0;
}

.process-list strong {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--brand-ink);
  font-family: var(--display-font);
  font-weight: 400;
}

.process-list h3 {
  margin: 0 0 0.25rem;
  font-family: var(--body-font);
  font-size: 1.05rem;
  font-weight: 900;
}

.process-list p {
  margin: 0;
  color: #617388;
}

.video-plan {
  background: var(--brand-white);
}

.video-plan-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.video-placeholder {
  display: grid;
  min-height: 24rem;
  place-items: center;
  align-content: center;
  overflow: hidden;
  clip-path: polygon(3rem 0, 100% 0, 100% calc(100% - 3rem), calc(100% - 3rem) 100%, 0 100%, 0 3rem);
  padding: 2rem;
  background-color: var(--brand-navy);
  background-image: linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  color: var(--brand-white);
  text-align: center;
}

.video-placeholder > span {
  display: grid;
  width: 5.5rem;
  height: 5.5rem;
  place-items: center;
  margin-bottom: 1rem;
  border: 3px solid var(--brand-white);
  border-radius: 50%;
  background: var(--brand-orange);
  color: var(--brand-ink);
  font-size: 2rem;
}

.video-placeholder p {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.35rem;
}

.video-placeholder small {
  color: var(--brand-sky-light);
}

.video-testimonial {
  overflow: hidden;
  margin: 0;
  border: 3px solid var(--brand-navy-deep);
  border-radius: 1rem;
  background: var(--brand-navy-deep);
  box-shadow: 10px 10px 0 var(--brand-orange);
}

.video-testimonial video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background: var(--brand-navy);
  object-fit: cover;
}

.video-testimonial figcaption {
  display: grid;
  gap: 0.1rem;
  padding: 0.9rem 1rem 1rem;
  color: var(--brand-white);
}

.video-testimonial figcaption strong {
  font-family: var(--display-font);
  font-weight: 400;
}

.video-testimonial figcaption span {
  color: var(--brand-sky-light);
  font-size: 0.72rem;
  font-weight: 800;
}

.video-transcript {
  margin: 1.25rem 0;
  border: 1px solid #c8d3de;
  border-radius: 0.75rem;
  background: #f5f8fb;
}

.video-transcript summary {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.7rem 1rem;
  color: var(--brand-navy-deep);
  font-weight: 900;
  cursor: pointer;
}

.video-transcript summary:focus-visible {
  outline: 3px solid var(--brand-orange-dark);
  outline-offset: 2px;
}

.video-transcript > div {
  padding: 0 1rem 1rem;
}

.video-transcript p {
  margin: 0.75rem 0 0;
  color: #34475c;
  font-size: 0.93rem;
  line-height: 1.65;
}

.final-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--brand-navy);
  color: var(--brand-white);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: center;
}

.final-cta h2 {
  max-width: 14ch;
  color: var(--brand-white);
}

.final-cta p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--brand-sky-light);
}

.final-actions {
  display: grid;
  min-width: 16rem;
  gap: 0.8rem;
}

.final-phone {
  color: var(--brand-white);
  font-family: var(--display-font);
  font-size: 1.25rem;
  text-align: center;
}

.fable-customer-site .site-footer {
  padding-bottom: 1rem;
  background: #152335;
}

.footer-logo img {
  height: auto;
  max-width: 14rem;
}

.icon-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.icon-social svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.fable-customer-site .footer-links h2 {
  font-family: var(--display-font);
  font-size: 1rem;
}

.mobile-action-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: none;
  grid-template-columns: 1fr 1.2fr 1fr;
  min-height: 4.15rem;
  border-top: 3px solid var(--brand-orange);
  background: #152335;
  box-shadow: 0 -8px 24px rgba(10, 14, 20, 0.22);
}

.mobile-action-bar a {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(194, 206, 232, 0.25);
  color: var(--brand-white);
  font-family: var(--display-font);
  font-size: 0.86rem;
  text-decoration: none;
}

.mobile-action-bar a.schedule {
  background: var(--brand-orange);
  color: var(--brand-ink);
}

@media (min-width: 72rem) {
  .mobile-action-bar {
    left: 50%;
    width: min(48rem, calc(100% - 3rem));
    transform: translateX(-50%);
    overflow: hidden;
    border: 3px solid var(--brand-orange);
    border-bottom: 0;
    border-radius: 0.8rem 0.8rem 0 0;
    min-height: 3.45rem;
  }
}

@media (max-width: 71.99rem) {
  .mobile-action-bar {
    display: grid;
  }

  .fable-customer-site {
    padding-bottom: 4.15rem;
  }

  .fable-customer-site .header-actions .btn-secondary,
  .fable-customer-site .header-phone {
    display: none;
  }

  .fable-customer-site .desktop-nav {
    display: none;
  }

  .fable-customer-site .nav-toggle {
    display: flex;
  }

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

@media (max-width: 56rem) {
  .hero-home {
    padding-top: 3.5rem;
  }

  .hero-split,
  .story-grid,
  .standard-grid,
  .process-grid,
  .video-plan-grid,
  .final-cta-grid,
  .review-heading,
  .work-heading {
    grid-template-columns: 1fr;
  }

  .hero-home .hero-copy h1 {
    max-width: 12ch;
  }

  .problem-launcher {
    margin-bottom: 2rem;
  }

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

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

  .service-path.featured {
    grid-row: auto;
    min-height: 16rem;
  }

  .offer-poster {
    grid-template-columns: 1fr;
  }

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

  .work-grid .work-feature {
    grid-row: auto;
    min-height: 24rem;
  }

  .offer-price {
    min-height: 16rem;
    border-top: 1px dashed var(--brand-sky);
    border-left: 0;
  }

  .final-actions {
    min-width: 0;
  }
}

@media (max-width: 40rem) {
  .fable-customer-site .container {
    width: min(100% - 1.5rem, 76rem);
  }

  .fable-customer-site .nav-wrap {
    min-height: 4.4rem;
  }

  .brand-logo img {
    height: 3.2rem;
  }

  .fable-customer-site .header-actions {
    display: none;
  }

  .hero-home .hero-copy h1 {
    font-size: clamp(2.75rem, 15vw, 4.2rem);
  }

  .page-hero h1,
  .interior-hero h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 11vw, 3rem);
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .proof-ledger-grid,
  .review-gallery {
    grid-template-columns: 1fr;
  }

  .visual-review-card {
    width: min(24rem, 100%);
    margin-inline: auto;
  }

  .offer-copy {
    padding: 2rem 1.25rem;
  }

  .video-placeholder {
    min-height: 19rem;
    clip-path: polygon(2rem 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%, 0 2rem);
  }
}

@media print {
  .mobile-action-bar {
    display: none !important;
  }
}

/* Conversion funnels: native Calendly and Ketron-owned estimator */
.conversion-page {
  background: #f4f6fa;
}

.conversion-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6.5rem);
  background: var(--brand-navy-deep);
  color: var(--brand-white);
}

.conversion-hero .blueprint-grid {
  opacity: 0.26;
}

.conversion-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.75fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.conversion-hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  color: var(--brand-white);
  font-size: clamp(3rem, 6.4vw, 6.5rem);
  line-height: 0.92;
}

.conversion-hero-copy .hero-sub {
  max-width: 48rem;
  color: #dce7f4;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.breadcrumb-light,
.breadcrumb-light a {
  color: #dce7f4;
}

.conversion-hero-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(25rem, 43vw, 38rem);
  margin: 0;
  border: 3px solid rgba(255, 255, 255, 0.78);
  background: #152335;
  box-shadow: 1.25rem 1.25rem 0 var(--brand-orange);
  clip-path: polygon(2.8rem 0, 100% 0, 100% calc(100% - 2.8rem), calc(100% - 2.8rem) 100%, 0 100%, 0 2.8rem);
}

.conversion-hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.conversion-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(10, 23, 39, 0.84));
  pointer-events: none;
}

.conversion-hero-media figcaption {
  position: absolute;
  z-index: 1;
  right: 1.4rem;
  bottom: 1.25rem;
  left: 1.4rem;
  color: var(--brand-white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversion-human-proof {
  display: flex;
  max-width: 36rem;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.conversion-human-proof img {
  width: 4rem;
  height: 4rem;
  flex: 0 0 auto;
  border: 3px solid var(--brand-white);
  border-radius: 50%;
  object-fit: cover;
}

.conversion-human-proof p {
  display: grid;
  gap: 0.15rem;
  margin: 0;
}

.conversion-human-proof span {
  color: var(--brand-orange);
  letter-spacing: 0.08em;
}

.conversion-human-proof strong {
  color: var(--brand-white);
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 400;
}

.conversion-human-proof small {
  color: #c9d8ea;
}

.conversion-proof-rail {
  border-bottom: 1px solid #dce3ed;
  background: var(--brand-white);
}

.conversion-proof-rail .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.conversion-proof-rail p {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 1.5rem clamp(1rem, 3vw, 2.2rem);
  border-right: 1px solid #dce3ed;
}

.conversion-proof-rail p:first-child {
  padding-left: 0;
}

.conversion-proof-rail p:last-child {
  border-right: 0;
}

.conversion-proof-rail strong {
  color: var(--brand-navy-deep);
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 400;
}

.conversion-proof-rail span {
  color: var(--muted);
  font-size: 0.82rem;
}

.conversion-workspace {
  background:
    linear-gradient(rgba(31, 65, 105, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 65, 105, 0.035) 1px, transparent 1px),
    #f4f6fa;
  background-size: 36px 36px;
}

.conversion-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.34fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.embed-card {
  overflow: hidden;
  border: 1px solid #dce3ed;
  border-radius: 1rem;
  background: var(--brand-white);
  box-shadow: 0 1.5rem 4rem rgba(20, 42, 68, 0.11);
}

.embed-card-heading {
  padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 3rem) 1rem;
}

.embed-card-heading h2 {
  margin-bottom: 0.6rem;
}

.embed-card-heading > p:last-of-type {
  max-width: 48rem;
  color: var(--muted);
}

.schedule-estimate-handoff {
  display: grid;
  gap: 0.3rem;
  max-width: 48rem;
  margin-top: 1.15rem;
  padding: 0.9rem 1rem;
  border-left: 0.28rem solid var(--brand-orange);
  border-radius: 0 0.55rem 0.55rem 0;
  background: #fff4e8;
  color: var(--brand-navy-deep);
}

.schedule-estimate-handoff[hidden] {
  display: none;
}

.schedule-estimate-handoff > strong {
  font-family: var(--display-font);
  font-size: 1.05rem;
  font-weight: 400;
}

.schedule-estimate-handoff > span {
  color: var(--muted);
  font-size: 0.9rem;
}

.calendly-inline-widget {
  width: 100%;
  border-top: 1px solid #e3e8ef;
}

.conversion-sidebar {
  position: sticky;
  top: 7rem;
  overflow: hidden;
  border-radius: 0.9rem;
  background: var(--brand-navy-deep);
  color: var(--brand-white);
  box-shadow: 0 1.5rem 3.5rem rgba(20, 42, 68, 0.18);
}

.sidebar-kicker {
  margin: 0;
  padding: 1.2rem 1.4rem;
  background: var(--brand-orange);
  color: var(--brand-ink);
  font-family: var(--display-font);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversion-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.conversion-steps li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 0.9rem;
  padding: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.conversion-steps li > span {
  color: var(--brand-orange);
  font-family: var(--display-font);
  font-size: 1.1rem;
}

.conversion-steps h2 {
  margin-bottom: 0.3rem;
  color: var(--brand-white);
  font-size: 1rem;
}

.conversion-steps p,
.sidebar-choice p {
  margin: 0;
  color: #c9d8ea;
  font-size: 0.85rem;
}

.sidebar-choice {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.sidebar-choice .btn {
  width: 100%;
}

.conversion-reassurance {
  background: var(--brand-white);
}

.reassurance-list {
  display: grid;
  border-top: 3px solid var(--brand-orange);
}

.reassurance-list p {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 1.25rem 0;
  border-bottom: 1px solid #dce3ed;
}

.reassurance-list strong {
  color: var(--brand-navy-deep);
  font-family: var(--display-font);
  font-size: 1.05rem;
  font-weight: 400;
}

.reassurance-list span {
  color: var(--muted);
}

.embed-fallback,
.embed-assurance {
  padding: 1rem 1.25rem;
  border: 1px solid #d7dee8;
  border-radius: 0.7rem;
  background: #fff7ed;
  color: var(--brand-ink);
}

.embed-assurance {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.embed-assurance p {
  margin: 0;
}

.embed-assurance .btn {
  flex: 0 0 auto;
}

.price-context {
  background: var(--brand-white);
}

.price-review {
  padding-top: 0;
  background: var(--brand-white);
}

.price-review-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 0.9rem;
  background: var(--brand-navy-deep);
  color: var(--brand-white);
}

.price-review-card > img {
  width: 5.25rem;
  height: 5.25rem;
  border: 3px solid var(--brand-white);
  border-radius: 50%;
  object-fit: cover;
}

.price-review-card blockquote {
  margin: 0;
}

.price-review-card blockquote > span {
  color: var(--brand-orange);
  letter-spacing: 0.08em;
}

.price-review-card blockquote p {
  margin: 0.3rem 0;
  color: var(--brand-white);
  font-family: var(--display-font);
  font-size: 1.2rem;
}

.price-review-card cite {
  color: #c9d8ea;
  font-size: 0.78rem;
  font-style: normal;
}

.price-review-card .text-link {
  color: var(--brand-white);
  white-space: nowrap;
}

@media (max-width: 64rem) {
  .conversion-hero-grid,
  .conversion-workspace-grid {
    grid-template-columns: 1fr;
  }

  .conversion-hero-media {
    min-height: 28rem;
  }

  .conversion-sidebar {
    position: static;
  }
}

@media (max-width: 48rem) {
  .conversion-hero {
    padding-top: 3.5rem;
  }

  .conversion-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .conversion-hero-media {
    min-height: 22rem;
    box-shadow: 0.65rem 0.65rem 0 var(--brand-orange);
  }

  .conversion-proof-rail .container {
    grid-template-columns: 1fr;
  }

  .conversion-proof-rail p,
  .conversion-proof-rail p:first-child {
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid #dce3ed;
  }

  .conversion-proof-rail p:last-child {
    border-bottom: 0;
  }

  .calendly-inline-widget {
    min-width: 0 !important;
    height: 700px !important;
  }

  .embed-assurance,
  .price-review-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .embed-assurance .btn {
    width: 100%;
  }

  .price-review-card .text-link {
    white-space: normal;
  }
}

/* Plain-language legal pages */
.legal-hero {
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
  border-bottom: 5px solid var(--brand-orange);
  background:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px),
    var(--brand-navy-deep);
  background-size: 40px 40px;
  color: var(--brand-white);
}

.legal-hero h1 {
  max-width: 13ch;
  color: var(--brand-white);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.94;
}

.legal-hero .lede {
  max-width: 48rem;
  color: #d3dfed;
}

.legal-hero .breadcrumb,
.legal-hero .breadcrumb a {
  color: #d3dfed;
}

.legal-date {
  margin-top: 1.5rem;
  color: var(--brand-orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-section {
  background: var(--brand-white);
}

.legal-content {
  max-width: 54rem;
}

.legal-content h2 {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid #dce3ed;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-content p,
.legal-content li {
  color: #46566a;
  line-height: 1.75;
}

.legal-content li + li {
  margin-top: 0.45rem;
}

/* Purposeful 404 route for the production static host */
.not-found-main {
  position: relative;
  display: grid;
  min-height: calc(100vh - 6rem);
  overflow: hidden;
  place-items: center;
  padding: clamp(5rem, 10vw, 9rem) 0 8rem;
  background: var(--brand-navy-deep);
  color: var(--brand-white);
}

.not-found-main .blueprint-grid {
  opacity: 0.3;
}

.not-found-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.6fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.not-found-main h1 {
  max-width: 10ch;
  color: var(--brand-white);
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: 0.9;
}

.not-found-main p:not(.eyebrow) {
  max-width: 38rem;
  color: #d3dfed;
  font-size: 1.1rem;
}

.not-found-options {
  overflow: hidden;
  border: 3px solid var(--brand-white);
  border-radius: 0.8rem;
  background: var(--brand-white);
  color: var(--brand-ink);
  box-shadow: 0.9rem 0.9rem 0 var(--brand-orange);
}

.not-found-options h2 {
  margin: 0;
  padding: 1.4rem;
  background: var(--brand-navy-deep);
  color: var(--brand-white);
  font-size: 1.4rem;
}

.not-found-options a {
  display: grid;
  gap: 0.2rem;
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid #dce3ed;
  text-decoration: none;
}

.not-found-options a:last-child {
  border-bottom: 0;
}

.not-found-options a:hover {
  background: #edf3f8;
}

.not-found-options span {
  color: var(--muted);
  font-size: 0.78rem;
}

.not-found-options strong {
  color: var(--brand-navy-deep);
  font-family: var(--display-font);
  font-size: 1.05rem;
  font-weight: 400;
}

@media (max-width: 50rem) {
  .not-found-grid {
    grid-template-columns: 1fr;
  }
}

/* Keep real customer proof visible in the About hero on common laptop viewports. */
.brand-story-media .hero-review {
  top: 1.25rem;
  bottom: auto;
}

@media (max-width: 52rem) {
  .brand-story-media .hero-review {
    top: 1rem;
    bottom: auto;
  }
}

/* Ketron-owned roof planner */
.estimator-conversion-hero {
  background: var(--brand-navy-deep);
}

.estimator-conversion-hero .conversion-hero-copy,
.estimator-conversion-hero .hero-actions,
.estimator-conversion-hero .hero-actions .btn {
  min-width: 0;
}

.planner-truth-panel {
  position: relative;
  z-index: 1;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 1rem;
  background: #f8fafc;
  color: var(--brand-ink);
  box-shadow: 0.9rem 0.9rem 0 var(--brand-orange);
}

.planner-truth-panel img {
  width: 4.8rem;
  margin-bottom: 1.2rem;
}

.planner-panel-kicker {
  margin: 0 0 0.45rem;
  color: var(--brand-navy);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.planner-truth-panel h2 {
  margin: 0 0 1.15rem;
  color: var(--brand-navy-deep);
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.planner-truth-panel ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.planner-truth-panel li {
  position: relative;
  padding-left: 1.5rem;
  color: #34475c;
}

.planner-truth-panel li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand-orange);
  content: "";
}

.estimator-workspace {
  background: #edf2f6;
}

.estimator-workspace-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.estimator-workspace-intro {
  position: sticky;
  top: 8rem;
}

.estimator-workspace-intro h2,
.planner-boundaries h2 {
  max-width: 16ch;
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

.estimator-workspace-intro p:not(.eyebrow) {
  max-width: 40rem;
  color: #42556b;
}

.estimator-mount {
  border: 1px solid #c6d0db;
  border-radius: 1rem;
  background: var(--brand-white);
  box-shadow: 0 1.4rem 4rem rgba(22, 42, 63, 0.12);
}

.ketron-estimator {
  padding: clamp(1.35rem, 3.2vw, 3rem);
}

.ketron-estimator-heading {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--brand-navy-deep);
}

.ketron-estimator-heading h2 {
  max-width: 16ch;
  margin: 0 0 0.85rem;
  color: var(--brand-navy-deep);
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.08;
}

.ketron-estimator-heading > p:last-child {
  max-width: 48rem;
  margin: 0;
  color: #4a5e73;
}

.ketron-estimator-form {
  display: grid;
  gap: 1.35rem;
}

.estimator-fieldset {
  display: grid;
  gap: 1rem;
  min-width: 0;
  margin: 0;
  padding: 1.25rem;
  border: 1px solid #ccd5df;
  border-radius: 0.75rem;
  background: #fbfcfd;
}

.estimator-fieldset legend {
  padding: 0 0.55rem;
  color: var(--brand-navy-deep);
  font-family: var(--display-font);
  font-size: 1.1rem;
  font-weight: 400;
}

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

.estimator-field {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.estimator-field label,
.estimator-fieldset > label {
  color: var(--brand-navy-deep);
  font-size: 0.88rem;
  font-weight: 850;
}

.estimator-field input,
.estimator-fieldset select {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid #9cacbc;
  border-radius: 0.35rem;
  background: var(--brand-white);
  color: var(--brand-ink);
  font: inherit;
}

.estimator-field input:focus,
.estimator-fieldset select:focus {
  border-color: var(--brand-navy);
  outline: 3px solid rgba(249, 138, 73, 0.42);
  outline-offset: 1px;
}

.estimator-field [aria-invalid="true"],
.estimator-fieldset select[aria-invalid="true"] {
  border-color: #a12620;
}

.estimator-field-note,
.estimator-privacy-note {
  margin: 0;
  color: #576b7e;
  font-size: 0.78rem;
  line-height: 1.5;
}

.estimator-choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.estimator-choice {
  display: flex;
  align-items: center;
  min-height: 3.2rem;
  gap: 0.65rem;
  padding: 0.75rem;
  border: 1px solid #b7c4d0;
  border-radius: 0.5rem;
  background: var(--brand-white);
  color: var(--brand-navy-deep);
  font-weight: 800;
}

.estimator-choice input,
.estimator-consent input {
  width: 1.1rem;
  height: 1.1rem;
  flex: none;
  accent-color: var(--brand-orange-dark);
}

.estimator-measurement-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-left: 4px solid var(--brand-orange);
  background: #f0f4f8;
}

.estimator-measurement-panel[hidden],
.estimator-result[hidden],
.estimator-error-summary[hidden] {
  display: none;
}

.estimator-private-details {
  padding: 1rem 1.1rem;
  border: 1px solid #ccd5df;
  border-radius: 0.75rem;
  background: #fbfcfd;
}

.estimator-private-details summary {
  color: var(--brand-navy-deep);
  font-weight: 900;
}

.estimator-private-details > p {
  color: #4a5e73;
}

.estimator-private-details[open] {
  display: grid;
  gap: 1rem;
}

.estimator-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #34475c;
  font-size: 0.86rem;
}

.estimator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.estimator-error-summary,
.estimator-demo-warning {
  padding: 1rem;
  border: 2px solid #a12620;
  border-radius: 0.5rem;
  background: #fff4f2;
  color: #6f1713;
}

.estimator-error-title {
  margin: 0 0 0.4rem;
  font-weight: 900;
}

.estimator-status {
  min-height: 1.4rem;
  margin: 1rem 0 0;
  color: #40556a;
  font-size: 0.85rem;
}

.estimator-result {
  margin-top: 1.25rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 2px solid var(--brand-navy-deep);
  border-radius: 0.75rem;
  background: #f4f8fb;
}

.estimator-result h3 {
  margin: 0 0 1rem;
  color: var(--brand-navy-deep);
  font-family: var(--display-font);
  font-size: 1.75rem;
  font-weight: 400;
}

.estimator-breakdown {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0;
}

.estimator-breakdown dt,
.estimator-breakdown dd {
  margin: 0;
  padding: 0.65rem 0;
  border-bottom: 1px solid #cad5df;
}

.estimator-breakdown dt {
  color: #40556a;
}

.estimator-breakdown dd {
  color: var(--brand-navy-deep);
  font-weight: 900;
  text-align: right;
}

.estimator-formula,
.estimator-service-status,
.estimator-pricing-unavailable {
  color: #42566a;
  font-size: 0.86rem;
}

.estimator-pricing-unavailable {
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--brand-orange);
  background: var(--brand-white);
  font-weight: 750;
}

.estimator-budget-range {
  color: var(--brand-navy-deep);
  font-family: var(--display-font);
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.planner-boundaries {
  background: var(--brand-white);
}

.planner-boundary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
  border-top: 2px solid var(--brand-navy-deep);
}

.planner-boundary-grid article {
  min-height: 16rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-bottom: 1px solid #cbd5df;
}

.planner-boundary-grid article + article {
  border-left: 1px solid #cbd5df;
}

.planner-boundary-grid span {
  display: block;
  margin-bottom: 2.8rem;
  color: var(--brand-orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.planner-boundary-grid h3 {
  margin-bottom: 0.55rem;
  color: var(--brand-navy-deep);
}

.planner-boundary-grid p {
  margin: 0;
  color: #4a5e73;
}

.planner-faq {
  background: #f5f1e9;
}

@media (max-width: 64rem) {
  .estimator-workspace-grid {
    grid-template-columns: 1fr;
  }

  .estimator-workspace-intro {
    position: static;
  }
}

@media (max-width: 46rem) {
  .estimator-conversion-hero .conversion-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 11.4vw, 3.4rem);
    overflow-wrap: normal;
  }

  .estimator-field-grid,
  .estimator-choice-row,
  .planner-boundary-grid {
    grid-template-columns: 1fr;
  }

  .planner-boundary-grid article + article {
    border-left: 0;
  }

  .planner-boundary-grid article {
    min-height: 0;
  }

  .planner-boundary-grid span {
    margin-bottom: 1.25rem;
  }

  .estimator-actions .btn {
    width: 100%;
  }
}
