:root {
  --navy: #06284a;
  --navy2: #0b355f;
  --gold: #c69a3b;
  --gold2: #e5c77d;
  --cream: #efe7d9;
  --ivory: #f8f4ec;
  --ink: #132333;
  --muted: #6b6f73;
  --white: #fff;
  --line: rgba(6, 40, 74, 0.12);
  --radius: 24px;
  --shadow: 0 24px 70px rgba(6, 40, 74, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}
body.popup-open {
  overflow: hidden;
}
.welcome-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(3,18,34,.46);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
}
.welcome-popup.open {
  opacity: 1;
  visibility: visible;
}
.welcome-popup-card {
  position: relative;
  width: min(680px, 92vw);
  min-height: 430px;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  background: url("../images/diverse-care-community.png") center/cover no-repeat;
  box-shadow: 0 35px 100px rgba(0,0,0,.42);
  transform: translateY(22px) scale(.98);
  transition: .35s ease;
}
.welcome-popup.open .welcome-popup-card {
  transform: none;
}
.welcome-popup-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,25,47,.96) 0%, rgba(4,25,47,.84) 50%, rgba(4,25,47,.32) 100%);
}
.welcome-popup-content {
  position: relative;
  z-index: 2;
  width: min(470px, 90%);
  padding: 42px;
}
.welcome-popup-content .eyebrow {
  color: var(--gold2);
}
.welcome-popup-content h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: .18em 0;
}
.welcome-popup-content > p {
  color: #d7e0e8;
  font-size: .9rem;
  line-height: 1.6;
  max-width: 570px;
}
.welcome-popup-close {
  position: absolute;
  z-index: 4;
  top: 17px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(4,25,47,.62);
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
}
.welcome-popup-form {
  margin-top: 24px;
}
.welcome-popup-form label {
  display: block;
  margin-bottom: 8px;
  font-size: .78rem;
  font-weight: 800;
  color: var(--gold2);
}
.welcome-popup-form > div {
  display: flex;
  gap: 9px;
}
.welcome-popup-form input {
  flex: 1;
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font: inherit;
}
.welcome-connect {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  font-weight: 800;
}
.welcome-connect > div {
  display: flex;
  gap: 8px;
}
.welcome-connect a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
}
@media (max-width: 700px) {
  .welcome-popup {
    padding: 12px;
  }
  .welcome-popup-card {
    width: min(430px, 94vw);
    min-height: 510px;
    background-position: 66% center;
  }
  .welcome-popup-card:before {
    background: linear-gradient(0deg, rgba(4,25,47,.98), rgba(4,25,47,.68));
  }
  .welcome-popup-content {
    width: 100%;
    padding: 64px 22px 24px;
  }
  .welcome-popup-content h2 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }
  .welcome-popup-form > div {
    flex-direction: column;
  }
  .welcome-popup-form .btn {
    justify-content: center;
  }
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, 92vw);
  margin: auto;
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
}
h1,
h2,
h3,
.serif {
  font-family: Georgia, "Times New Roman", serif;
}
h1 {
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
  margin: 0.3em 0;
}
h2 {
  font-size: clamp(2.3rem, 4.7vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0.2em 0;
}
.lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #3f4a55;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  border: 1px solid transparent;
  transition: 0.3s;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 25px rgba(198, 154, 59, 0.28);
}
.btn-gold:hover {
  transform: translateY(-2px);
  background: #b58a32;
}
.btn-ghost {
  border-color: rgba(6, 40, 74, 0.18);
  background: rgba(255, 255, 255, 0.58);
}
.btn-ghost:hover {
  background: #fff;
  transform: translateY(-2px);
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 236, 0.87);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.navrow {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
}
.brand img {
  width: 112px;
  height: 78px;
  object-fit: contain;
  object-position: left center;
}
.brand-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: -10px;
  color: var(--navy);
  line-height: 1.05;
  white-space: nowrap;
}
.brand-name strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: .005em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .75);
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.brand-h {
  display: inline-block;
  width: 96px;
  height: 58px;
  flex: 0 0 auto;
  margin-right: -30px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201000%20613'%3E%3Cpath%20fill='%23c69a3b'%20fill-rule='evenodd'%20d='M94.0,600.9C33.0,592.0%2011.2,573.5%2011.2,530.9C11.3,488.3%2027.6,462.8%2055.7,461.4C99.1,459.2%20117.3,506.4%2085.7,539.3C56.1,570.1%20122.3,579.3%20176.3,551.9C212.7,533.4%20241.8,503.8%20282.1,444.3C292.8,428.4%20302.5,414.5%20310.2,403.6C333.9,370.3%20350.8,343.6%20349.1,342.0C348.3,341.1%20344.5,341.4%20342.1,342.5C333.7,346.3%20319.9,334.9%20319.9,324.0C319.9,308.0%20327.9,303.3%20356.4,302.5C376.7,301.9%20376.8,301.8%20390.2,280.5C418.6,235.3%20439.1,209.0%20469.1,179.1C483.4,164.9%20489.3,159.3%20498.6,151.5C501.9,148.7%20505.1,146.0%20505.7,145.5C506.3,144.9%20509.2,142.4%20512.3,139.8C515.3,137.1%20520.2,132.9%20523.2,130.2C526.2,127.6%20530.7,124.1%20533.2,122.4C539.0,118.4%20538.7,117.5%20531.2,116.8C527.9,116.5%20521.0,115.3%20515.9,114.2C510.8,113.1%20503.4,111.6%20499.5,110.9C495.7,110.2%20486.3,108.3%20478.8,106.7C394.2,89.2%20324.4,93.7%20277.4,119.7C207.6,158.2%20173.2,249.8%20212.8,291.2C233.3,312.6%20262.8,306.5%20297.1,273.7C316.7,254.9%20328.4,254.2%20328.3,272.0C328.3,285.1%20323.5,292.5%20299.2,317.2C186.5,431.8%2072.6,305.3%20172.3,176.1C189.9,153.3%20195.7,146.7%20213.8,128.8C250.3,92.8%20317.1,51.4%20338.9,51.4C339.7,51.4%20342.1,50.8%20344.4,50.0C373.6,39.6%20420.9,33.0%20454.6,34.6C484.4,36.1%20503.5,39.7%20533.2,49.6C552.4,56.0%20578.9,66.3%20588.8,71.3C601.8,77.8%20600.6,78.1%20645.1,59.1C677.4,45.4%20720.5,38.1%20734.8,44.0C736.3,44.6%20739.1,45.8%20740.9,46.5C757.0,53.3%20761.0,78.9%20748.2,92.6C723.2,119.1%20694.1,128.7%20634.7,129.9L603.8,130.5L598.2,133.2C590.8,136.9%20582.5,145.3%20571.7,160.2C562.1,173.5%20546.0,197.9%20540.7,207.2C520.3,242.7%20510.7,257.7%20493.9,280.3C473.3,307.7%20475.8,309.0%20537.0,303.1C554.3,301.4%20561.2,301.2%20575.9,301.7C601.1,302.5%20603.8,300.5%20623.5,265.7C632.1,250.3%20648.1,226.3%20657.0,215.2C657.6,214.4%20659.1,212.3%20660.4,210.5C661.7,208.7%20662.9,207.0%20663.3,206.7C663.6,206.5%20670.2,197.8%20678.0,187.6C685.7,177.3%20694.7,165.6%20698.0,161.7C701.3,157.8%20705.3,152.9%20706.9,150.9C730.3,122.2%20777.0,82.7%20813.8,60.7C885.5,17.7%20928.7,4.4%20965.4,13.9C985.5,19.1%20988.8,23.4%20988.8,44.6L988.8,54.4L985.6,57.6C979.8,63.5%20970.6,61.9%20961.3,53.5C936.2,30.7%20862.9,70.7%20806.8,137.8C804.8,140.3%20801.9,143.6%20800.4,145.3C799.0,146.9%20794.4,152.5%20790.3,157.6C786.2,162.8%20782.4,167.6%20781.7,168.4C771.1,181.5%20743.2,221.9%20727.4,247.2C725.3,250.4%20721.0,257.2%20717.6,262.4C714.3,267.5%20710.1,274.1%20708.3,276.9C706.6,279.7%20704.3,283.2%20703.4,284.6C702.4,286.0%20701.6,287.5%20701.6,288.1C701.6,288.6%20701.2,289.1%20700.8,289.1C700.3,289.1%20699.7,289.8%20699.4,290.7C699.1,291.6%20697.1,295.2%20694.9,298.6C692.6,302.1%20685.4,313.5%20678.7,323.9C672.1,334.3%20662.7,348.9%20657.9,356.2C653.1,363.6%20649.2,369.8%20649.2,370.0C649.2,370.3%20648.8,371.0%20648.2,371.6C647.4,372.6%20644.4,377.3%20631.6,397.4C611.8,428.3%20576.5,486.5%20569.2,500.0C557.6,521.8%20527.7,568.8%20520.3,577.2C511.7,586.9%20498.2,590.9%20471.5,591.8C432.3,593.2%20424.2,582.0%20442.2,551.4C444.7,547.3%20449.3,541.2%20458.1,530.4C466.9,519.5%20491.2,481.6%20503.0,460.2C504.0,458.4%20506.4,454.0%20508.4,450.4C510.4,446.8%20514.4,439.7%20517.3,434.5C520.3,429.4%20524.3,422.2%20526.2,418.6C529.3,413.0%20536.3,401.3%20543.9,389.1C545.1,387.3%20547.8,382.9%20550.1,379.3C552.3,375.7%20557.2,368.1%20560.9,362.5C571.1,346.8%20572.2,344.2%20569.0,342.5C568.1,342.0%20545.9,341.5%20518.2,341.3L469.1,341.0L463.5,343.7C456.0,347.4%20449.4,354.4%20444.8,363.4C434.8,383.2%20399.4,437.8%20386.6,453.2C385.8,454.1%20383.7,456.9%20381.9,459.2C367.7,477.8%20340.8,506.4%20323.7,521.1C319.8,524.4%20316.4,527.3%20316.2,527.6C315.9,527.9%20313.8,529.6%20311.5,531.3C309.2,533.1%20306.8,535.0%20306.3,535.5C295.9,545.4%20253.1,570.4%20233.4,578.1C229.3,579.7%20224.6,581.6%20223.1,582.3C194.7,594.8%20123.2,605.2%2094.0,600.9Z'/%3E%3C/svg%3E") no-repeat left center;
  background-size: contain;
}
.brand-name strong > span:last-child {
  font-weight: 800;
}

