:root {
  --porcelain: #F8FAFB;
  --ink: #1E2A30;
  --lake: #3E9EB5;
  --lake-deep: #2E7F93;
  --frost: #D8ECF2;
  --white: #FFFFFF;
  --hairline: #C6DDE6;
  --ink-soft: #33434B;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #F8FAFB;
  color: #1E2A30;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #3E9EB5;
  text-decoration: none;
}

a:hover {
  color: #2E7F93;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- PANE NAV ---------- */
.pane-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #F8FAFB;
  border-bottom: 2px solid #3E9EB5;
}

.pane-nav .nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.pane-nav .brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #1E2A30;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pane-nav .brand-pane {
  width: 15px;
  height: 15px;
  background-color: #3E9EB5;
  position: relative;
  display: inline-block;
  flex: 0 0 15px;
}

.pane-nav .brand-pane::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 1px;
  background-color: #F8FAFB;
}

.pane-nav .brand-pane::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 1px;
  background-color: #F8FAFB;
}

.pane-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.pane-nav .nav-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: #1E2A30;
  letter-spacing: 0.2px;
  padding: 8px 0;
  position: relative;
}

.pane-nav .nav-links a.active {
  color: #3E9EB5;
}

.pane-nav .nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-color: #3E9EB5;
}

.pane-nav .nav-dot {
  width: 15px;
  height: 15px;
  background-color: #3E9EB5;
  position: relative;
  display: inline-block;
  flex: 0 0 15px;
}

.pane-nav .nav-dot::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 1px;
  background-color: #F8FAFB;
}

.pane-nav .nav-dot::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 1px;
  background-color: #F8FAFB;
}

.pane-nav .nav-toggle {
  display: none;
  background: none;
  border: 2px solid #3E9EB5;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
}

.pane-nav .nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #1E2A30;
  margin: 4px 0;
}

@media (max-width: 840px) {
  .pane-nav .nav-toggle {
    display: block;
  }

  .pane-nav .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #F8FAFB;
    border-bottom: 3px solid #3E9EB5;
    display: none;
    box-shadow: 0 12px 20px #BFD6DE;
  }

  .pane-nav.nav-open .nav-links {
    display: flex;
  }

  .pane-nav .nav-links li {
    border-bottom: 1px solid #D8ECF2;
  }

  .pane-nav .nav-links a {
    padding: 14px 24px;
    font-size: 16px;
    justify-content: flex-start;
  }

  .pane-nav .nav-links a.active::after {
    height: 3px;
  }
}

/* ---------- GLEAM HERO ---------- */
.gleam-hero {
  background-color: #F8FAFB;
  border-bottom: 2px solid #D8ECF2;
}

.gleam-hero .hero-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 88px 24px 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.gleam-hero .hero-copy {
  max-width: 640px;
}

.gleam-hero .eyebrow {
  display: inline-block;
  background-color: #3E9EB5;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 26px;
}

.gleam-hero h1 {
  font-size: 52px;
  line-height: 1.12;
  color: #1E2A30;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.gleam-hero .hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: #33434B;
  margin-bottom: 34px;
  max-width: 580px;
}

.gleam-hero .hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1.4;
  text-align: center;
}

.btn-lake {
  background-color: #3E9EB5;
  color: #FFFFFF;
  border-color: #3E9EB5;
}

.btn-lake:hover {
  background-color: #2E7F93;
  border-color: #2E7F93;
  color: #FFFFFF;
}

.btn-ink {
  background-color: #1E2A30;
  color: #FFFFFF;
  border-color: #1E2A30;
}

.btn-ink:hover {
  background-color: #33434B;
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  color: #1E2A30;
  border-color: #1E2A30;
}

.btn-outline:hover {
  background-color: #1E2A30;
  color: #FFFFFF;
}

.gleam-hero .hero-graphic {
  flex: 0 0 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gleam-window {
  width: 105px;
  height: 105px;
  border: 3px solid #3E9EB5;
  position: relative;
}

.gleam-window::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background-color: #1E2A30;
  transform: translateY(-50%);
}

.gleam-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: #1E2A30;
  transform: translateX(-50%);
}

.gleam-window .gleam-spark {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 14px;
  height: 14px;
  background-color: #FFFFFF;
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
}

.gleam-window .window-cap {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1E2A30;
}

@media (max-width: 840px) {
  .gleam-hero .hero-grid {
    flex-direction: column;
    padding: 60px 24px 56px;
  }

  .gleam-hero .hero-graphic {
    flex: 0 0 auto;
    order: -1;
    padding-bottom: 24px;
  }

  .gleam-hero h1 {
    font-size: 38px;
  }
}

/* ---------- SECTION HEADINGS ---------- */
.section-band {
  background-color: #F8FAFB;
}

