:root {
  --navy-950: #07111f;
  --navy-900: #0b1728;
  --navy-850: #102039;
  --navy-800: #142742;
  --blue-500: #159bd3;
  --blue-400: #4cc7f0;
  --seafoam-400: #63ddc7;
  --sand-100: #f4efe5;
  --sand-50: #fbf8f2;
  --gold-400: #e6b84d;
  --white: #ffffff;
  --ink: #122033;
  --muted-dark: #536278;
  --muted-light: #aebdce;
  --border-dark: rgba(255,255,255,.12);
  --border-light: #dce5eb;
  --shadow-lg: 0 24px 70px rgba(3, 14, 28, .18);
  --shadow-md: 0 14px 36px rgba(3, 14, 28, .11);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand-50);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

::selection {
  background: rgba(63, 167, 214, .28);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--navy-950);
  border-radius: 10px;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(16, 32, 57, .97), rgba(12, 28, 48, .94));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

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


.header-accent {
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(76, 199, 240, .55) 22%,
    rgba(230, 184, 77, .75) 50%,
    rgba(99, 221, 199, .55) 78%,
    transparent
  );
  pointer-events: none;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 480px;
  width: min(480px, 46vw);
  min-width: 320px;
  padding: .42rem .65rem;
  text-decoration: none;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(244,239,229,.96));
  border: 1px solid rgba(230,184,77,.34);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255,255,255,.75);
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, .10));
  transition: transform .18s ease, filter .18s ease;
}

.brand-logo-link:hover .brand-logo {
  transform: translateY(-1px);
  filter: drop-shadow(0 7px 15px rgba(0, 0, 0, .14));
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.nav a {
  text-decoration: none;
  color: #dbe5ef;
  padding: .62rem .78rem;
  border-radius: 9px;
  font-size: .93rem;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
  background: rgba(255,255,255,.07);
}

.nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 -2px 0 var(--gold-400);
}

.nav .nav-cta {
  margin-left: .4rem;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--blue-400), var(--seafoam-400));
  padding-inline: 1rem;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 8px 22px rgba(21, 155, 211, .20);
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
  background: #8ed8f0;
  color: var(--navy-950);
}

.menu-btn {
  display: none;
  margin-left: auto;
  border: 1px solid var(--border-dark);
  color: var(--white);
  background: var(--navy-850);
  border-radius: 10px;
  padding: .62rem .78rem;
  font-weight: 800;
}

/* ---------- Global typography ---------- */

h1, h2, h3 {
  margin-top: 0;
  color: inherit;
  line-height: 1.1;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: .6rem;
}

p {
  margin-top: 0;
}

.lede {
  max-width: 760px;
  font-size: clamp(1.08rem, 2vw, 1.24rem);
  color: var(--muted-dark);
}

.dark .lede {
  color: #c2cfdd;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  color: var(--blue-400);
  font-weight: 850;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.kicker {
  color: var(--blue-500);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}

.section-copy {
  max-width: 720px;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

/* ---------- Buttons ---------- */

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .78rem 1.05rem;
  border-radius: 11px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue-400);
  color: var(--navy-950);
  box-shadow: 0 10px 28px rgba(63, 167, 214, .22);
}

.btn-primary:hover {
  background: #8cd8f1;
}

.btn-secondary {
  border-color: var(--border-dark);
  color: var(--white);
  background: rgba(255,255,255,.04);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.08);
}

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

.text-link {
  color: var(--blue-500);
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ---------- Hero ---------- */


.hero::before {
  content: "";
  position: absolute;
  right: 4vw;
  top: 2.4rem;
  width: min(440px, 38vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(230,184,77,.65), rgba(76,199,240,.2));
  box-shadow:
    46px 18px 0 -0.5px rgba(76,199,240,.18),
    92px 36px 0 -0.5px rgba(99,221,199,.16);
  opacity: .75;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6.6rem 0 5.2rem;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 15%, rgba(63,167,214,.18), transparent 22rem),
    radial-gradient(circle at 20% 100%, rgba(123,212,197,.09), transparent 30rem),
    var(--navy-950);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -90px -10%;
  height: 170px;
  background: var(--sand-50);
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
  padding-bottom: 2rem;
}

.hero-copy h1 {
  max-width: 820px;
}

.hero-copy .lede {
  color: #c2cfdd;
}

.hero-note {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  margin-top: 1.15rem;
  color: #c0cddd;
  font-size: .9rem;
}