.brand-name small {
  width: 100%;
  margin-top: 0;
  text-align: center;
  color: var(--gold);
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
  -webkit-text-stroke: .25px currentColor;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.83rem;
  font-weight: 700;
}
.navlinks a {
  position: relative;
}
.navlinks a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transition: 0.25s;
}
.navlinks a:hover:after {
  right: 0;
}
.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  color: var(--navy);
}
.hero {
  position: relative;
  min-height: 740px;
  background: linear-gradient(120deg, #e8ddcb 0%, #f7f2e9 55%, #efe4d3 100%);
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(198, 154, 59, 0.24);
  border-radius: 50%;
  left: -160px;
  top: 120px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1.15fr;
  gap: 58px;
  align-items: center;
  min-height: 700px;
  padding: 70px 0;
}
.hero-copy {
  position: relative;
  z-index: 3;
}
.hero-copy h1 em {
  font-weight: 400;
}
.hero-copy .lead {
  max-width: 650px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.microtrust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4d5459;
}
.microtrust span:before {
  content: "✓";
  color: var(--gold);
  margin-right: 5px;
}
.slider3d {
  height: 560px;
  position: relative;
  perspective: 1500px;
}
.slide-card {
  position: absolute;
  inset: 22px 36px 22px 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 35px 85px rgba(9, 38, 63, 0.25);
  opacity: 0;
  transform: translate3d(40px, 0, -240px) rotateY(-10deg) scale(0.88);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  background: #ddd;
}
.slide-card.active {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateY(0) scale(1);
  z-index: 3;
  pointer-events: auto;
}
.slide-card.prev {
  opacity: 0.35;
  transform: translate3d(-55px, 16px, -180px) rotateY(8deg) scale(0.92);
  z-index: 1;
}
.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 22, 42, 0.35), transparent 45%);
}
.float-badge {
  position: absolute;
  right: 8px;
  top: 68px;
  z-index: 9;
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 15px 18px;
  box-shadow: 0 18px 38px rgba(6, 40, 74, 0.25);
  animation: float 4s ease-in-out infinite;
}
.float-badge b {
  display: block;
  font-size: 1.45rem;
  color: var(--gold2);
}
.float-badge.small {
  top: 150px;
  right: -10px;
  animation-delay: 0.7s;
}
.float-badge.small b {
  font-size: 1rem;
}
.slider-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}
.dots {
  display: flex;
  gap: 7px;
  position: absolute;
  bottom: 10px;
  right: 50px;
  z-index: 10;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #b9b0a2;
  transition: 0.25s;
}
.dot.active {
  width: 28px;
  background: var(--gold);
}
@keyframes float {
  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
}
.trustbar {
  background: #fff;
  border-top: 1px solid rgba(198, 154, 59, 0.35);
  border-bottom: 1px solid rgba(198, 154, 59, 0.35);
}
.trustgrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.trustitem {
  padding: 19px 12px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  border-right: 1px solid var(--line);
}
.trustitem:last-child {
  border-right: 0;
}
.trustitem b {
  color: var(--gold);
  margin-right: 6px;
}
.coverage-strip {
  padding: 52px 0;
  background: linear-gradient(120deg, #082d4e 0%, #0c3d68 100%);
}
.coverage-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 24px 54px;
  align-items: center;
}
.coverage-intro .eyebrow {
  color: var(--gold2);
}
.coverage-intro h2 {
  margin: 7px 0 0;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}