.section-head {
  margin-bottom: 40px;
}

.section-head .kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1E2A30;
  display: block;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1E2A30;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.section-head .lead {
  font-size: 17px;
  color: #33434B;
  max-width: 720px;
}

/* ---------- PANE ROWS ---------- */
.pane-rows {
  padding: 92px 0 76px;
}

.pane-rows .rows {
  border-top: 2px solid #3E9EB5;
}

.pane-row {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid #C6DDE6;
}

.pane-row .pane-mark {
  width: 15px;
  height: 15px;
  background-color: #3E9EB5;
  position: relative;
  flex: 0 0 15px;
  margin-top: 8px;
}

.pane-row .pane-mark::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 1px;
  background-color: #F8FAFB;
}

.pane-row .pane-mark::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 1px;
  background-color: #F8FAFB;
}

.pane-row .row-body {
  flex: 1;
}

.pane-row h3 {
  font-size: 21px;
  color: #1E2A30;
  font-weight: 800;
  margin-bottom: 8px;
}

.pane-row p {
  color: #33434B;
  font-size: 16px;
  line-height: 1.75;
}

/* ---------- SHEEN STRIP ---------- */
.sheen-strip {
  background-color: #D8ECF2;
  padding: 58px 0;
}

.sheen-strip .strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #3E9EB5;
  border-bottom: 1px solid #3E9EB5;
}

.sheen-strip .sheen-item {
  flex: 1;
  text-align: center;
  padding: 34px 12px;
}

.sheen-strip .sheen-item + .sheen-item {
  border-left: 1px solid #3E9EB5;
}

.sheen-strip .sheen-num {
  font-size: 46px;
  font-weight: 800;
  color: #3E9EB5;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.sheen-strip .sheen-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1E2A30;
}

@media (max-width: 640px) {
  .sheen-strip .strip-inner {
    flex-direction: column;
  }

  .sheen-strip .sheen-item + .sheen-item {
    border-left: 0;
    border-top: 1px solid #3E9EB5;
  }
}

/* ---------- SPARKLE ROWS ---------- */
.sparkle-rows {
  padding: 92px 0 76px;
}

.sparkle-rows .rows {
  border-top: 2px solid #3E9EB5;
}

.sparkle-row {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid #C6DDE6;
}

.sparkle-row .pane-mark {
  width: 15px;
  height: 15px;
  background-color: #3E9EB5;
  position: relative;
  flex: 0 0 15px;
  margin-top: 8px;
}

.sparkle-row .pane-mark::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 1px;
  background-color: #F8FAFB;
}

.sparkle-row .pane-mark::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 1px;
  background-color: #F8FAFB;
}

.sparkle-row .row-body {
  flex: 1;
}

.sparkle-row h3 {
  font-size: 20px;
  color: #1E2A30;
  font-weight: 800;
  margin-bottom: 8px;
}

.sparkle-row p {
  color: #33434B;
  font-size: 16px;
  line-height: 1.75;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background-color: #3E9EB5;
  padding: 84px 0;
}

.cta-band .cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.cta-band h2 {
  font-size: 40px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-band p {
  font-size: 17px;
  color: #FFFFFF;
  margin-bottom: 32px;
}

/* ---------- LEDGE FOOTER ---------- */
.ledge-footer {
  background-color: #F8FAFB;
}

.ledge-footer .ledge-top {
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 24px 52px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.ledge-footer .ledge-zone {
  flex: 1;
}

.ledge-footer .ledge-zone + .ledge-zone {
  border-left: 1px solid #3E9EB5;
  padding-left: 40px;
}

.ledge-footer .brand {
  font-size: 22px;
  font-weight: 800;
  color: #1E2A30;
  letter-spacing: 0.5px;
}

.ledge-footer .company-line {
  font-size: 13px;
  color: #33434B;
  margin-top: 8px;
  letter-spacing: 0.4px;
}

.ledge-footer .link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
}

.ledge-footer .link-row a {
  font-weight: 700;
  font-size: 15px;
  color: #1E2A30;
}

.ledge-footer .link-row a:hover {
  color: #3E9EB5;
}

.ledge-footer .contact-line {
  font-size: 15px;
  color: #1E2A30;
  font-weight: 600;
}

.ledge-footer .contact-line a {
  color: #1E2A30;
  font-weight: 700;
}

.ledge-footer .contact-line a:hover {
  color: #3E9EB5;
}

.ledge-footer .ledge-bottom {
  background-color: #3E9EB5;
  padding: 18px 24px;
  text-align: center;
}

.ledge-footer .ledge-bottom p {
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.ledge-footer .ledge-bottom a {
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: underline;
}

.ledge-footer .ledge-bottom a:hover {
  color: #1E2A30;
}

@media (max-width: 840px) {
  .ledge-footer .ledge-top {
    flex-direction: column;
  }

  .ledge-footer .ledge-zone + .ledge-zone {
    border-left: 0;
    border-top: 1px solid #3E9EB5;
    padding-left: 0;
    padding-top: 24px;
  }
}

/* ---------- PAGE HEADER (secondary pages) ---------- */
.page-header {
  background-color: #F8FAFB;
  border-bottom: 2px solid #D8ECF2;
  padding: 72px 0 60px;
}

.page-header .kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3E9EB5;
  display: inline-block;
  background-color: #3E9EB5;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 22px;
}

.page-header h1 {
  font-size: 46px;
  line-height: 1.15;
  color: #1E2A30;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.page-header .lead {
  font-size: 18px;
  color: #33434B;
  max-width: 760px;
}

/* ---------- SERVICES PAGE ---------- */
.service-rows {
  padding: 84px 0 60px;
}

.service-row {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 38px 0;
  border-bottom: 1px solid #C6DDE6;
}

.service-row .pane-mark {
  width: 15px;
  height: 15px;
  background-color: #3E9EB5;
  position: relative;
  flex: 0 0 15px;
  margin-top: 8px;
}

.service-row .pane-mark::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 1px;
  background-color: #F8FAFB;
}