.hero-note::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--seafoam-400);
  box-shadow: 0 0 0 5px rgba(123,212,197,.10);
}

.hero-panel {
  position: relative;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.device-card {
  position: relative;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    var(--navy-850);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-xl);
  box-shadow: 0 34px 90px rgba(0,0,0,.35);
  overflow: hidden;
}

.device-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 48%, rgba(107,198,232,.05) 49%, rgba(107,198,232,.05) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(107,198,232,.05) 49%, rgba(107,198,232,.05) 51%, transparent 52%);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.device-top {
  position: relative;
  z-index: 2;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.device-label {
  font-size: .78rem;
  letter-spacing: .11em;
  font-weight: 900;
  color: #b6c8d9;
  text-transform: uppercase;
}

.device-dots {
  display: flex;
  gap: .35rem;
}

.device-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.23);
}

.device-body {
  position: relative;
  z-index: 2;
  padding: 1.4rem;
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.status-row:last-child {
  border-bottom: 0;
}

.status-row span {
  color: #c0cddd;
}

.status-row strong {
  color: var(--white);
  text-align: right;
}

.status-good {
  color: var(--seafoam-400) !important;
}

.mini-cross {
  position: absolute;
  right: -16px;
  top: -18px;
  width: 88px;
  height: 88px;
  opacity: .09;
}

.mini-cross::before,
.mini-cross::after {
  content: "";
  position: absolute;
  border-radius: 5px;
  background: var(--blue-400);
}

.mini-cross::before {
  width: 14px;
  height: 82px;
  left: 37px;
  top: 3px;
}

.mini-cross::after {
  width: 60px;
  height: 14px;
  top: 26px;
  left: 14px;
}

.panel-badge {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 3;
  margin-top: 1rem;
  margin-left: .2rem;
  padding: .75rem .9rem;
  background: var(--sand-100);
  color: var(--navy-950);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  font-weight: 850;
  font-size: .9rem;
  max-width: 320px;
}

.panel-badge small {
  display: block;
  color: var(--muted-dark);
  font-weight: 700;
  margin-top: .12rem;
}

/* ---------- Sections ---------- */

.section {
  position: relative;
  padding: 5.4rem 0;
}

.section-dark {
  color: var(--white);
  background: var(--navy-900);
}

.section-sand {
  background: var(--sand-100);
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 2.1rem;
}

.section-heading p {
  color: var(--muted-dark);
}

.section-dark .section-heading p {
  color: #bdcbd9;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  align-items: center;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.service-card {
  position: relative;
  min-height: 230px;
  padding: 1.55rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 34px rgba(20, 39, 66, .06);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #c6d9e4;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 88px;
  height: 88px;
  right: -38px;
  top: -38px;
  border-radius: 50%;
  background: rgba(63,167,214,.08);
}

.service-card h3:first-of-type,
.service-detail h2:first-of-type {
  margin-top: 0;
}


.service-card p {
  color: var(--muted-dark);
}

.service-card .meta {
  margin-top: 1rem;
  color: var(--blue-500);
  font-size: .87rem;
  font-weight: 850;
}

.card {
  padding: 1.55rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(20,39,66,.05);
}

.card.dark-card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
  box-shadow: none;
}

.card p,
.card li {
  color: var(--muted-dark);
}

.dark-card p,
.dark-card li {
  color: #bdcbd9;
}

.card ul {
  padding-left: 1.15rem;
  margin-bottom: 0;
}

.policy-panel {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(107,198,232,.16), transparent 18rem),
    var(--navy-850);
  box-shadow: var(--shadow-lg);
}

.policy-panel::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -40px;
  width: 180px;
  height: 90px;
  border-top: 2px solid rgba(123,212,197,.4);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.policy-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .35rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.policy-row:last-child {
  border-bottom: 0;
}


.policy-row p {
  color: #bdcbd9;
  margin-bottom: 0;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.stat {
  padding: 1.35rem 1.45rem;
  border-right: 1px solid var(--border-light);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.2rem;
  margin-bottom: .22rem;
}

.stat span {
  color: var(--muted-dark);
  font-size: .92rem;
}

/* ---------- About / faith ---------- */

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

.value-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}

.value-card h3 {
  font-size: 1.05rem;
}

.value-card p {
  color: #bdcbd9;
  font-size: .94rem;
  margin-bottom: 0;
}