.coverage-options {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.coverage-options span {
  padding: 11px 15px;
  border: 1px solid rgba(243, 201, 95, .42);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.coverage-options span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--gold2);
}
.coverage-note {
  grid-column: 2;
  margin: -6px 0 0;
  color: #cbd8e3;
  font-size: .78rem;
  line-height: 1.55;
}
@media (max-width: 800px) {
  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-note { grid-column: 1; margin-top: 0; }
}
section {
  padding: 105px 0;
}
.care-finder-section {
  background: #fff;
  padding: 78px 0 88px;
}
.care-finder-head {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 32px;
}
.care-finder-head h2 {
  margin-bottom: 0;
}
.care-finder-head p {
  color: #59636c;
  line-height: 1.75;
  margin: 0;
}
.care-finder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.care-choice {
  min-height: 235px;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--ivory);
  transition: .3s ease;
}
.care-choice:hover {
  transform: translateY(-6px);
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}
.care-choice > span {
  color: var(--gold);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.care-choice h3 {
  font-size: 1.32rem;
  margin: 20px 0 10px;
}
.care-choice p {
  color: #626d76;
  font-size: .88rem;
  line-height: 1.6;
}
.care-choice:hover p {
  color: #cbd5de;
}
.care-choice b {
  display: block;
  margin-top: 18px;
  color: var(--gold);
  font-size: .78rem;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.real-care-photo {
  position: relative;
  margin: 0;
}
.real-care-photo img {
  width: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.real-care-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 14px;
  background: rgba(6,40,74,.82);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.4;
  backdrop-filter: blur(10px);
}
.collage {
  position: relative;
  min-height: 520px;
}
.collage .mainimg {
  width: 78%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.collage .mini {
  position: absolute;
  width: 48%;
  height: 220px;
  right: 0;
  bottom: 0;
  object-fit: cover;
  border: 10px solid var(--ivory);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.scriptline {
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.3rem;
  margin-top: 24px;
}
.content-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0;
}
.content-highlights span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(198,154,59,.12);
  border: 1px solid rgba(198,154,59,.28);
  color: var(--navy);
  font-size: .76rem;
  font-weight: 800;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.home-services-heading .eyebrow {
  color: var(--navy);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: .13em;
  margin-bottom: 14px;
}
.home-services-heading h2 {
  max-width: 680px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.04;
}
.home-services-heading .lead {
  max-width: 700px;
  margin-inline: auto;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6, 40, 74, 0.06);
  transition: 0.35s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}
.service-card .pad {
  padding: 18px;
}
.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}
.service-card p {
  margin: 0;
  color: #626a70;
  font-size: 0.9rem;
  line-height: 1.55;
}
.service-card .meta {
  display: flex;
  justify-content: space-between;
  color: var(--gold);
  font-size: 0.78rem;
  margin-top: 16px;
}
.dark {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dark:after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 1px solid rgba(229, 199, 125, 0.13);
  right: -120px;
  top: -90px;
}
.dark .lead {
  color: #c9d4df;
}
.dark .eyebrow {
  color: var(--gold2);
}
.leadership-section {
  background: linear-gradient(135deg, #f8f3eb 0%, #efe2cc 100%);
}
.leadership-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(38px, 6vw, 88px);
}
.leadership-copy {
  max-width: 680px;
}
.leadership-copy .btn {
  margin-top: 12px;
}
.leadership-portrait {
  margin: 0;
  border-radius: 32px 32px 96px 32px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(8, 45, 78, 0.18);
  border: 6px solid rgba(255, 255, 255, 0.82);
}
.leadership-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  object-position: center 38%;
}
.core-values-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.core-values-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.hanameel-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.hanameel-value {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid #e5dccd;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff 0%, #faf6ef 100%);
  box-shadow: 0 12px 30px rgba(8, 45, 78, 0.07);
  transition: transform .25s ease, border-color .25s ease;
}
.hanameel-value:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}
.hanameel-value b {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  line-height: 1;
}
.hanameel-value p {
  margin: 18px 0 0;
  color: #44515d;
  line-height: 1.5;
}
.hanameel-value strong {
  color: var(--navy);
}
.values-promise {
  max-width: 920px;
  margin: 38px auto 0;
  padding: 30px clamp(24px, 5vw, 54px);
  border: 0;
  border-radius: 26px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 18px 44px rgba(8, 45, 78, 0.2);
}
.values-promise span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold2);
  font-family: Arial, sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .hanameel-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .hanameel-values { grid-template-columns: 1fr; }
  .hanameel-value { min-height: 0; }
}
@media (max-width: 800px) {
  .leadership-profile {
    grid-template-columns: 1fr;
  }
  .leadership-portrait {
    order: -1;
    max-width: 540px;
    border-radius: 24px 24px 64px 24px;
  }
}