.service-row .pane-mark::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 1px;
  background-color: #F8FAFB;
}

.service-row .row-body {
  flex: 1;
}

.service-row h2 {
  font-size: 24px;
  color: #1E2A30;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-row p {
  color: #33434B;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.service-row .row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.service-row .row-tags span {
  background-color: #D8ECF2;
  color: #1E2A30;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 3px;
}

.process-band {
  background-color: #D8ECF2;
  padding: 84px 0;
}

.process-band .section-head .kicker {
  color: #1E2A30;
}

.process-band .section-head h2 {
  color: #1E2A30;
}

.process-band .section-head .lead {
  color: #33434B;
}

.process-steps {
  border-top: 2px solid #3E9EB5;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid #3E9EB5;
}

.process-step .step-num {
  background-color: #3E9EB5;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 15px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  flex: 0 0 34px;
  margin-top: 4px;
}

.process-step .step-body {
  flex: 1;
}

.process-step h3 {
  font-size: 18px;
  color: #1E2A30;
  font-weight: 800;
  margin-bottom: 6px;
}

.process-step p {
  color: #33434B;
  font-size: 16px;
  line-height: 1.75;
}

/* ---------- CONTACT PAGE ---------- */
.contact-main {
  padding: 84px 0 72px;
}

.contact-grid {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.contact-info {
  flex: 0 0 380px;
}

.info-block {
  border-top: 2px solid #3E9EB5;
  padding: 26px 0;
}

.info-block h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1E2A30;
  margin-bottom: 10px;
}

.info-block p {
  color: #1E2A30;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 4px;
}

.info-block a {
  color: #1E2A30;
  font-weight: 700;
}

.info-block a:hover {
  color: #3E9EB5;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px solid #C6DDE6;
  color: #1E2A30;
  font-size: 15px;
}

.hours-list li span:last-child {
  font-weight: 700;
}

.contact-form-wrap {
  flex: 1;
}

.contact-form {
  background-color: #F8FAFB;
  border: 2px solid #D8ECF2;
  border-top: 4px solid #3E9EB5;
  padding: 40px;
}

.contact-form .form-title {
  font-size: 24px;
  font-weight: 800;
  color: #1E2A30;
  margin-bottom: 8px;
}

.contact-form .form-sub {
  color: #33434B;
  font-size: 15px;
  margin-bottom: 26px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1E2A30;
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid #C6DDE6;
  border-radius: 4px;
  background-color: #FFFFFF;
  color: #1E2A30;
  font-size: 16px;
  font-family: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #3E9EB5;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  display: none;
  background-color: #D8ECF2;
  color: #1E2A30;
  border-left: 4px solid #3E9EB5;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 18px;
}

/* ---------- FAQ ---------- */
.faq-block {
  padding: 8px 0 72px;
}

.faq-item {
  border-bottom: 1px solid #C6DDE6;
}

.faq-item:first-child {
  border-top: 2px solid #3E9EB5;
}

.faq-q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 800;
  color: #1E2A30;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}

.faq-q .faq-icon {
  width: 26px;
  height: 26px;
  background-color: #3E9EB5;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 26px;
  border-radius: 3px;
  font-size: 18px;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a .faq-inner {
  padding: 0 0 20px;
  color: #33434B;
  font-size: 16px;
  line-height: 1.75;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-item.open .faq-icon {
  background-color: #1E2A30;
}

@media (max-width: 900px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-info {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* ---------- REVEAL ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