.verse-band {
  position: relative;
  padding: 2.2rem 2.3rem;
  border: 1px solid #e0d7c7;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(201,163,93,.08), transparent 40%),
    var(--sand-50);
  overflow: hidden;
}

.verse-band::before {
  content: "†";
  position: absolute;
  right: 1.5rem;
  top: .1rem;
  color: rgba(201,163,93,.16);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.verse-band blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  line-height: 1.45;
  color: #263549;
}

.verse-band cite {
  display: block;
  margin-top: 1rem;
  color: #745f3a;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-style: normal;
  font-size: .9rem;
  font-weight: 850;
}

.faith-note {
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--gold-400);
  background: rgba(201,163,93,.07);
  border-radius: 0 14px 14px 0;
}

.faith-note p:last-child {
  margin-bottom: 0;
}

/* ---------- Contact ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
}

.contact-panel {
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  background: var(--navy-850);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.contact-list li {
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

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

.contact-list span {
  display: block;
  color: #9fb0c2;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  margin-bottom: .2rem;
}

.contact-list a {
  color: var(--blue-400);
  font-weight: 850;
}

.checklist {
  display: grid;
  gap: .85rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--muted-dark);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-500);
  font-weight: 950;
}

/* ---------- CTA ---------- */

.cta {
  position: relative;
  overflow: hidden;
  padding: 2.3rem;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(107,198,232,.16), transparent 18rem),
    linear-gradient(140deg, var(--navy-850), var(--navy-950));
  box-shadow: var(--shadow-lg);
}

.cta::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 260px;
  height: 145px;
  border-top: 2px solid rgba(123,212,197,.38);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.cta > * {
  position: relative;
  z-index: 2;
}

.cta p {
  color: #bdcbd9;
  max-width: 700px;
}


.footer-logo-link {
  display: inline-block;
  width: min(420px, 100%);
  padding: .5rem .7rem;
  text-decoration: none;
  margin-bottom: .75rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(244,239,229,.95));
  border: 1px solid rgba(230,184,77,.24);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.footer-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.10));
}

/* ---------- Footer ---------- */

.site-footer {
  color: #c0cddd;
  background: #050d18;
  border-top: 1px solid rgba(255,255,255,.07);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 2rem;
  padding: 3rem 0 2.2rem;
}

.footer-brand p {
  max-width: 480px;
  color: #93a5b9;
}

.footer-title {
  color: var(--white);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: .7rem;
}

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

.footer-links a {
  text-decoration: none;
  color: #c0cddd;
}

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

.footer-bottom {
  padding: 1.05rem 0 1.4rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .86rem;
  color: #8496aa;
}

/* ---------- Page heroes ---------- */

.page-hero {
  padding: 5rem 0 4rem;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(63,167,214,.16), transparent 21rem),
    var(--navy-950);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.page-hero .lede {
  color: #c2cfdd;
}

.notice {
  padding: 1.1rem 1.2rem;
  border: 1px solid #e0d7c7;
  border-radius: var(--radius-md);
  background: #fffaf1;
  color: #695a42;
}

.notice strong {
  color: #3f3527;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: .4rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--border-light);
}

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

.service-detail .service-card h3:first-of-type,
.service-detail h2:first-of-type {
  margin-top: 0;
}


.service-detail p {
  color: var(--muted-dark);
}

.service-detail ul {
  color: var(--muted-dark);
  padding-left: 1.2rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .brand-logo-link {
    flex-basis: 360px;
    width: 360px;
    min-width: 260px;
    padding: .4rem .62rem;
  }

  .nav a {
    padding-inline: .62rem;
    font-size: .89rem;
  }

  .hero-grid,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
  }

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

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

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

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