.story-video-section {
  background: #f2eadf;
}
.video-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 58px;
  align-items: center;
}
.video-copy h2 {
  max-width: 620px;
}
.video-note {
  margin: 20px 0 26px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.62);
  color: #59636c;
  font-size: .83rem;
  line-height: 1.6;
}
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 26px;
  background: #061c33;
  box-shadow: var(--shadow);
  border: 7px solid rgba(255,255,255,.7);
}
.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}
.video-source-note {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 9px;
  z-index: 2;
  margin: 0;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(4,25,47,.82);
  color: rgba(255,255,255,.82);
  font-size: .65rem;
  line-height: 1.35;
  pointer-events: none;
}
.value-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.value {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}
.value b {
  color: var(--gold2);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.value h3 {
  font-size: 1.35rem;
  margin: 0.5rem 0;
}
.cinematic {
  padding: 0;
  height: 590px;
  position: relative;
}
.cinematic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cinematic:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 24, 44, 0.1),
    rgba(5, 24, 44, 0.7)
  );
}
.cinematic-copy {
  position: absolute;
  z-index: 2;
  right: 8vw;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  max-width: 540px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 45px;
}
.step {
  background: #fff;
  border-radius: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  position: relative;
}
.step .num {
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.72;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
}
.review {
  background: #fff;
  border: 1px solid rgba(198, 154, 59, 0.35);
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 9px 25px rgba(6, 40, 74, 0.05);
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
}
.google-reviews-section {
  background: linear-gradient(180deg, #fff 0%, #f7f2e9 100%);
}
.google-reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
}
.google-reviews-head > div:first-child { max-width: 700px; }
.google-reviews-head h2 { margin-bottom: 12px; }
.google-reviews-head p { margin: 0; }
.google-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 260px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(6,40,74,.08);
}
.google-rating > div { display: grid; gap: 2px; }
.google-rating strong { font: 700 1.7rem Georgia,serif; color: var(--navy); }
.google-rating small { color: #637083; }
.google-g,
.google-mini {
  color: #4285f4;
  font: 800 2.2rem Arial,sans-serif;
}
.google-mini { margin-left: auto; font-size: 1.35rem; }
.google-review-grid { align-items: stretch; }
.google-review-grid .review { display: flex; flex-direction: column; }
.google-review-grid .review > p { line-height: 1.75; flex: 1; }
.google-review-grid .review > small { color: #637083; }
.review-top { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.review-top h3 { margin: 0 0 3px; font-size: 1.05rem; }
.review-top .stars { font-size: .78rem; }
.review-initial {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}
.google-review-cta {
  background: var(--navy);
  color: #fff;
}
.google-review-cta h3 { color: #fff; margin: 10px 0 4px; }
.google-review-cta .btn { align-self: flex-start; margin-top: 8px; }
@media (max-width: 760px) {
  .google-reviews-head { align-items: stretch; flex-direction: column; }
  .google-rating { min-width: 0; }
}
.recognition-section {
  background: linear-gradient(145deg, #f8f4ec, #ede2d2);
}
.award-feature {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: center;
  margin-bottom: 58px;
  padding: 34px;
  border: 1px solid rgba(198,154,59,.34);
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 24px 60px rgba(6,40,74,.1);
}
.award-feature-visual {
  position: relative;
  min-height: 420px;
}
.award-winner-art {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(6,40,74,.14);
}
.award-badge-art {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 132px;
  height: 132px;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(6,40,74,.2);
}
.award-feature-copy h2 {
  margin: 12px 0 18px;
}
.award-feature-copy .btn {
  margin-top: 10px;
}
.recognition-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 64px;
  align-items: center;
}
.recognition-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.recognition-card {
  min-height: 245px;
  padding: 28px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(198,154,59,.35);
  box-shadow: 0 14px 34px rgba(6,40,74,.08);
}
.recognition-card:nth-child(2) {
  transform: translateY(-18px);
  background: var(--navy);
  color: #fff;
}
.recognition-card:nth-child(2) p {
  color: #c8d4df;
}
.recognition-card h3 {
  font-size: 1.35rem;
  margin: 18px 0 10px;
}
.recognition-card p {
  color: #626a70;
  font-size: .88rem;
  line-height: 1.6;
}
.award-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold2), var(--gold));
  color: var(--navy);
  font-family: Georgia, serif;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(198,154,59,.28);
}
.cta {
  background: var(--navy);
  color: #fff;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 430px;
}
.cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta .ctacopy {
  padding: 65px;
}
.footer {
  background: #06284a;
  color: #fff;
  padding: 70px 0 22px;
}
.footer-title {
  margin: 0 0 16px;
  max-width: 290px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.15;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}
.footer h4 {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  margin-top: 0;
}
.footer p,
.footer a {
  color: #c4d0db;
  font-size: 0.88rem;
  line-height: 1.8;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.footer-social a:hover {
  transform: translateY(-3px);
  background: var(--gold);
  border-color: var(--gold);
}
.footer-social img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #b6c1cb;
  font-size: 0.75rem;
}
.privacy-hero { min-height: 460px; }
.privacy-section { background: #f7f2e9; }
.privacy-layout { max-width: 920px; }
.privacy-content {
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(6,40,74,.08);
}
.privacy-content h2 {
  margin: 1.35em 0 .45em;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}
.privacy-content p { line-height: 1.8; }
.privacy-updated { color: #66717b; }
.privacy-callout {
  margin: 22px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: #f8f3eb;
}
.privacy-callout p:last-child { margin-bottom: 0; }
.page-hero {
  min-height: 520px;
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  display: flex;
  align-items: center;
  background: #061c33;
}
.page-hero-slides,
.page-hero-slide,
.page-hero-shade {
  position: absolute;
  inset: 0;
}
.page-hero-slides {
  z-index: -3;
}
.page-hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1s ease,
    transform 6s ease;
}
.page-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.page-hero-shade {
  z-index: -2;
  background: linear-gradient(
    90deg,
    rgba(4, 20, 37, 0.9),
    rgba(4, 20, 37, 0.62) 55%,
    rgba(4, 20, 37, 0.26)
  );
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero .eyebrow {
  color: var(--gold2);
}
.page-hero .lead,
.page-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.84);
}
.page-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  max-width: 900px;
}
.breadcrumb {
  font-size: 0.78rem;
  color: #6f6f6f;
}
.service-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}
.service-visual-heading {
  max-width: 760px;
  margin: 76px auto 34px;
  text-align: center;
}
.service-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 90px;
}
.service-visual-card {
  overflow: hidden;
  border: 1px solid #e6ddcf;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 45, 78, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-visual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(8, 45, 78, .14);
}
.service-visual-card img {
  display: block;
  width: 100%;
  height: 205px;
  object-fit: cover;
}
.service-visual-card div {
  padding: 20px;
}
.service-visual-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.18rem;
}
.service-visual-card p {
  margin: 0;
  color: #64707b;
  font-size: .82rem;
  line-height: 1.55;
}
.support-poster-heading {
  max-width: 720px;
  margin: -24px auto 32px;
  text-align: center;
}
.support-poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  max-width: 1040px;
  margin: 0 auto 100px;
}
.support-poster {
  margin: 0;
  overflow: hidden;
  border: 1px solid #ded5c8;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 45, 78, .12);
  transition: transform .3s ease, box-shadow .3s ease;
}
.support-poster:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 54px rgba(8, 45, 78, .18);
}
.support-poster img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 760px) {
  .support-poster-grid { grid-template-columns: 1fr; max-width: 440px; }
}
@media (max-width: 1000px) {
  .service-visual-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .service-visual-grid { grid-template-columns: 1fr; }
  .service-visual-card img { height: 230px; }
}

.service-pathways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 38px 0 58px;
}
.service-pathways article {
  padding: 27px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(6,40,74,.06);
}
.service-pathways article:nth-child(2) {
  background: var(--navy);
  color: #fff;
}
.service-pathways span {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-pathways h3 {
  margin: 14px 0 9px;
  font-size: 1.3rem;
}
.service-pathways p {
  margin: 0;
  color: #667079;
  font-size: .86rem;
  line-height: 1.65;
}
.service-pathways article:nth-child(2) p {
  color: #c8d4df;
}
.daily-support-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  margin-bottom: 54px;
  border-radius: 28px;
  background: linear-gradient(135deg, #eee3d3, #f9f6f0);
  border: 1px solid rgba(198,154,59,.25);
}
.daily-support-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3.55rem);
}
.support-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.support-checklist span {
  position: relative;
  padding: 14px 14px 14px 39px;
  border-radius: 13px;
  background: rgba(255,255,255,.78);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 750;
}
.support-checklist span:before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--gold);
  font-weight: 900;
}
.service-detail:nth-child(even) {
  grid-template-columns: 1.15fr 0.85fr;
}
.service-detail:nth-child(even) .detail-img {
  order: 2;
}
.detail-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 24px;
}
.faq {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  font-weight: 800;
  cursor: pointer;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  color: #5e676f;
  line-height: 1.75;
  transition: max-height 0.35s;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 22px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}