@media (max-width: 780px) {
  .nav-wrap {
    min-height: 110px;
  }

  .brand-logo-link {
    width: 285px;
    min-width: 0;
    flex-basis: 285px;
    padding: .34rem .56rem;
    border-radius: 16px;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: fixed;
    top: 110px;
    left: 1rem;
    right: 1rem;
    margin: 0;
    padding: .75rem;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy-850);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
  }

  .nav.open {
    display: flex;
  }

  .nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    padding-top: 4.6rem;
  }

  .hero::after {
    height: 120px;
    bottom: -72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-panel {
    padding-inline: 0;
  }

  .panel-badge {
    margin-top: .9rem;
    margin-left: 0;
    max-width: 100%;
  }

  .grid-2,
  .grid-3,
  .stat-strip,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .stat:last-child {
    border-bottom: 0;
  }

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

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

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--max));
  }

  .brand-logo-link {
    width: 238px;
    flex-basis: 238px;
    padding: .28rem .42rem;
    border-radius: 14px;
  }

  .hero {
    padding-bottom: 4.3rem;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .section {
    padding: 4.2rem 0;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .verse-band {
    padding: 1.6rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* ---------- Pricing ---------- */

.pricing-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(230,184,77,.13), transparent 18rem),
    radial-gradient(circle at 92% 55%, rgba(76,199,240,.12), transparent 24rem),
    var(--navy-950);
}

.assessment-banner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(76,199,240,.14), transparent 18rem),
    linear-gradient(145deg, var(--navy-850), var(--navy-950));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.assessment-price {
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(230,184,77,.35);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.045);
}

.assessment-price strong {
  display: block;
  margin: .35rem 0 .15rem;
  color: var(--gold-400);
  font-size: clamp(3.5rem, 8vw, 5.7rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.assessment-price > span:last-child {
  display: block;
  color: #d5e0eb;
  font-weight: 800;
}

.price-label,
.price-eyebrow {
  color: var(--blue-500);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.assessment-price .price-label {
  color: var(--seafoam-400);
}

.assessment-copy h2 {
  margin-bottom: .8rem;
}

.assessment-copy p {
  color: #c3cfdb;
}

.pricing-note {
  margin-bottom: 0;
  padding-top: .7rem;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: .92rem;
}

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

.price-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(20,39,66,.055);
}

.price-card.featured {
  border-color: rgba(230,184,77,.52);
  background:
    linear-gradient(115deg, rgba(230,184,77,.07), transparent 45%),
    var(--white);
}

.price-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: .8rem;
}

.price-card h3 {
  margin-top: .22rem;
  margin-bottom: 0;
}

.price {
  flex: 0 0 auto;
  color: var(--navy-950);
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  font-weight: 950;
  letter-spacing: -.05em;
  line-height: 1;
}

.price-card p {
  color: var(--muted-dark);
}

.price-total {
  padding-top: .8rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border-light);
  color: var(--muted-dark);
  font-size: .92rem;
}

.price-total strong {
  color: var(--navy-950);
}

.pricing-rules {
  padding-left: 1.2rem;
  color: var(--muted-dark);
}

.pricing-rules li {
  margin-bottom: .7rem;
}

.quote-example {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
  color: #c6d2df;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.quote-example strong {
  color: var(--white);
}

.quote-total {
  margin-top: .3rem;
  padding-top: 1rem;
  border-bottom: 0;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 850;
}

.quote-total strong {
  color: var(--gold-400);
  font-size: 1.3rem;
}

.pricing-note-light {
  margin-top: 1rem;
  margin-bottom: 0;
  color: #9fb2c5;
  font-size: .9rem;
}

@media (max-width: 860px) {
  .assessment-banner,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .assessment-price {
    max-width: 420px;
  }
}

@media (max-width: 520px) {
  .price-card-top {
    display: block;
  }

  .price {
    margin-top: .7rem;
  }
}


/* ---------- Version 7 simplification ---------- */

.service-card h3 {
  margin-top: 0;
}

.policy-row h3 {
  margin-bottom: .35rem;
}

.policy-row p {
  margin-top: 0;
}

.service-detail h2 {
  margin-bottom: .7rem;
}
/* ---------- Service Request Form ---------- */

#service-request .section-heading {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.service-form {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem;

  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  color: var(--navy-950);
  font-weight: 800;
  font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  min-width: 0;

  padding: 0.8rem 0.9rem;

  font: inherit;
  color: var(--ink);

  background: var(--sand-50);
  border: 1px solid var(--border-light);
  border-radius: 10px;
}

.form-field input,
.form-field select {
  min-height: 46px;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--blue-400);
  outline-offset: 2px;
  border-color: var(--blue-500);
}

.form-consent {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0;
}

.form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;

  color: var(--muted-dark);
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.service-form .notice {
  margin-top: 1.25rem;
}

.service-form .btn {
  margin-top: 1.25rem;
}

.service-form .btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.form-status {
  margin-top: 0.8rem;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

/* ---------- Mobile ---------- */

@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .service-form {
    padding: 1.25rem;
  }
}