.contact-card {
  background: var(--navy);
  color: #fff;
  padding: 38px;
  border-radius: 26px;
}
.contact-address {
  margin-bottom: 12px;
}
.office-location-photo {
  display: block;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.office-location-photo:hover {
  transform: translateY(-3px);
  border-color: var(--gold2);
}
.office-location-photo img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
}
.office-location-photo span {
  display: block;
  padding: 11px 14px;
  color: var(--gold2);
  font-weight: 700;
  font-size: 0.92rem;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field input,
.field textarea,
.field select {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font: inherit;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  border: 1px solid var(--line);
}
.blog-card .date {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
}
.blog-card h3 {
  font-size: 1.35rem;
}
.career-banner {
  background: linear-gradient(135deg, var(--navy), #0d426f);
  color: #fff;
  padding: 50px;
  border-radius: 28px;
}
.career-application-section {
  background: #f8f3eb;
}
.application-layout {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
}
.application-intro {
  position: sticky;
  top: 120px;
}
.application-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: #fff;
  color: #59636c;
  font-size: .82rem;
  line-height: 1.6;
}
.career-application-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #e5dccd;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(8, 45, 78, .1);
}
.application-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #52606c;
  font-size: .82rem;
  line-height: 1.5;
}
.application-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}
@media (max-width: 850px) {
  .application-layout { grid-template-columns: 1fr; }
  .application-intro { position: static; }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.scrolltop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  cursor: pointer;
  z-index: 60;
}
@media (max-width: 900px) {
  .award-feature {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 24px;
  }
  .award-feature-visual {
    min-height: 360px;
  }
  .award-winner-art {
    height: 360px;
  }
  .award-badge-art {
    right: -8px;
    bottom: -24px;
    width: 108px;
    height: 108px;
  }
  .navrow {
    height: 84px;
    gap: 12px;
  }
  .brand {
    min-width: 0;
    gap: 0;
  }
  .brand-name {
    margin-left: -7px;
  }
  .brand img {
    width: 70px;
    height: 66px;
  }
  .brand-name strong {
    font-size: 1.14rem;
  }
  .brand-h {
    width: 70px;
    height: 42px;
    margin-right: -22px;
  }
  .brand-name small {
    font-size: .7rem;
    letter-spacing: .13em;
  }
  .service-pathways,
  .daily-support-panel,
  .support-checklist {
    grid-template-columns: 1fr;
  }
  .daily-support-panel {
    padding: 30px;
  }
  .care-finder-head,
  .care-finder-grid {
    grid-template-columns: 1fr;
  }
  .navlinks {
    position: fixed;
    left: 0;
    right: 0;
    top: 84px;
    background: var(--ivory);
    padding: 26px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }
  .navlinks.open {
    display: flex;
  }
  .navlinks .btn {
    width: 100%;
    justify-content: center;
  }
  .mobile-toggle {
    display: block;
    flex: 0 0 auto;
    padding: 10px;
    cursor: pointer;
  }
  .hero-grid,
  .split,
  .contact-grid,
  .cta,
  .video-grid,
  .recognition-grid {
    grid-template-columns: 1fr;
  }
  .recognition-cards {
    grid-template-columns: 1fr;
  }
  .recognition-card:nth-child(2) {
    transform: none;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    padding: 55px 0;
  }
  .hero-copy h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }
  .slider3d {
    height: 450px;
  }
  .trustgrid {
    grid-template-columns: 1fr 1fr;
  }
  .trustitem:nth-child(2n) {
    border-right: 0;
  }
  .cards,
  .reviews,
  .steps,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split {
    gap: 35px;
  }
  .value-list {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-detail,
  .service-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .service-detail:nth-child(even) .detail-img {
    order: 0;
  }
  .cta .ctacopy {
    padding: 40px;
  }
  .cinematic-copy {
    left: 8vw;
    right: 8vw;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
}
@media (max-width: 620px) {
  .real-care-photo img {
    min-height: 390px;
  }
  .real-care-photo figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .award-feature {
    padding: 16px;
    border-radius: 22px;
  }
  .award-feature-visual {
    min-height: 290px;
  }
  .award-winner-art {
    height: 290px;
  }
  .award-badge-art {
    width: 88px;
    height: 88px;
    border-width: 5px;
  }
  section {
    padding: 78px 0;
  }
  .brand img {
    width: 62px;
    height: 62px;
  }
  .brand-name strong {
    font-size: clamp(1.04rem, 4.5vw, 1.22rem);
  }
  .brand-h {
    width: 64px;
    height: 39px;
    margin-right: -20px;
  }
  .brand-name small {
    margin-top: 1px;
    font-size: clamp(.58rem, 2.9vw, .7rem);
    letter-spacing: .1em;
  }
  .mobile-toggle {
    font-size: 1.4rem;
    padding: 8px 4px 8px 10px;
  }
  .page-hero {
    min-height: 440px;
    padding: 88px 0 68px;
  }
  .cards,
  .reviews,
  .steps,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trustgrid {
    grid-template-columns: 1fr;
  }
  .trustitem {
    border-right: 0;
  }
  .slider3d {
    height: 390px;
  }
  .slide-card {
    inset: 10px 10px 30px 0;
  }
  .float-badge {
    right: 2px;
    top: 30px;
  }
  .float-badge.small {
    top: 110px;
  }
  .collage {
    min-height: 420px;
  }
  .collage .mainimg {
    height: 390px;
  }
  .collage .mini {
    height: 160px;
  }
  .cinematic {
    height: 520px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* 2026 hero upgrade: full-background scrollable slideshow */
.hero-fullscreen {
  min-height: clamp(680px, calc(100svh - 28px), 800px);
  height: auto;
  background: #061c33;
  color: #fff;
  isolation: isolate;
  display: flex;
  align-items: stretch;
}
.hero-fullscreen:before {
  display: none;
}
.hero-bg-slider,
.hero-bg-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-bg-slider {
  z-index: -3;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
  background: #061c33;
}
.hero-bg-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1s ease,
    transform 6.5s ease;
  will-change: opacity, transform;
}
.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-bg-slide:nth-child(2) {
  background-position: center 38%;
}
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(4, 20, 37, 0.88) 0%,
      rgba(4, 20, 37, 0.65) 44%,
      rgba(4, 20, 37, 0.24) 73%,
      rgba(4, 20, 37, 0.42) 100%
    ),
    linear-gradient(0deg, rgba(4, 20, 37, 0.4), transparent 48%);
}
.hero-overlay-grid {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 60px;
  padding: 72px 0 58px;
}
.cta-single {
  display: block;
  min-height: 0;
}
.cta-single .ctacopy {
  max-width: 820px;
}
.hero-copy-on-image {
  align-self: center;
  max-width: 650px;
}
.hero-welcome {
  display: inline-block;
  margin: 0 0 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
}
.hero-copy-on-image .eyebrow {
  color: var(--gold2);
}
.hero-copy-on-image h1 {
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  line-height: .96;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.hero-faith-slogan {
  position: relative;
  display: inline-block;
  margin: 10px 0 18px;
  padding: 0 0 8px;
  color: #f3c95f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.025em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.hero-faith-slogan::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  border-radius: 99px;
  background: #f3c95f;
}
.hero-copy-on-image .lead {
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
}
.hero-copy-on-image .microtrust {
  color: rgba(255, 255, 255, 0.82);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(12px);
}
.btn-glass:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}
.hero-slider-ui {
  align-self: end;
  justify-self: end;
  width: min(100%, 360px);
  padding: 24px;
  border-radius: 22px;
  background: rgba(3, 18, 33, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
}
.hero-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 800;
}
.hero-counter #heroCurrent {
  font-size: 1.4rem;
  color: var(--gold2);
}
.hero-counter i {
  display: block;
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.32);
}
.hero-slide-caption {
  display: grid;
  gap: 4px;
  margin: 18px 0 20px;
}
.hero-slide-caption strong {
  font-family: Georgia, serif;
  font-size: 1.35rem;
}
.hero-slide-caption span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
}
.hero-nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-nav-controls > button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: 0.25s;
}
.hero-nav-controls > button:hover {
  background: #fff;
  color: var(--navy);
}
.hero-nav-controls .dots {
  position: static;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.hero-nav-controls .dot {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.38);
}
.hero-nav-controls .dot.active {
  background: var(--gold2);
}
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.72);
}
.hero-scroll-cue b {
  animation: heroBounce 1.6s infinite;
}
@keyframes heroBounce {
  50% {
    transform: translateY(5px);
  }
}
.navbar.scrolled {
  background: rgba(248, 244, 236, 0.96);
  box-shadow: 0 10px 30px rgba(6, 40, 74, 0.08);
}
.navbar {
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.service-card a,
.step,
.review,
.blog-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.step:hover,
.review:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .hero-fullscreen {
    height: auto;
    min-height: 740px;
  }
  .hero-overlay-grid {
    grid-template-columns: 1fr;
    align-content: end;
    padding: 78px 0 76px;
    gap: 28px;
  }
  .hero-copy-on-image {
    align-self: end;
  }
  .hero-slider-ui {
    justify-self: start;
    width: min(100%, 520px);
  }
  .hero-scroll-cue {
    display: none;
  }
}
@media (max-width: 620px) {
  h1,
  h2,
  h3,
  h4 {
    text-align: center;
  }
  .eyebrow {
    text-align: center;
  }
  .hero-copy-on-image {
    margin-inline: auto;
    text-align: center;
  }
  .hero-copy-on-image .lead {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-fullscreen {
    min-height: 660px;
  }
  .hero-overlay-grid {
    align-content: center;
    padding: 74px 18px 42px;
    gap: 18px;
  }
  .hero-copy-on-image h1 {
    max-width: 360px;
    margin-inline: auto;
    font-size: clamp(2.25rem, 10.5vw, 3.25rem);
    line-height: .98;
  }
  .hero-welcome {
    display: block;
    width: 100%;
    margin: 0 auto 14px;
    text-align: center;
    font-size: clamp(1.15rem, 5.6vw, 1.55rem);
    letter-spacing: 0.01em;
  }
  .hero-copy-on-image .lead {
    max-width: 340px;
    font-size: 0.92rem;
    line-height: 1.5;
  }
  .hero-faith-slogan {
    margin: 6px 0 10px;
    font-size: 1.08rem;
  }
  .hero-copy-on-image .microtrust {
    display: none;
  }
  .hero-bg-video {
    object-position: center center;
  }
  .hero-fullscreen .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 20, 37, 0.25), rgba(4, 20, 37, 0.58)),
      linear-gradient(0deg, rgba(4, 20, 37, 0.26), transparent 58%);
  }
  .hero-slider-ui {
    padding: 18px;
  }
  .hero-slide-caption {
    margin: 12px 0 15px;
  }
  .hero-copy-on-image .microtrust {
    gap: 8px 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-slide,
  .reveal,
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Center a lone trailing item in the three-column service and care-finder grids */
.cards > :last-child:nth-child(3n + 1),
.care-finder-grid > :last-child:nth-child(3n + 1) {
  grid-column: 2;
}
@media (max-width: 900px) {
  .cards > :last-child:nth-child(3n + 1),
  .care-finder-grid > :last-child:nth-child(3n + 1) {
    grid-column: auto;
  }
}

/* Inline status message for FormSubmit-powered forms */
.form-status {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 0;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.5;
}
.form-status:empty {
  display: none;
}
.form-status.sending {
  color: #6f6f6f;
}
.form-status.success {
  padding: 13px 16px;
  border-radius: 13px;
  background: rgba(198, 154, 59, .13);
  border: 1px solid rgba(198, 154, 59, .4);
  color: var(--navy);
}
.form-status.error {
  padding: 13px 16px;
  border-radius: 13px;
  background: rgba(176, 58, 46, .08);
  border: 1px solid rgba(176, 58, 46, .35);
  color: #8c2f26;
}
.form-status a {
  color: inherit;
  text-decoration: underline;
}
.welcome-popup-form .form-status {
  margin-top: 10px;
  font-size: .8rem;
}
